I'm trying to query the AVG_CPU for my m2 data store per https://developers.arcgis.com/python/latest/api-reference/arcgis.gis.admin.html#datastoremetricsmanager and I'm trying to understand the units of the results. My code is
gis.admin.datastore_metrics.query(metric=DataStoreMetric.AVG_CPU, bin_size=1, bin_unit=DataStoreTimeUnit.HOUR, ago=7, ago_unit=DataStoreTimeUnit.DAY)
Any my results are
[{'ts': datetime.datetime(2024, 10, 9, 17, 0), 'value': 793.0},
{'ts': datetime.datetime(2024, 10, 9, 16, 0), 'value': 2905.0},
{'ts': datetime.datetime(2024, 10, 9, 15, 0), 'value': 3252.0},
{'ts': datetime.datetime(2024, 10, 9, 14, 0), 'value': 2101.0},
{'ts': datetime.datetime(2024, 10, 9, 13, 0), 'value': 49.0},
{'ts': datetime.datetime(2024, 10, 9, 12, 0), 'value': 29.0},
{'ts': datetime.datetime(2024, 10, 9, 11, 0), 'value': 48.0},
{'ts': datetime.datetime(2024, 10, 9, 10, 0), 'value': 24.0},
{'ts': datetime.datetime(2024, 10, 9, 9, 0), 'value': 0.0},
{'ts': datetime.datetime(2024, 10, 9, 8, 0), 'value': 1.0},
Am I reading this correctly that my avg_cpu is over 100% at certain times?