Skip to main content

AppUsageSummary

Aggregate byte totals plus the top GraphQL operations for one app over the window. WHICH OF THESE YOU PAY FOR: the *SendBytes fields are the billable direction, and *RecvBytes are metered but do NOT count toward Aggregate Data Volume, the monthly free-tier and overage measure. All byte figures are wire bytes measured at the network interface, including transport and network headers, and after any compression the service applies -- they will not match a client-side byte counter.

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