• EnglishEspañol日本語한국어Português
  • Log inStart now

Azure integrations metrics

Dimensional metric naming convention

Metrics fetched from the Azure Monitor API are stored in New Relic as dimensional metrics following this convention:

  • Metrics are prefixed by their Azure resource type, all lowercased, where / is replaced with ., and Microsoft. is replaced with azure.:

    • Microsoft.Compute/virtualMachines -> azure.compute.virtualmachines
    • Microsoft.Network/loadBalancers -> azure.network.loadbalancers
  • The original Azure metric name keeps its original casing, stripped of all whitespaces, and is prefixed the resource type, as described above:

    • Microsoft.Compute/virtualMachines + Percentage CPU -> azure.compute.virtualmachines.PercentageCPU
    • Microsoft.Network/loadBalancers + ByteCount -> azure.network.loadbalancers.ByteCount

If the resulting metric name does not start with azure. after these transformations, the prefix is prepended additionally.

For more information about supported Azure resource types, see the Azure Monitor Metrics documentation website.

Metric name matches one of the dimensions' names

When the metric name and the name of one of the dimensions are exactly the same, this dimension's name is uncapitalized so both values are different:

  • azure.network.applicationgateways.TlsProtocol with dimensions azure.network.applicationgateways.tlsprotocol

Metrics with many dimension combinations

A metric definition includes both its name and the different dimensions. Sometimes, the same metric name shows up in many metrics with different dimension combinations, for example:

  • azure.cache.redis.percentProcessorTime with dimensions azure.cache.redis.ShardId
  • azure.cache.redis.percentProcessorTime with no dimensions.

Each of these metrics is ingested as an invididual time series.

Tip

Some aggregations like sum() or count() will return duplicated results if the correct dimension combination isn't specified.

To avoid some aggregations like sum() or count() matching both metrics at the same time use IS NULL or IS NOT NULL to filter the dimensions. For example:

Matches both metrics at the same time:

SELECT sum(azure.cache.redis.percentProcessorTime) FROM METRIC

Matches only metric without ShardId dimension:

SELECT sum(azure.cache.redis.percentProcessorTime) FROM METRIC WHERE azure.cache.redis.ShardId IS NULL

Matches only metric with the dimension:

SELECT sum(azure.cache.redis.percentProcessorTime) FROM METRIC WHERE azure.cache.redis.ShardId IS NOT NULL

API Polling Metrics

For a reference on available metrics from each one of the polling integrations and their names, check out our doc on the individual integrations.

The following table is a noncomprehensive list of the metrics collected by the Azure Polling integrations and their dimensional metrics translations.

Integration

Dimensional Metric Name (new)

Sample Metric Name (previous)

Azure API Management

azure.apimanagement.service.Capacity

capacityPercent

Azure API Management

azure.apimanagement.service.Duration

durationMilliseconds

Azure API Management

azure.apimanagement.service.EventHubDroppedEvents

eventHubDroppedEvents

Azure API Management

azure.apimanagement.service.EventHubRejectedEvents

eventHubRejectedEvents

Azure API Management

azure.apimanagement.service.EventHubSuccessfulEvents

eventHubSuccessfulEvents

Azure API Management

azure.apimanagement.service.EventHubThrottledEvents

eventHubThrottledEvents

Azure API Management

azure.apimanagement.service.EventHubTimedoutEvents

eventHubTimedoutEvents

Azure API Management

azure.apimanagement.service.EventHubTotalBytesSent

eventHubTotalBytesSentBytes

Azure API Management

azure.apimanagement.service.EventHubTotalEvents

eventHubTotalEvents

Azure API Management

azure.apimanagement.service.EventHubTotalFailedEvents

eventHubTotalFailedEvents

Azure API Management

azure.apimanagement.service.FailedRequests

failedRequests

Azure API Management

azure.apimanagement.service.OtherRequests

otherRequests

Azure API Management

azure.apimanagement.service.SuccessfulRequests

successfulRequests

Azure API Management

azure.apimanagement.service.TotalRequests

totalRequests

Azure API Management

azure.apimanagement.service.UnauthorizedRequests

unauthorizedRequests

Azure App Gateway

azure.network.applicationgateways.ApplicationGatewayTotalTime

applicationGatewayTotalTimeMilliseconds

Azure App Gateway

azure.network.applicationgateways.AvgRequestCountPerHealthyHost

avgRequestCountPerHealthyHost

Azure App Gateway

azure.network.applicationgateways.BackendConnectTime

backendConnectTimeMilliseconds

Azure App Gateway

azure.network.applicationgateways.BackendFirstByteResponseTime

backendFirstByteResponseTimeMilliseconds

Azure App Gateway

azure.network.applicationgateways.BackendLastByteResponseTime

backendLastByteResponseTimeMilliseconds

Azure App Gateway

azure.network.applicationgateways.BackendResponseStatus

backendResponseStatus

Azure App Gateway

azure.network.applicationgateways.BlockedCount

blockedCount

Azure App Gateway

azure.network.applicationgateways.BlockedReqCount

blockedReqCount

Azure App Gateway

azure.network.applicationgateways.BytesReceived

bytesReceivedBytes

Azure App Gateway

azure.network.applicationgateways.BytesSent

bytesSentBytes

Azure App Gateway

azure.network.applicationgateways.CapacityUnits

capacityUnits

Azure App Gateway

azure.network.applicationgateways.ClientRtt

clientRttMilliseconds

Azure App Gateway

azure.network.applicationgateways.ComputeUnits

computeUnits

Azure App Gateway

azure.network.applicationgateways.CpuUtilization

cpuUtilizationPercent

Azure App Gateway

azure.network.applicationgateways.CurrentConnections

currentConnections

Azure App Gateway

azure.network.applicationgateways.EstimatedBilledCapacityUnits

estimatedBilledCapacityUnits

Azure App Gateway

azure.network.applicationgateways.FailedRequests

failedRequests

Azure App Gateway

azure.network.applicationgateways.FixedBillableCapacityUnits

fixedBillableCapacityUnits

Azure App Gateway

azure.network.applicationgateways.HealthyHostCount

healthyHostCount

Azure App Gateway

azure.network.applicationgateways.MatchedCount

matchedCount

Azure App Gateway

azure.network.applicationgateways.NewConnectionsPerSecond

newConnectionsPerSecondCountPerSecond

Azure App Gateway

azure.network.applicationgateways.ResponseStatus

responseStatus

Azure App Gateway

azure.network.applicationgateways.Throughput

throughputBytesPerSecond

Azure App Gateway

azure.network.applicationgateways.TlsProtocol

tlsProtocol

Azure App Gateway

azure.network.applicationgateways.TotalRequests

totalRequests

Azure App Gateway

azure.network.applicationgateways.UnhealthyHostCount

unhealthyHostCount

Azure App Service

azure.web.serverfarms.BytesReceived

bytesReceivedBytes

Azure App Service

azure.web.serverfarms.BytesSent

bytesSentBytes

Azure App Service

azure.web.serverfarms.CpuPercentage

cpuPercent

Azure App Service

azure.web.serverfarms.DiskQueueLength

diskQueueLength

Azure App Service

azure.web.serverfarms.HttpQueueLength

httpQueueLength

Azure App Service

azure.web.serverfarms.MemoryPercentage

memoryPercent

Azure App Service

azure.web.sites.AppConnections

appConnections

Azure App Service

azure.web.sites.AverageMemoryWorkingSet.byWebApp

averageMemoryWorkingSetBytes

Azure App Service

azure.web.sites.AverageResponseTime

averageResponseTimeSeconds

Azure App Service

azure.web.sites.BytesReceived.byWebApp

receivedBytes

Azure App Service

azure.web.sites.BytesSent.byWebApp

sentBytes

Azure App Service

azure.web.sites.CpuTime

cpuTimeSeconds

Azure App Service

azure.web.sites.CurrentAssemblies

currentAssemblies

Azure App Service

azure.web.sites.Gen0Collections

gen0Collections

Azure App Service

azure.web.sites.Gen1Collections

gen1Collections

Azure App Service

azure.web.sites.Gen2Collections

gen2Collections

Azure App Service

azure.web.sites.Handles

handles

Azure App Service

azure.web.sites.Http101

http101

Azure App Service

azure.web.sites.Http2xx

http2xx

Azure App Service

azure.web.sites.Http3xx

http3xx

Azure App Service

azure.web.sites.Http401

http401

Azure App Service

azure.web.sites.Http403

http403

Azure App Service

azure.web.sites.Http404

http404

Azure App Service

azure.web.sites.Http406

http406

Azure App Service

azure.web.sites.Http4xx

http4xx

Azure App Service

azure.web.sites.Http5xx.byWebApp

http5xx

Azure App Service

azure.web.sites.MemoryWorkingSet.byWebApp

memoryWorkingSetBytes

Azure App Service

azure.web.sites.Requests

