We saw the issue with MX 85 / 95 units on 18.107.2. MX's running 95% utilization or better! 18.107.3 seemed to correct the issue. Learned to look at this python script / API call after upgrades after that! import meraki import os import pprint API_KEY = os.environ.get('MERAKI_API') organization_id = os.environ.get('MERAKI_ORG') dashboard = meraki.DashboardAPI(API_KEY, caller='TopApplianceUtil.py/v1.0') response = dashboard.organizations.getOrganizationSummaryTopAppliancesByUtilization(organization_id, quantity= 500, timespan = 2000) print ('lengnth = ' , len(response)) for mx in response: #print(mx) print(mx['utilization'], mx['model'], mx['name'])
... View more