I know this is an old post, but the CPU numbers are under the Organization -> Summary report (set the date / time to today if you want current view). Or using the API call is an easy method to get Sample Python script, just set your org and api key. 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 ('Number of MX Appliances = ' , len(response)) for mx in response: print(mx['utilization'], mx['model'], mx['name'])
... View more