requests

Azure App Service

azure.web.sites.Threads

threads

Azure App Service

azure.web.sites.TotalAppDomains

totalAppDomains

Azure App Service

azure.web.sites.TotalAppDomainsUnloaded

totalAppDomainsUnloaded

Azure Containers

azure.containerinstance.containergroups.CpuUsage

cpuUsage

Azure Containers

azure.containerinstance.containergroups.MemoryUsage

memoryUsageBytes

Azure Containers

azure.containerinstance.containergroups.NetworkBytesReceivedPerSecond

networkReceivedBytesPerSecond

Azure Containers

azure.containerinstance.containergroups.NetworkBytesTransmittedPerSecond

networkTransmittedBytesPerSecond

Azure Containers

azure.containerregistry.registries.RunDuration

runDurationMilliseconds

Azure Containers

azure.containerregistry.registries.SuccessfulPullCount

successfulPullCount

Azure Containers

azure.containerregistry.registries.SuccessfulPushCount

successfulPushCount

Azure Containers

azure.containerregistry.registries.TotalPullCount

totalPullCount

Azure Containers

azure.containerregistry.registries.TotalPushCount

totalPushCount

Azure Containers

azure.containerservice.managedclusters.kube_node_status_allocatable_cpu_cores

kubeNodeStatusAllocatableCpuCores

Azure Containers

azure.containerservice.managedclusters.kube_node_status_allocatable_memory_bytes

kubeNodeStatusAllocatableMemoryBytes

Azure Containers

azure.containerservice.managedclusters.kube_node_status_condition

kubeNodeStatusCondition

Azure Containers

azure.containerservice.managedclusters.kube_pod_status_phase

kubePodStatusPhase

Azure Containers

azure.containerservice.managedclusters.kube_pod_status_ready

kubePodStatusReady

Azure Cosmos DB

azure.documentdb.databaseaccounts.AvailableStorage.byAccount

availableStorageBytes

Azure Cosmos DB

azure.documentdb.databaseaccounts.CassandraConnectionClosures.byAccount

cassandraConnectionClosures

Azure Cosmos DB

azure.documentdb.databaseaccounts.CassandraRequestCharges.byAccount

cassandraRequestCharges

Azure Cosmos DB

azure.documentdb.databaseaccounts.CassandraRequests.byAccount

cassandraRequests

Azure Cosmos DB

azure.documentdb.databaseaccounts.DataUsage.byAccount

dataUsageBytes

Azure Cosmos DB

azure.documentdb.databaseaccounts.DocumentCount.byAccount

documentCount

Azure Cosmos DB

azure.documentdb.databaseaccounts.DocumentQuota.byAccount

documentQuotaBytes

Azure Cosmos DB

azure.documentdb.databaseaccounts.IndexUsage.byAccount

indexUsageBytes

Azure Cosmos DB

azure.documentdb.databaseaccounts.MetadataRequests.byAccount

metadataRequests

Azure Cosmos DB

azure.documentdb.databaseaccounts.MongoRequestCharge.byAccount

mongoRequestCharge

Azure Cosmos DB

azure.documentdb.databaseaccounts.MongoRequests.byAccount

mongoRequests

Azure Cosmos DB

azure.documentdb.databaseaccounts.ProvisionedThroughput.byAccount

provisionedThroughput

Azure Cosmos DB

azure.documentdb.databaseaccounts.ReplicationLatency.byAccount

replicationLatencyMilliseconds

Azure Cosmos DB

azure.documentdb.databaseaccounts.ServiceAvailability.byAccount

serviceAvailabilityPercent

Azure Cosmos DB

azure.documentdb.databaseaccounts.TotalRequests.byAccount

totalRequests

Azure Cosmos DB

azure.documentdb.databaseaccounts.TotalRequestUnits.byAccount

totalRequestUnits

Azure Cosmos DB

azure.documentdb.databaseaccounts.AvailableStorage.byCollection

availableStorageBytes

Azure Cosmos DB

azure.documentdb.databaseaccounts.CassandraConnectionClosures.byCollection

cassandraConnectionClosures

Azure Cosmos DB

azure.documentdb.databaseaccounts.CassandraRequestCharges.byCollection

cassandraRequestCharges

Azure Cosmos DB

azure.documentdb.databaseaccounts.CassandraRequests.byCollection

cassandraRequests

Azure Cosmos DB

azure.documentdb.databaseaccounts.DataUsage.byCollection

dataUsageBytes

Azure Cosmos DB

azure.documentdb.databaseaccounts.DocumentCount.byCollection

documentCount

Azure Cosmos DB

azure.documentdb.databaseaccounts.DocumentQuota.byCollection

documentQuotaBytes

Azure Cosmos DB

azure.documentdb.databaseaccounts.IndexUsage.byCollection

indexUsageBytes

Azure Cosmos DB

azure.documentdb.databaseaccounts.MetadataRequests.byCollection

metadataRequests

Azure Cosmos DB

azure.documentdb.databaseaccounts.MongoRequestCharge.byCollection

mongoRequestCharge

Azure Cosmos DB

azure.documentdb.databaseaccounts.MongoRequests.byCollection

mongoRequests

Azure Cosmos DB

azure.documentdb.databaseaccounts.ProvisionedThroughput.byCollection

provisionedThroughput

Azure Cosmos DB

azure.documentdb.databaseaccounts.ReplicationLatency.byCollection

replicationLatencyMilliseconds

Azure Cosmos DB

azure.documentdb.databaseaccounts.ServiceAvailability.byCollection

serviceAvailabilityPercent

Azure Cosmos DB

azure.documentdb.databaseaccounts.TotalRequests.byCollection

totalRequests

Azure Cosmos DB

azure.documentdb.databaseaccounts.TotalRequestUnits.byCollection

totalRequestUnits

Azure Cosmos DB

azure.documentdb.databaseaccounts.AvailableStorage.byDatabase

availableStorageBytes

Azure Cosmos DB

azure.documentdb.databaseaccounts.CassandraConnectionClosures.byDatabase

cassandraConnectionClosures

Azure Cosmos DB

azure.documentdb.databaseaccounts.CassandraRequestCharges.byDatabase

cassandraRequestCharges

Azure Cosmos DB

azure.documentdb.databaseaccounts.CassandraRequests.byDatabase

cassandraRequests

Azure Cosmos DB

azure.documentdb.databaseaccounts.DataUsage.byDatabase

dataUsageBytes

Azure Cosmos DB

azure.documentdb.databaseaccounts.DocumentCount.byDatabase

documentCount

Azure Cosmos DB

azure.documentdb.databaseaccounts.DocumentQuota.byDatabase

documentQuotaBytes

Azure Cosmos DB

azure.documentdb.databaseaccounts.IndexUsage.byDatabase

indexUsageBytes

Azure Cosmos DB

azure.documentdb.databaseaccounts.MetadataRequests.byDatabase

metadataRequests

Azure Cosmos DB

azure.documentdb.databaseaccounts.MongoRequestCharge.byDatabase

mongoRequestCharge

Azure Cosmos DB

azure.documentdb.databaseaccounts.MongoRequests.byDatabase

mongoRequests

Azure Cosmos DB

azure.documentdb.databaseaccounts.ProvisionedThroughput.byDatabase

provisionedThroughput

Azure Cosmos DB

azure.documentdb.databaseaccounts.ReplicationLatency.byDatabase

replicationLatencyMilliseconds

Azure Cosmos DB

azure.documentdb.databaseaccounts.ServiceAvailability.byDatabase

serviceAvailabilityPercent

Azure Cosmos DB

azure.documentdb.databaseaccounts.TotalRequests.byDatabase

totalRequests

Azure Cosmos DB

azure.documentdb.databaseaccounts.TotalRequestUnits.byDatabase

totalRequestUnits

Azure Cost Management

azure.costmanagement.cost.byLocation

cost

Azure Cost Management

azure.costmanagement.cost.byResourceGroup

cost

Azure Cost Management

azure.costmanagement.cost.byService

cost

Azure Cost Management

azure.costmanagement.cost.byTag

cost

Azure Data Factory

azure.datafactory.datafactories.FailedRuns

failedRuns

Azure Data Factory

azure.datafactory.datafactories.SuccessfulRuns

successfulRuns

Azure Data Factory

azure.datafactory.factories.ActivityCancelledRuns

activityCancelledRuns

Azure Data Factory

azure.datafactory.factories.ActivityFailedRuns

activityFailedRuns

Azure Data Factory

azure.datafactory.factories.ActivitySucceededRuns

activitySucceededRuns

Azure Data Factory

azure.datafactory.factories.FactorySizeInGbUnits

factorySizeInGbUnits

Azure Data Factory

azure.datafactory.factories.IntegrationRuntimeAvailableMemory

integrationRuntimeAvailableMemoryBytes

Azure Data Factory

