07-19-2019 09:28 AM
My name is Jonathan.
I'm doing a test with PHP together with the Meraki API.
I would be needing extra information about the possibility of performing a speed test (throughput) for each organization within the panel.
In the documentation I don't see anything related to this test.
Can you tell me how to proceed?
Greetings .
Solved! Go to Solution.
07-04-2022 08:19 AM
Yes, I was assuming the same. Thanks for your help!
07-19-2019 05:45 PM
There is no such API to do this test.
Also this is a test to the Meraki cloud. You can't put a lot of faith in this measuring the actual maximum thoughput of your ISP circuit. It is just a general guide.
07-22-2019 06:57 AM
Thank you very much for your reply.
In any case I will look for some macro for the web browser to do it in about 2000 Organizations
07-04-2022 07:15 AM
Hi, did you manage to find the API for Dashboard Throughput? I am also looking for the same API.
Your help would be much appreciated.
07-04-2022 07:58 AM
So far there is no possibility to do it by API .
07-04-2022 08:08 AM
Thanks for the quick reply!
Did you manage to find a solution for yourself? If so, how did you go about solving the issue?
07-04-2022 08:15 AM
For the moment the only solution was to create a script in python and selenium to enter each Network and perform the test.
07-04-2022 08:19 AM
Yes, I was assuming the same. Thanks for your help!
04-01-2024 11:29 AM
Here is a solution using Python under APIv1. Create the test and after 10 seconds retrieve the results. Assuming you pulled the active MX's serial or manually added it above this portion.
response = dashboard.devices.createDeviceLiveToolsThroughputTest(serial_number)
throughput_test_id = response['throughputTestId']
time.sleep(12)
response = dashboard.devices.getDeviceLiveToolsThroughputTest(serial_number, throughput_test_id)
print(f"Download throughput {response['result']['speeds']['downstream']}/Mbps")
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide