AppUsageSummary
Aggregate byte totals plus the top GraphQL operations for one app over the window.
type AppUsageSummary {
appId: String!
replicationSendBytes: String!
replicationRecvBytes: String!
graphqlSendBytes: String!
graphqlRecvBytes: String!
topGraphqlOperations: [GraphqlOperationUsageRow!]!
automationRuns: String!
automationInvocations: String!
automationComputeUnits: String!
}
Fields
AppUsageSummary.appId ● String! non-null scalar
App id (as a string).
AppUsageSummary.replicationSendBytes ● String! non-null scalar
Total replication bytes sent (string counter).
AppUsageSummary.replicationRecvBytes ● String! non-null scalar
Total replication bytes received (string counter).
AppUsageSummary.graphqlSendBytes ● String! non-null scalar
Total GraphQL bytes sent (string counter).
AppUsageSummary.graphqlRecvBytes ● String! non-null scalar
Total GraphQL bytes received (string counter).
AppUsageSummary.topGraphqlOperations ● [GraphqlOperationUsageRow!]! non-null object
Top GraphQL operations by bytes (capped by operationLimit).
AppUsageSummary.automationRuns ● String! non-null scalar
Autonomous-process (NPC) runs over the window (string counter).
AppUsageSummary.automationInvocations ● String! non-null scalar
Autonomous-process function invocations over the window (string counter).
AppUsageSummary.automationComputeUnits ● String! non-null scalar
Billed autonomous-process compute units over the window (string counter).
Returned By
appUsageSummary query