azure.datafactory.factories.IntegrationRuntimeAvailableNodeNumber

integrationRuntimeAvailableNodeNumber

Azure Data Factory

azure.datafactory.factories.IntegrationRuntimeAverageTaskPickupDelay

integrationRuntimeAverageTaskPickupDelaySeconds

Azure Data Factory

azure.datafactory.factories.IntegrationRuntimeCpuPercentage

integrationRuntimeCpuPercentagePercent

Azure Data Factory

azure.datafactory.factories.IntegrationRuntimeQueueLength

integrationRuntimeQueueLength

Azure Data Factory

azure.datafactory.factories.MaxAllowedFactorySizeInGbUnits

maxAllowedFactorySizeInGbUnits

Azure Data Factory

azure.datafactory.factories.MaxAllowedResourceCount

maxAllowedResourceCount

Azure Data Factory

azure.datafactory.factories.PipelineCancelledRuns

pipelineCancelledRuns

Azure Data Factory

azure.datafactory.factories.PipelineFailedRuns

pipelineFailedRuns

Azure Data Factory

azure.datafactory.factories.PipelineSucceededRuns

pipelineSucceededRuns

Azure Data Factory

azure.datafactory.factories.ResourceCount

resourceCount

Azure Data Factory

azure.datafactory.factories.TriggerCancelledRuns

triggerCancelledRuns

Azure Data Factory

azure.datafactory.factories.TriggerFailedRuns

triggerFailedRuns

Azure Data Factory

azure.datafactory.factories.TriggerSucceededRuns

triggerSucceededRuns

Azure Database for MariaDB

azure.dbformariadb.servers.active_connections

activeConnections

Azure Database for MariaDB

azure.dbformariadb.servers.backup_storage_used

backupStorageUsedBytes

Azure Database for MariaDB

azure.dbformariadb.servers.connections_failed

connectionsFailed

Azure Database for MariaDB

azure.dbformariadb.servers.cpu_percent

cpuPercent

Azure Database for MariaDB

azure.dbformariadb.servers.io_consumption_percent

ioConsumptionPercent

Azure Database for MariaDB

azure.dbformariadb.servers.memory_percent

memoryPercent

Azure Database for MariaDB

azure.dbformariadb.servers.network_bytes_egress

networkEgressBytes

Azure Database for MariaDB

azure.dbformariadb.servers.network_bytes_ingress

networkIngressBytes

Azure Database for MariaDB

azure.dbformariadb.servers.serverlog_storage_limit

serverlogStorageLimitBytes

Azure Database for MariaDB

azure.dbformariadb.servers.serverlog_storage_percent

serverlogStoragePercent

Azure Database for MariaDB

azure.dbformariadb.servers.serverlog_storage_usage

serverlogStorageUsageBytes

Azure Database for MariaDB

azure.dbformariadb.servers.storage_limit

storageLimitBytes

Azure Database for MariaDB

azure.dbformariadb.servers.storage_percent

storagePercent

Azure Database for MariaDB

azure.dbformariadb.servers.storage_used

storageUsedBytes

Azure Database for MySQL

azure.dbformysql.servers.active_connections

activeConnections

Azure Database for MySQL

azure.dbformysql.servers.backup_storage_used

backupStorageUsedBytes

Azure Database for MySQL

azure.dbformysql.servers.connections_failed

connectionsFailed

Azure Database for MySQL

azure.dbformysql.servers.cpu_percent

cpuPercent

Azure Database for MySQL

azure.dbformysql.servers.io_consumption_percent

ioConsumptionPercent

Azure Database for MySQL

azure.dbformysql.servers.memory_percent

memoryPercent

Azure Database for MySQL

azure.dbformysql.servers.network_bytes_egress

networkEgressBytes

Azure Database for MySQL

azure.dbformysql.servers.network_bytes_ingress

networkIngressBytes

Azure Database for MySQL

azure.dbformysql.servers.seconds_behind_master

secondsBehindMaster

Azure Database for MySQL

azure.dbformysql.servers.serverlog_storage_limit

serverlogStorageLimitBytes

Azure Database for MySQL

azure.dbformysql.servers.serverlog_storage_percent

serverlogStoragePercent

Azure Database for MySQL

azure.dbformysql.servers.serverlog_storage_usage

serverlogStorageUsageBytes

Azure Database for MySQL

azure.dbformysql.servers.storage_limit

storageLimitBytes

Azure Database for MySQL

azure.dbformysql.servers.storage_percent

storagePercent

Azure Database for MySQL

azure.dbformysql.servers.storage_used

storageUsedBytes

Azure Database for PostgreSQL

azure.dbforpostgresql.servers.active_connections

activeConnections

Azure Database for PostgreSQL

azure.dbforpostgresql.servers.backup_storage_used

backupStorageUsedBytes

Azure Database for PostgreSQL

azure.dbforpostgresql.servers.connections_failed

connectionsFailed

Azure Database for PostgreSQL

azure.dbforpostgresql.servers.cpu_percent

cpuPercent

Azure Database for PostgreSQL

azure.dbforpostgresql.servers.io_consumption_percent

ioConsumptionPercent

Azure Database for PostgreSQL

azure.dbforpostgresql.servers.memory_percent

memoryPercent

Azure Database for PostgreSQL

azure.dbforpostgresql.servers.network_bytes_egress

networkEgressBytes

Azure Database for PostgreSQL

azure.dbforpostgresql.servers.network_bytes_ingress

networkIngressBytes

Azure Database for PostgreSQL

azure.dbforpostgresql.servers.pg_replica_log_delay_in_bytes

pgReplicaLogDelayBytes

Azure Database for PostgreSQL

azure.dbforpostgresql.servers.pg_replica_log_delay_in_seconds

pgReplicaLogDelaySeconds

Azure Database for PostgreSQL

azure.dbforpostgresql.servers.serverlog_storage_limit

serverlogStorageLimitBytes

Azure Database for PostgreSQL

azure.dbforpostgresql.servers.serverlog_storage_percent

serverlogStoragePercent

Azure Database for PostgreSQL

azure.dbforpostgresql.servers.serverlog_storage_usage

serverlogStorageUsageBytes

Azure Database for PostgreSQL

azure.dbforpostgresql.servers.storage_limit

storageLimitBytes

Azure Database for PostgreSQL

azure.dbforpostgresql.servers.storage_percent

storagePercent

Azure Database for PostgreSQL

azure.dbforpostgresql.servers.storage_used

storageUsedBytes

Azure Event Hub

azure.eventhub.namespaces.ActiveConnections

activeConnections

Azure Event Hub

azure.eventhub.namespaces.CaptureBacklog

captureBacklog

Azure Event Hub

azure.eventhub.namespaces.CapturedBytes

capturedBytes

Azure Event Hub

azure.eventhub.namespaces.CapturedMessages

capturedMessages

Azure Event Hub

azure.eventhub.namespaces.ConnectionsClosed

connectionsClosed

Azure Event Hub

azure.eventhub.namespaces.ConnectionsOpened

connectionsOpened

Azure Event Hub

azure.eventhub.namespaces.IncomingBytes

incomingBytes

Azure Event Hub

azure.eventhub.namespaces.IncomingMessages

incomingMessages

Azure Event Hub

azure.eventhub.namespaces.IncomingRequests

incomingRequests

Azure Event Hub

azure.eventhub.namespaces.OutgoingBytes

outgoingBytes

Azure Event Hub

azure.eventhub.namespaces.OutgoingMessages

outgoingMessages

Azure Event Hub

azure.eventhub.namespaces.QuotaExceededErrors

quotaExceededErrors

Azure Event Hub

azure.eventhub.namespaces.ServerErrors

serverErrors

Azure Event Hub

azure.eventhub.namespaces.Size

sizeBytes

Azure Event Hub

azure.eventhub.namespaces.SuccessfulRequests

successfulRequests

Azure Event Hub

azure.eventhub.namespaces.ThrottledRequests

throttledRequests

Azure Event Hub

azure.eventhub.namespaces.UserErrors

userErrors

Azure Event Hub

azure.eventhub.clusters.ActiveConnections

activeConnections

Azure Event Hub

azure.eventhub.clusters.AvailableMemory

availableMemoryPercent

Azure Event Hub

azure.eventhub.clusters.CaptureBacklog

captureBacklog

Azure Event Hub

azure.eventhub.clusters.CapturedBytes

capturedBytes

Azure Event Hub

azure.eventhub.clusters.CapturedMessages

capturedMessages

Azure Event Hub

azure.eventhub.clusters.ConnectionsClosed

connectionsClosed

Azure Event Hub

azure.eventhub.clusters.ConnectionsOpened

connectionsOpened

Azure Event Hub

azure.eventhub.clusters.CPU

cpuPercent

Azure Event Hub

azure.eventhub.clusters.IncomingBytes

incomingBytes

Azure Event Hub

azure.eventhub.clusters.IncomingMessages

