The major problem with having many concurrent users on an AP is the contention window each end device has to go through for actually being able to transmit something into the air.
This is usually solved by:
- Deploying more APs.
- Reducing the effective cell size by reducing the transmit power and increasing the minimum bitrate.
- Placing the APs nearby the end devices.
If you want to see if the issue is related to channel utilization, you can look at Wireless > RF Spectrum which will tell you the actual utilization of the channels you are using.
Additionally, if you think this may be due to cells being too large and frames collisions, you can capture a monitor mode PCAP nearby one of the APs.
Here we have a really good document on how to do this monitor mode captures:
https://documentation.meraki.com/MR/Monitoring_and_Reporting/Capturing_Wireless_Traffic_from_a_Clien...
Alternatively, I would recommend Airtool by Adrian Granado's if you're using a MacOS device to do the captures.
After taking the PCAP, apply this filter on Wireshark: (wlan.fc.retry == 1) which will show retries percentage.
As a guideline, anything above 10% is usually not acceptable in most designs. We have a really good KB for channel deployment best practices.
https://documentation.meraki.com/MR/WiFi_Basics_and_Best_Practices/Channel_Planning_Best_Practices
Hope it helps
Leo Gomez