OBJECT

ObservationUsageResult

link GraphQL Schema definition

  • type ObservationUsageResult {
  • # Licence type for the Tenant
  • licenseType: ObservationUsageLicenseType!
  • # Date when the user was converted to PAID user
  • paidConversionDate: DateTime
  • # Total number of events ingested during the specified date range
  • totalEventCount: Long!
  • # Total exceeded event count for the specified date range
  • totalExceededEventCount: Long!
  • # Total observation count for the specified date range
  • totalObservationCount: Long!
  • # Total throttled usage count for the specified date range
  • totalThrottledUsageCount: Long! @deprecated( reason: "Refer to totalExceededEventCount field!" )
  • # Total usage count for the specified date range
  • totalUsageCount: Long! @deprecated( reason: "Refer to totalObservationCount field!" )
  • usage: [ObservationUsageResultItem!]
  • # Usage limit for the customer, unlimited will be set to 0
  • usageLimit: Long!
  • }