incomingMessages

Azure Event Hub

azure.eventhub.clusters.IncomingRequests

incomingRequests

Azure Event Hub

azure.eventhub.clusters.OutgoingBytes

outgoingBytes

Azure Event Hub

azure.eventhub.clusters.OutgoingMessages

outgoingMessages

Azure Event Hub

azure.eventhub.clusters.QuotaExceededErrors

quotaExceededErrors

Azure Event Hub

azure.eventhub.clusters.ServerErrors

serverErrors

Azure Event Hub

azure.eventhub.clusters.Size

sizeBytes

Azure Event Hub

azure.eventhub.clusters.SuccessfulRequests

successfulRequests

Azure Event Hub

azure.eventhub.clusters.ThrottledRequests

throttledRequests

Azure Event Hub

azure.eventhub.clusters.UserErrors

userErrors

Azure Express Route

azure.network.expressrouteports.AdminState

adminState

Azure Express Route

azure.network.expressrouteports.LineProtocol

lineProtocol

Azure Express Route

azure.network.expressrouteports.PortBitsInPerSecond

portBitsInPerSecondCountPerSecond

Azure Express Route

azure.network.expressrouteports.PortBitsOutPerSecond

portBitsOutPerSecondCountPerSecond

Azure Express Route

azure.network.expressrouteports.RxLightLevel

rxLightLevel

Azure Express Route

azure.network.expressrouteports.TxLightLevel

txLightLevel

Azure Express Route

azure.network.expressroutecircuits.ArpAvailability

arpAvailabilityPercent

Azure Express Route

azure.network.expressroutecircuits.BgpAvailability

bgpAvailabilityPercent

Azure Express Route

azure.network.expressroutecircuits.BitsInPerSecond

bitsInPerSecondCountPerSecond

Azure Express Route

azure.network.expressroutecircuits.BitsOutPerSecond

bitsOutPerSecondCountPerSecond

Azure Express Route

azure.network.expressroutecircuits.GlobalReachBitsInPerSecond

globalReachBitsInPerSecondCountPerSecond

Azure Express Route

azure.network.expressroutecircuits.GlobalReachBitsOutPerSecond

globalReachBitsOutPerSecondCountPerSecond

Azure Express Route

azure.network.expressroutecircuits.QosDropBitsInPerSecond

qosDropBitsInPerSecondCountPerSecond

Azure Express Route

azure.network.expressroutecircuits.QosDropBitsOutPerSecond

qosDropBitsOutPerSecondCountPerSecond

Azure Express Route

azure.network.expressroutecircuits.peerings.BitsInPerSecond

bitsInPerSecondCountPerSecond

Azure Express Route

azure.network.expressroutecircuits.peerings.BitsOutPerSecond

bitsOutPerSecondCountPerSecond

Azure Express Route

azure.network.connections.BitsInPerSecond

bitsInPerSecondCountPerSecond

Azure Express Route

azure.network.connections.BitsOutPerSecond

bitsOutPerSecondCountPerSecond

Azure Express Route

azure.network.expressroutegateways.ErGatewayConnectionBitsInPerSecond

erGatewayConnectionBitsInPerSecondCountPerSecond

Azure Express Route

azure.network.expressroutegateways.ErGatewayConnectionBitsOutPerSecond

erGatewayConnectionBitsOutPerSecondCountPerSecond

Azure Firewalls

azure.network.azurefirewalls.ApplicationRuleHit

applicationRuleHit

Azure Firewalls

azure.network.azurefirewalls.DataProcessed

dataProcessedBytes

Azure Firewalls

azure.network.azurefirewalls.FirewallHealth

firewallHealthPercent

Azure Firewalls

azure.network.azurefirewalls.NetworkRuleHit

networkRuleHit

Azure Firewalls

azure.network.azurefirewalls.SNATPortUtilization

sNATPortUtilizationPercent

Azure Firewalls

azure.network.azurefirewalls.Throughput

throughputBitsPerSecond

Azure Front Door

azure.network.frontdoors.BackendHealthPercentage

backendHealthPercent

Azure Front Door

azure.network.frontdoors.BackendRequestCount

backendRequestCount

Azure Front Door

azure.network.frontdoors.BackendRequestLatency

backendRequestLatencyMilliseconds

Azure Front Door

azure.network.frontdoors.BillableResponseSize

billableResponseSizeBytes

Azure Front Door

azure.network.frontdoors.RequestCount

requestCount

Azure Front Door

azure.network.frontdoors.RequestSize

requestSizeBytes

Azure Front Door

azure.network.frontdoors.ResponseSize

responseSizeBytes

Azure Front Door

azure.network.frontdoors.TotalLatency

totalLatencyMilliseconds

Azure Front Door

azure.network.frontdoors.WebApplicationFirewallRequestCount

webApplicationFirewallRequestCount

Azure Functions

azure.web.sites.AverageMemoryWorkingSet.byFunctionsApp

averageMemoryWorkingSetBytes

Azure Functions

azure.web.sites.BytesReceived.byFunctionsApp

receivedBytes

Azure Functions

azure.web.sites.BytesSent.byFunctionsApp

sentBytes

Azure Functions

azure.web.sites.FunctionExecutionCount

functionExecutionCount

Azure Functions

azure.web.sites.FunctionExecutionUnits

functionExecutionUnits

Azure Functions

azure.web.sites.Http5xx.byFunctionsApp

http5xx

Azure Functions

azure.web.sites.MemoryWorkingSet.byFunctionsApp

memoryWorkingSetBytes

Azure Key Vault

azure.keyvault.vaults.Availability

availabilityPercent

Azure Key Vault

azure.keyvault.vaults.SaturationShoebox

saturationShoeboxPercent

Azure Key Vault

azure.keyvault.vaults.ServiceApiHit

serviceApiHit

Azure Key Vault

azure.keyvault.vaults.ServiceApiLatency

serviceApiLatencyMilliseconds

Azure Key Vault

azure.keyvault.vaults.ServiceApiResult

serviceApiResult

Azure Load Balancer

azure.network.loadbalancers.AllocatedSnatPorts

allocatedSnatPorts

Azure Load Balancer

azure.network.loadbalancers.ByteCount

byteCountBytes

Azure Load Balancer

azure.network.loadbalancers.DipAvailability

dipAvailability

Azure Load Balancer

azure.network.loadbalancers.PacketCount

packetCount

Azure Load Balancer

azure.network.loadbalancers.SnatConnectionCount

snatConnectionCount

Azure Load Balancer

azure.network.loadbalancers.SYNCount

synCount

Azure Load Balancer

azure.network.loadbalancers.UsedSnatPorts

usedSnatPorts

Azure Load Balancer

azure.network.loadbalancers.VipAvailability

vipAvailability

Azure Logic Apps

azure.logic.workflows.ActionLatency

actionLatencySeconds

Azure Logic Apps

azure.logic.workflows.ActionsCompleted

actionsCompleted

Azure Logic Apps

azure.logic.workflows.ActionsFailed

actionsFailed

Azure Logic Apps

azure.logic.workflows.ActionsSkipped

actionsSkipped

Azure Logic Apps

azure.logic.workflows.ActionsStarted

actionsStarted

Azure Logic Apps

azure.logic.workflows.ActionsSucceeded

actionsSucceeded

Azure Logic Apps

azure.logic.workflows.ActionSuccessLatency

actionSuccessLatencySeconds

Azure Logic Apps

azure.logic.workflows.ActionThrottledEvents

actionThrottledEvents

Azure Logic Apps

azure.logic.workflows.BillableActionExecutions

billableActionExecutions

Azure Logic Apps

azure.logic.workflows.BillableTriggerExecutions

billableTriggerExecutions

Azure Logic Apps

azure.logic.workflows.BillingUsageNativeOperation

billingUsageNativeOperation

Azure Logic Apps

azure.logic.workflows.BillingUsageStandardConnector

billingUsageStandardConnector

Azure Logic Apps

azure.logic.workflows.BillingUsageStorageConsumption

billingUsageStorageConsumption

Azure Logic Apps

azure.logic.workflows.RunFailurePercentage

runFailurePercent

Azure Logic Apps

azure.logic.workflows.RunLatency

runLatencySeconds

Azure Logic Apps

azure.logic.workflows.RunsCancelled

runsCancelled

Azure Logic Apps

azure.logic.workflows.RunsCompleted

runsCompleted

Azure Logic Apps

azure.logic.workflows.RunsFailed

runsFailed

Azure Logic Apps

azure.logic.workflows.RunsStarted

runsStarted

Azure Logic Apps

azure.logic.workflows.RunsSucceeded

runsSucceeded

Azure Logic Apps

azure.logic.workflows.RunStartThrottledEvents

runStartThrottledEvents

Azure Logic Apps

azure.logic.workflows.RunSuccessLatency

runSuccessLatencySeconds

Azure Logic Apps

azure.logic.workflows.RunThrottledEvents

runThrottledEvents

Azure Logic Apps

azure.logic.workflows.TotalBillableExecutions

totalBillableExecutions

Azure Logic Apps

azure.logic.workflows.TriggerFireLatency

triggerFireLatencySeconds

Azure Logic Apps

azure.logic.workflows.TriggerLatency

triggerLatencySeconds

Azure Logic Apps

azure.logic.workflows.TriggersCompleted

triggersCompleted

Azure Logic Apps

azure.logic.workflows.TriggersFailed

triggersFailed

Azure Logic Apps

azure.logic.workflows.TriggersFired

triggersFired

Azure Logic Apps

azure.logic.workflows.TriggersSkipped

triggersSkipped

Azure Logic Apps

azure.logic.workflows.TriggersStarted

triggersStarted

Azure Logic Apps

azure.logic.workflows.TriggersSucceeded

triggersSucceeded

Azure Logic Apps

azure.logic.workflows.TriggerSuccessLatency

triggerSuccessLatencySeconds

Azure Logic Apps

azure.logic.workflows.TriggerThrottledEvents

triggerThrottledEvents

Azure Logic Apps

azure.logic.integrationserviceenvironments.ActionLatency

actionLatencySeconds

Azure Logic Apps

azure.logic.integrationserviceenvironments.ActionsCompleted

actionsCompleted

Azure Logic Apps

azure.logic.integrationserviceenvironments.ActionsFailed

actionsFailed

Azure Logic Apps

azure.logic.integrationserviceenvironments.ActionsSkipped

actionsSkipped

Azure Logic Apps

azure.logic.integrationserviceenvironments.ActionsStarted

actionsStarted

Azure Logic Apps

azure.logic.integrationserviceenvironments.ActionsSucceeded

actionsSucceeded

Azure Logic Apps

azure.logic.integrationserviceenvironments.ActionSuccessLatency

actionSuccessLatencySeconds

Azure Logic Apps

azure.logic.integrationserviceenvironments.ActionThrottledEvents

actionThrottledEvents

Azure Logic Apps

azure.logic.integrationserviceenvironments.IntegrationServiceEnvironmentConnectorMemoryUsage

integrationServiceEnvironmentConnectorMemoryUsagePercent

Azure Logic Apps

azure.logic.integrationserviceenvironments.IntegrationServiceEnvironmentConnectorProcessorUsage

integrationServiceEnvironmentConnectorProcessorUsagePercent

Azure Logic Apps

azure.logic.integrationserviceenvironments.IntegrationServiceEnvironmentWorkflowMemoryUsage

integrationServiceEnvironmentWorkflowMemoryUsagePercent

Azure Logic Apps

azure.logic.integrationserviceenvironments.IntegrationServiceEnvironmentWorkflowProcessorUsage

integrationServiceEnvironmentWorkflowProcessorUsagePercent

Azure Logic Apps

azure.logic.integrationserviceenvironments.RunFailurePercentage

runFailurePercent

Azure Logic Apps

azure.logic.integrationserviceenvironments.RunLatency

runLatencySeconds

Azure Logic Apps

azure.logic.integrationserviceenvironments.RunsCancelled

runsCancelled

Azure Logic Apps

azure.logic.integrationserviceenvironments.RunsCompleted

runsCompleted

Azure Logic Apps

azure.logic.integrationserviceenvironments.RunsFailed

runsFailed

Azure Logic Apps

azure.logic.integrationserviceenvironments.RunsStarted

runsStarted

Azure Logic Apps

azure.logic.integrationserviceenvironments.RunsSucceeded

runsSucceeded

Azure Logic Apps

azure.logic.integrationserviceenvironments.RunStartThrottledEvents

runStartThrottledEvents

Azure Logic Apps

azure.logic.integrationserviceenvironments.RunSuccessLatency

runSuccessLatencySeconds

Azure Logic Apps

azure.logic.integrationserviceenvironments.RunThrottledEvents

runThrottledEvents

Azure Logic Apps

azure.logic.integrationserviceenvironments.TriggerFireLatency

triggerFireLatencySeconds

Azure Logic Apps

azure.logic.integrationserviceenvironments.TriggerLatency

triggerLatencySeconds

Azure Logic Apps

azure.logic.integrationserviceenvironments.TriggersCompleted

triggersCompleted

Azure Logic Apps

azure.logic.integrationserviceenvironments.TriggersFailed

triggersFailed

Azure Logic Apps

azure.logic.integrationserviceenvironments.TriggersFired

triggersFired

Azure Logic Apps

azure.logic.integrationserviceenvironments.TriggersSkipped

triggersSkipped

Azure Logic Apps

azure.logic.integrationserviceenvironments.TriggersStarted

triggersStarted

Azure Logic Apps

azure.logic.integrationserviceenvironments.TriggersSucceeded

triggersSucceeded

Azure Logic Apps

azure.logic.integrationserviceenvironments.TriggerSuccessLatency

triggerSuccessLatencySeconds

Azure Logic Apps

azure.logic.integrationserviceenvironments.TriggerThrottledEvents

triggerThrottledEvents

Azure Machine Learning

azure.machinelearningservices.workspaces.ActiveCores

activeCores

Azure Machine Learning

azure.machinelearningservices.workspaces.ActiveNodes

activeNodes

Azure Machine Learning

azure.machinelearningservices.workspaces.CompletedRuns

completedRuns

Azure Machine Learning

azure.machinelearningservices.workspaces.CpuUtilization

cpuUtilization

Azure Machine Learning

azure.machinelearningservices.workspaces.FailedRuns

failedRuns

Azure Machine Learning

azure.machinelearningservices.workspaces.GpuUtilization

gpuUtilization

Azure Machine Learning

azure.machinelearningservices.workspaces.IdleCores

idleCores

Azure Machine Learning

azure.machinelearningservices.workspaces.IdleNodes

idleNodes

Azure Machine Learning

azure.machinelearningservices.workspaces.LeavingCores

leavingCores

Azure Machine Learning

azure.machinelearningservices.workspaces.LeavingNodes

leavingNodes

Azure Machine Learning

azure.machinelearningservices.workspaces.ModelDeployFailed

modelDeployFailed

Azure Machine Learning

azure.machinelearningservices.workspaces.ModelDeployStarted

modelDeployStarted

Azure Machine Learning

azure.machinelearningservices.workspaces.ModelDeploySucceeded

modelDeploySucceeded

Azure Machine Learning

azure.machinelearningservices.workspaces.ModelRegisterFailed

modelRegisterFailed

Azure Machine Learning

azure.machinelearningservices.workspaces.ModelRegisterSucceeded

modelRegisterSucceeded

Azure Machine Learning

azure.machinelearningservices.workspaces.PreemptedCores

preemptedCores

Azure Machine Learning

azure.machinelearningservices.workspaces.PreemptedNodes

preemptedNodes

Azure Machine Learning

azure.machinelearningservices.workspaces.QuotaUtilizationPercentage

quotaUtilizationPercentage

Azure Machine Learning

azure.machinelearningservices.workspaces.StartedRuns

startedRuns

Azure Machine Learning

azure.machinelearningservices.workspaces.TotalCores

totalCores

Azure Machine Learning

azure.machinelearningservices.workspaces.TotalNodes

totalNodes

Azure Machine Learning

azure.machinelearningservices.workspaces.UnusableCores

unusableCores

Azure Machine Learning

azure.machinelearningservices.workspaces.UnusableNodes

unusableNodes

Azure Power BI Dedicated

azure.powerbidedicated.capacities.memory_metric

memoryMetricBytes

Azure Power BI Dedicated

azure.powerbidedicated.capacities.memory_thrashing_metric

memoryThrashingMetricPercent

Azure Power BI Dedicated

azure.powerbidedicated.capacities.qpu_high_utilization_metric

qpuHighUtilizationMetric

Azure Power BI Dedicated

azure.powerbidedicated.capacities.QueryDuration

queryDurationMilliseconds

Azure Power BI Dedicated

azure.powerbidedicated.capacities.QueryPoolJobQueueLength

queryPoolJobQueueLength

Azure Redis

azure.cache.redis.cachehits

cacheHits

Azure Redis

azure.cache.redis.cachemisses

cacheMisses

Azure Redis

azure.cache.redis.cacheRead

cacheReadBytesPerSecond

Azure Redis

azure.cache.redis.cacheWrite

cacheWriteBytesPerSecond

Azure Redis

azure.cache.redis.connectedclients

connectedClients

Azure Redis

azure.cache.redis.evictedkeys

evictedKeys

Azure Redis

azure.cache.redis.expiredkeys

expiredKeys

Azure Redis

azure.cache.redis.getcommands

getCommands

Azure Redis

azure.cache.redis.operationsPerSecond

operationsPerSecond

Azure Redis

azure.cache.redis.percentProcessorTime

processorTimePercent

Azure Redis

azure.cache.redis.serverLoad

serverLoadPercent

Azure Redis

azure.cache.redis.setcommands

setCommands

Azure Redis

azure.cache.redis.totalcommandsprocessed

totalCommandsProcessed

Azure Redis

azure.cache.redis.totalkeys

totalKeys

Azure Redis

azure.cache.redis.usedmemory

usedMemoryBytes

Azure Redis

azure.cache.redis.usedmemoryRss

usedMemoryRssBytes

Azure Redis

azure.cache.redis.cachehits0

cacheHits

Azure Redis

azure.cache.redis.cachemisses0

cacheMisses

Azure Redis

azure.cache.redis.cacheRead0

cacheReadBytesPerSecond

Azure Redis

azure.cache.redis.cacheWrite0

cacheWriteBytesPerSecond

Azure Redis

azure.cache.redis.connectedclients0

connectedClients

Azure Redis

azure.cache.redis.evictedkeys0

evictedKeys

Azure Redis

azure.cache.redis.expiredkeys0

expiredKeys

Azure Redis

azure.cache.redis.getcommands0

getCommands

Azure Redis

azure.cache.redis.operationsPerSecond0

operationsPerSecond

Azure Redis

azure.cache.redis.percentProcessorTime0

processorTimePercent

Azure Redis

azure.cache.redis.serverLoad0

serverLoadPercent

Azure Redis

azure.cache.redis.setcommands0

setCommands

Azure Redis

azure.cache.redis.totalcommandsprocessed0

totalCommandsProcessed

Azure Redis

azure.cache.redis.totalkeys0

totalKeys

Azure Redis

azure.cache.redis.usedmemory0

usedMemoryBytes

Azure Redis

azure.cache.redis.usedmemoryRss0

usedMemoryRssBytes

Azure Service Bus

azure.servicebus.namespaces.ActiveConnections

activeConnections

Azure Service Bus

azure.servicebus.namespaces.ActiveMessages.byNamespace

activeMessages

Azure Service Bus

azure.servicebus.namespaces.ConnectionsClosed.byNamespace

connectionsClosed

Azure Service Bus

azure.servicebus.namespaces.ConnectionsOpened.byNamespace

connectionsOpened

Azure Service Bus

azure.servicebus.namespaces.CPUXNS

cpuUsagePercent

Azure Service Bus

azure.servicebus.namespaces.DeadletteredMessages.byNamespace

deadletteredMessages

Azure Service Bus

azure.servicebus.namespaces.IncomingMessages.byNamespace

incomingMessages

Azure Service Bus

azure.servicebus.namespaces.IncomingRequests.byNamespace

incomingRequests

Azure Service Bus

azure.servicebus.namespaces.Messages.byNamespace

messages

Azure Service Bus

azure.servicebus.namespaces.OutgoingMessages.byNamespace

outgoingMessages

Azure Service Bus

azure.servicebus.namespaces.ScheduledMessages.byNamespace

scheduledMessages

Azure Service Bus

azure.servicebus.namespaces.ServerErrors.byNamespace

serverErrors

Azure Service Bus

azure.servicebus.namespaces.Size.byNamespace

sizeBytes

Azure Service Bus

azure.servicebus.namespaces.SuccessfulRequests.byNamespace

successfulRequests

Azure Service Bus

azure.servicebus.namespaces.ThrottledRequests.byNamespace

throttledRequests

Azure Service Bus

azure.servicebus.namespaces.UserErrors.byNamespace

userErrors

Azure Service Bus

azure.servicebus.namespaces.WSXNS

memoryUsagePercent

Azure Service Bus

azure.servicebus.namespaces.ActiveMessages.byQueue

activeMessages

Azure Service Bus

azure.servicebus.namespaces.ConnectionsClosed.byQueue

connectionsClosed

Azure Service Bus

azure.servicebus.namespaces.ConnectionsOpened.byQueue

connectionsOpened

Azure Service Bus

azure.servicebus.namespaces.currentSizeInBytes.byQueue

currentSizeBytes

Azure Service Bus

azure.servicebus.namespaces.DeadletteredMessages.byQueue

deadletteredMessages

Azure Service Bus

azure.servicebus.namespaces.deadLetterMessageCount.byQueue

deadLetterMessages

Azure Service Bus

azure.servicebus.namespaces.IncomingMessages.byQueue

incomingMessages

Azure Service Bus

azure.servicebus.namespaces.IncomingRequests.byQueue

incomingRequests

Azure Service Bus

azure.servicebus.namespaces.Messages.byQueue

messages

Azure Service Bus

azure.servicebus.namespaces.OutgoingMessages.byQueue

outgoingMessages

Azure Service Bus

azure.servicebus.namespaces.ScheduledMessages.byQueue

scheduledMessages

Azure Service Bus

azure.servicebus.namespaces.ServerErrors.byQueue

serverErrors

Azure Service Bus

azure.servicebus.namespaces.Size.byQueue

sizeBytes

Azure Service Bus

azure.servicebus.namespaces.SuccessfulRequests.byQueue

successfulRequests

Azure Service Bus

azure.servicebus.namespaces.ThrottledRequests.byQueue

throttledRequests

Azure Service Bus

azure.servicebus.namespaces.transferDeadLetterMessageCount.byQueue

transferDeadLetterMessages

Azure Service Bus

azure.servicebus.namespaces.transferMessageCount.byQueue

transferMessages

Azure Service Bus

azure.servicebus.namespaces.UserErrors.byQueue

userErrors

Azure Service Bus

azure.servicebus.namespaces.activeMessageCount

activeMessages

Azure Service Bus

azure.servicebus.namespaces.deadLetterMessageCount.bySubscription

deadLetterMessages

Azure Service Bus

azure.servicebus.namespaces.messageCount

messages

Azure Service Bus

azure.servicebus.namespaces.scheduledMessageCount

scheduledMessages

Azure Service Bus

azure.servicebus.namespaces.transferDeadLetterMessageCount.bySubscription

transferDeadLetterMessages

Azure Service Bus

azure.servicebus.namespaces.transferMessageCount.bySubscription

transferMessages

Azure Service Bus

azure.servicebus.namespaces.ActiveMessages.byTopic

activeMessages

Azure Service Bus

azure.servicebus.namespaces.ConnectionsClosed.byTopic

connectionsClosed

Azure Service Bus

azure.servicebus.namespaces.ConnectionsOpened.byTopic

connectionsOpened

Azure Service Bus

azure.servicebus.namespaces.currentSizeInBytes.byTopic

currentSizeInBytes

Azure Service Bus

azure.servicebus.namespaces.DeadletteredMessages.byTopic

deadletteredMessages

Azure Service Bus

azure.servicebus.namespaces.deadLetterMessageCount.byTopic

deadLetterMessages

Azure Service Bus

azure.servicebus.namespaces.IncomingMessages.byTopic

incomingMessages

Azure Service Bus

azure.servicebus.namespaces.IncomingRequests.byTopic

incomingRequests

Azure Service Bus

azure.servicebus.namespaces.Messages.byTopic

messages

Azure Service Bus

azure.servicebus.namespaces.OutgoingMessages.byTopic

outgoingMessages

Azure Service Bus

azure.servicebus.namespaces.ScheduledMessages.byTopic

scheduledMessages

Azure Service Bus

azure.servicebus.namespaces.ServerErrors.byTopic

serverErrors

Azure Service Bus

azure.servicebus.namespaces.Size.byTopic

sizeBytes

Azure Service Bus

azure.servicebus.namespaces.subscriptionCount

subscriptions

Azure Service Bus

azure.servicebus.namespaces.SuccessfulRequests.byTopic

successfulRequests

Azure Service Bus

azure.servicebus.namespaces.ThrottledRequests.byTopic

throttledRequests

Azure Service Bus

azure.servicebus.namespaces.transferDeadLetterMessageCount.byTopic

transferDeadLetterMessages

Azure Service Bus

azure.servicebus.namespaces.transferMessageCount.byTopic

transferMessages

Azure Service Bus

azure.servicebus.namespaces.UserErrors.byTopic

userErrors

Azure SQL

azure.sql.servers.database.currentSize

databaseSizeCurrentBytes

Azure SQL

azure.sql.servers.database.limitSize

databaseSizeLimitBytes

Azure SQL

azure.sql.servers.databases.blocked_by_firewall

blockedByFirewall

Azure SQL

azure.sql.servers.databases.connection_failed

connectionFailed

Azure SQL

azure.sql.servers.databases.connection_successful

connectionSuccessful

Azure SQL

azure.sql.servers.databases.cpu_percent

cpuPercent

Azure SQL

azure.sql.servers.databases.deadlock

deadlock

Azure SQL

azure.sql.servers.databases.dtu_consumption_percent

dtuConsumptionPercent

Azure SQL

azure.sql.servers.databases.dtu_limit

dtuLimit

Azure SQL

azure.sql.servers.databases.dtu_used

dtuUsed

Azure SQL

azure.sql.servers.databases.dw_cpu_percent

dwCpuPercent

Azure SQL

azure.sql.servers.databases.dw_physical_data_read_percent

dwPhysicalDataReadPercent

Azure SQL

azure.sql.servers.databases.dwu_consumption_percent

dwuConsumptionPercent

Azure SQL

azure.sql.servers.databases.dwu_limit

dwuLimit

Azure SQL

azure.sql.servers.databases.dwu_used

dwuUsed

Azure SQL

azure.sql.servers.databases.log_write_percent

logWritePercent

Azure SQL

azure.sql.servers.databases.physical_data_read_percent

physicalDataReadPercent

Azure SQL

azure.sql.servers.databases.sessions_percent

sessionsPercent

Azure SQL

azure.sql.servers.databases.storage

storageBytes

Azure SQL

azure.sql.servers.databases.storage_percent

storagePercent

Azure SQL

azure.sql.servers.databases.workers_percent

workersPercent

Azure SQL

azure.sql.servers.databases.xtp_storage_percent

xtpStoragePercent

Azure SQL

azure.sql.elasticPool.database_physical_data_read_percent

databasePhysicalDataRead

Azure SQL

azure.sql.elasticPool.database_storage_used

databaseStorageUsed

Azure SQL

azure.sql.servers.elasticpools.cpu_percent

cpuPercent

Azure SQL

azure.sql.servers.elasticpools.database_cpu_percent

databaseCpuPercent

Azure SQL

azure.sql.servers.elasticpools.database_dtu_consumption_percent

databaseDtuConsumptionPercent

Azure SQL

azure.sql.servers.elasticpools.database_log_write_percent

databaseLogWritePercent

Azure SQL

azure.sql.servers.elasticpools.database_sessions_percent

databaseSessionsPercent

Azure SQL

azure.sql.servers.elasticpools.database_workers_percent

databaseWorkersPercent

Azure SQL

azure.sql.servers.elasticpools.dtu_consumption_percent

dtuConsumptionPercent

Azure SQL

azure.sql.servers.elasticpools.eDTU_limit

eDTULimit

Azure SQL

azure.sql.servers.elasticpools.eDTU_used

eDTUUsed

Azure SQL

azure.sql.servers.elasticpools.log_write_percent

logWritePercent

Azure SQL

azure.sql.servers.elasticpools.physical_data_read_percent

physicalDataReadPercent

Azure SQL

azure.sql.servers.elasticpools.sessions_percent

sessionsPercent

Azure SQL

azure.sql.servers.elasticpools.storage_limit

storageLimitBytes

Azure SQL

azure.sql.servers.elasticpools.storage_percent

storagePercent

Azure SQL

azure.sql.servers.elasticpools.storage_used

storageUsedBytes

Azure SQL

azure.sql.servers.elasticpools.workers_percent

workersPercent

Azure SQL

azure.sql.servers.elasticpools.xtp_storage_percent

xtpStoragePercent

Azure SQL

azure.sql.server.dtuLimit

dtuLimit

Azure SQL

azure.sql.servers.dtuCurrent

dtuCurrent

Azure SQL Managed Instance

azure.sql.managedinstances.avg_cpu_percent

avgCpuPercent

Azure SQL Managed Instance

azure.sql.managedinstances.io_bytes_read

ioReadBytes

Azure SQL Managed Instance

azure.sql.managedinstances.io_bytes_written

ioWrittenBytes

Azure SQL Managed Instance

azure.sql.managedinstances.io_requests

ioRequests

Azure SQL Managed Instance

azure.sql.managedinstances.reserved_storage_mb

reservedStorage

Azure SQL Managed Instance

azure.sql.managedinstances.storage_space_used_mb

storageSpaceUsed

Azure SQL Managed Instance

azure.sql.managedinstances.virtual_core_count

virtualCore

Azure Storage Account

azure.storage.storageaccounts.Availability

availabilityPercent

Azure Storage Account

azure.storage.storageaccounts.blobservices.Availability

blobs.availabilityPercent

Azure Storage Account

azure.storage.storageaccounts.blobservices.BlobCapacity

blobs.blobCapacityBytes

Azure Storage Account

azure.storage.storageaccounts.blobservices.BlobCount

blobs.blobCount

Azure Storage Account

azure.storage.storageaccounts.blobservices.ContainerCount

blobs.containerCount

Azure Storage Account

azure.storage.storageaccounts.blobservices.Egress

blobs.egressBytes

Azure Storage Account

azure.storage.storageaccounts.blobservices.Ingress

blobs.ingressBytes

Azure Storage Account

azure.storage.storageaccounts.blobservices.SuccessE2ELatency

blobs.successE2ELatencyMilliseconds

Azure Storage Account

azure.storage.storageaccounts.blobservices.SuccessServerLatency

blobs.successServerLatencyMilliseconds

Azure Storage Account

azure.storage.storageaccounts.blobservices.Transactions

blobs.transactions

Azure Storage Account

azure.storage.storageaccounts.Egress

egressBytes

Azure Storage Account

azure.storage.storageaccounts.fileservices.Availability

files.availabilityPercent

Azure Storage Account

azure.storage.storageaccounts.fileservices.Egress

files.egressBytes

Azure Storage Account

azure.storage.storageaccounts.fileservices.FileCapacity

files.fileCapacityBytes

Azure Storage Account

azure.storage.storageaccounts.fileservices.FileCount

files.fileCount

Azure Storage Account

azure.storage.storageaccounts.fileservices.FileShareCount

files.fileShareCount

Azure Storage Account

azure.storage.storageaccounts.fileservices.Ingress

files.ingressBytes

Azure Storage Account

azure.storage.storageaccounts.fileservices.SuccessE2ELatency

files.successE2ELatencyMilliseconds

Azure Storage Account

azure.storage.storageaccounts.fileservices.SuccessServerLatency

files.successServerLatencyMilliseconds

Azure Storage Account

azure.storage.storageaccounts.fileservices.Transactions

files.transactions

Azure Storage Account

azure.storage.storageaccounts.Ingress

ingressBytes

Azure Storage Account

azure.storage.storageaccounts.queueservices.Availability

queues.availabilityPercent

Azure Storage Account

azure.storage.storageaccounts.queueservices.Egress

queues.egressBytes

Azure Storage Account

azure.storage.storageaccounts.queueservices.Ingress

queues.ingressBytes

Azure Storage Account

azure.storage.storageaccounts.queueservices.QueueCapacity

queues.queueCapacityBytes

Azure Storage Account

azure.storage.storageaccounts.queueservices.QueueCount

queues.queueCount

Azure Storage Account

azure.storage.storageaccounts.queueservices.QueueMessageCount

queues.queueMessagesCount

Azure Storage Account

azure.storage.storageaccounts.queueservices.SuccessE2ELatency

queues.successE2ELatencyMilliseconds

Azure Storage Account

azure.storage.storageaccounts.queueservices.SuccessServerLatency

queues.successServerLatencyMilliseconds

Azure Storage Account

azure.storage.storageaccounts.queueservices.Transactions

queues.transactions

Azure Storage Account

azure.storage.storageaccounts.SuccessE2ELatency

successE2ELatencyMilliseconds

Azure Storage Account

azure.storage.storageaccounts.SuccessServerLatency

successServerLatencyMilliseconds

Azure Storage Account

azure.storage.storageaccounts.tableservices.Availability

tables.availabilityPercent

Azure Storage Account

azure.storage.storageaccounts.tableservices.Egress

tables.egressBytes

Azure Storage Account

azure.storage.storageaccounts.tableservices.Ingress

tables.ingressBytes

Azure Storage Account

azure.storage.storageaccounts.tableservices.SuccessE2ELatency

tables.successE2ELatencyMilliseconds

Azure Storage Account

azure.storage.storageaccounts.tableservices.SuccessServerLatency

tables.successServerLatencyMilliseconds

Azure Storage Account

azure.storage.storageaccounts.tableservices.TableCapacity

tables.tableCapacityBytes

Azure Storage Account

azure.storage.storageaccounts.tableservices.TableCount

tables.tableCount

Azure Storage Account

azure.storage.storageaccounts.tableservices.TableEntityCount

tables.tableEntityCount

Azure Storage Account

azure.storage.storageaccounts.tableservices.Transactions

tables.transactions

Azure Storage Account

azure.storage.storageaccounts.Transactions

transactions

Azure Storage Account

azure.storage.storageaccounts.UsedCapacity

usedCapacityBytes

Azure Virtual Network

azure.network.virtualnetworks.PingMeshAverageRoundtripMs

pingMeshAverageRoundtripMs

Azure Virtual Network

azure.network.virtualnetworks.PingMeshProbesFailedPercent

pingMeshProbesFailedPercent

Azure Virtual Network

azure.network.publicipaddresses.BytesDroppedDDoS

droppedDdosBytesPerSecond

Azure Virtual Network

azure.network.publicipaddresses.BytesForwardedDDoS

forwardedDdosBytesPerSecond

Azure Virtual Network

azure.network.publicipaddresses.BytesInDDoS

inDdosBytesPerSecond

Azure Virtual Network

azure.network.publicipaddresses.DDoSTriggerTCPPackets

ddosTriggerTcpPacketsPerSecond

Azure Virtual Network

azure.network.publicipaddresses.DDoSTriggerUDPPackets

ddosTriggerUdpPacketsPerSecond

Azure Virtual Network

azure.network.publicipaddresses.IfUnderDDoSAttack

ifUnderDdosAttack

Azure Virtual Network

azure.network.publicipaddresses.PacketsDroppedDDoS

packetsDroppedDdosPerSecond

Azure Virtual Network

azure.network.publicipaddresses.PacketsForwardedDDoS

packetsForwardedDdosPerSecond

Azure Virtual Network

azure.network.publicipaddresses.PacketsInDDoS

packetsInDdosPerSecond

Azure Virtual Network

azure.network.publicipaddresses.TCPBytesDroppedDDoS

tcpDroppedDdosPerSecond

Azure Virtual Network

azure.network.publicipaddresses.TCPBytesForwardedDDoS

tcpForwardedDdosBytesPerSecond

Azure Virtual Network

azure.network.publicipaddresses.TCPBytesInDDoS

tcpInDdosBytesPerSecond

Azure Virtual Network

azure.network.publicipaddresses.TCPPacketsDroppedDDoS

tcpPacketsDroppedDdosPerSecond

Azure Virtual Network

azure.network.publicipaddresses.TCPPacketsForwardedDDoS

tcpPacketsForwardedDdosPerSecond

Azure Virtual Network

azure.network.publicipaddresses.TCPPacketsInDDoS

tcpPacketsInDdosPerSecond

Azure Virtual Network

azure.network.publicipaddresses.UDPBytesDroppedDDoS

udpDroppedDdosBytesPerSecond

Azure Virtual Network

azure.network.publicipaddresses.UDPBytesForwardedDDoS

udpForwardedDdosBytesPerSecond

Azure Virtual Network

azure.network.publicipaddresses.UDPBytesInDDoS

udpInDdosBytesPerSecond

Azure Virtual Network

azure.network.publicipaddresses.UDPPacketsDroppedDDoS

udpPacketsDroppedDdosPerSecond

Azure Virtual Network

azure.network.publicipaddresses.UDPPacketsForwardedDDoS

udpPacketsForwardedDdosPerSecond

Azure Virtual Network

azure.network.publicipaddresses.UDPPacketsInDDoS

udpPacketsInDdosPerSecond

Azure Virtual Network

azure.network.virtualnetworks.availableAddresses

availableAddresses

Azure VMs Scale Sets

azure.compute.virtualmachinescalesets.CPUCreditsConsumed

cpuCreditsConsumed

Azure VMs Scale Sets

azure.compute.virtualmachinescalesets.CPUCreditsRemaining

cpuCreditsRemaining

Azure VMs Scale Sets

azure.compute.virtualmachinescalesets.DataDiskQueueDepth

dataDiskQueueDepth

Azure VMs Scale Sets

azure.compute.virtualmachinescalesets.DataDiskReadBytessec

dataDiskReadBytesCountPerSecond

Azure VMs Scale Sets

azure.compute.virtualmachinescalesets.DataDiskReadOperationsSec

dataDiskReadOperationsCountPerSecond

Azure VMs Scale Sets

azure.compute.virtualmachinescalesets.DataDiskWriteBytessec

dataDiskWriteBytesCountPerSecond

Azure VMs Scale Sets

azure.compute.virtualmachinescalesets.DataDiskWriteOperationsSec

dataDiskWriteOperationsCountPerSecond

Azure VMs Scale Sets

azure.compute.virtualmachinescalesets.DiskReadBytes

diskReadBytes

Azure VMs Scale Sets

azure.compute.virtualmachinescalesets.DiskReadOperationsSec

diskReadOperationsCountPerSecond

Azure VMs Scale Sets

azure.compute.virtualmachinescalesets.DiskWriteBytes

diskWriteBytes

Azure VMs Scale Sets

azure.compute.virtualmachinescalesets.DiskWriteOperationsSec

diskWriteOperationsCountPerSecond

Azure VMs Scale Sets

azure.compute.virtualmachinescalesets.InboundFlows

inboundFlows

Azure VMs Scale Sets

azure.compute.virtualmachinescalesets.InboundFlowsMaximumCreationRate

inboundFlowsMaximumCreationRateCountPerSecond

Azure VMs Scale Sets

azure.compute.virtualmachinescalesets.NetworkInTotal

networkInTotalBytes

Azure VMs Scale Sets

azure.compute.virtualmachinescalesets.NetworkOutTotal

networkOutTotalBytes

Azure VMs Scale Sets

azure.compute.virtualmachinescalesets.OSDiskQueueDepth

osDiskQueueDepth

Azure VMs Scale Sets

azure.compute.virtualmachinescalesets.OSDiskReadBytessec

osDiskReadBytesCountPerSecond

Azure VMs Scale Sets

azure.compute.virtualmachinescalesets.OSDiskReadOperationsSec

osDiskReadOperationsCountPerSecond

Azure VMs Scale Sets

azure.compute.virtualmachinescalesets.OSDiskWriteBytessec

osDiskWriteBytesCountPerSecond

Azure VMs Scale Sets

azure.compute.virtualmachinescalesets.OSDiskWriteOperationsSec

osDiskWriteOperationsCountPerSecond

Azure VMs Scale Sets

azure.compute.virtualmachinescalesets.OutboundFlows

outboundFlows

Azure VMs Scale Sets

azure.compute.virtualmachinescalesets.OutboundFlowsMaximumCreationRate

outboundFlowsMaximumCreationRateCountPerSecond

Azure VMs Scale Sets

azure.compute.virtualmachinescalesets.PercentageCPU

cpuPercent

Azure VMs Scale Sets

azure.compute.virtualmachinescalesets.PremiumDataDiskCacheReadHit

premiumDataDiskCacheReadHitPercent

Azure VMs Scale Sets

azure.compute.virtualmachinescalesets.PremiumDataDiskCacheReadMiss

premiumDataDiskCacheReadMissPercent

Azure VMs Scale Sets

azure.compute.virtualmachinescalesets.PremiumOSDiskCacheReadHit

premiumOsDiskCacheReadHitPercent

Azure VMs Scale Sets

azure.compute.virtualmachinescalesets.PremiumOSDiskCacheReadMiss

premiumOsDiskCacheReadMissPercent

Azure VMs

azure.compute.virtualmachines.DiskReadBytes

diskReadBytes

Azure VMs

azure.compute.virtualmachines.DiskReadOperations.Sec

diskReadOpsPerSecond

Azure VMs

azure.compute.virtualmachines.DiskWriteBytes

diskWriteBytes

Azure VMs

azure.compute.virtualmachines.DiskWriteOperations.Sec

diskWriteOpsPerSecond

Azure VMs

azure.compute.virtualmachines.NetworkIn

networkInBytes

Azure VMs

azure.compute.virtualmachines.NetworkOut

networkOutBytes

Azure VMs

azure.compute.virtualmachines.PercentageCPU

cpuUsagePercent

Azure VPN Gateways

azure.network.virtualnetworkgateways.AverageBandwidth

averageBandwidthBytesPerSecond

Azure VPN Gateways

azure.network.virtualnetworkgateways.P2SBandwidth

p2SBandwidthBytesPerSecond

Azure VPN Gateways

azure.network.virtualnetworkgateways.P2SConnectionCount

p2SConnectionCount

Azure VPN Gateways

azure.network.virtualnetworkgateways.TunnelAverageBandwidth

tunnelAverageBandwidthBytesPerSecond

Azure VPN Gateways

azure.network.virtualnetworkgateways.TunnelEgressBytes

tunnelEgressBytes

Azure VPN Gateways

azure.network.virtualnetworkgateways.TunnelEgressPacketDropTSMismatch

tunnelEgressPacketDropTSMismatch

Azure VPN Gateways

azure.network.virtualnetworkgateways.TunnelEgressPackets

tunnelEgressPackets

Azure VPN Gateways

azure.network.virtualnetworkgateways.TunnelIngressBytes

tunnelIngressBytes

Azure VPN Gateways

azure.network.virtualnetworkgateways.TunnelIngressPacketDropTSMismatch

tunnelIngressPacketDropTSMismatch

Azure VPN Gateways

azure.network.virtualnetworkgateways.TunnelIngressPackets

tunnelIngressPackets

Copyright © 2024 New Relic Inc.

This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.