OBJECT

ObservabilityQuery

link GraphQL Schema definition

  • type ObservabilityQuery {
  • # **NOTE:** This API/functionality is in Alpha, This functionality can be unstable
  • # and schema elements may change over future iterations.
  • #
  • # Arguments
  • # after: [Not documented]
  • # entityId: [Not documented]
  • # first: [Not documented]
  • # input: [Not documented]
  • queryExceptionGroups(
  • after: String,
  • entityId: [EntityId!],
  • first: Int,
  • input: ExceptionGroupInput
  • ): ExceptionGroupConnection
  • # **NOTE:** This API/functionality is in Alpha, This functionality can be unstable
  • # and schema elements may change over future iterations.
  • #
  • # Arguments
  • # after: [Not documented]
  • # entityId: [Not documented]
  • # first: [Not documented]
  • # input: [Not documented]
  • queryExceptionStats(
  • after: String,
  • entityId: [EntityId!],
  • first: Int,
  • input: ExceptionStatsInput
  • ): ExceptionStatsResponse
  • # **NOTE:** This API/functionality is in Alpha, This functionality can be unstable
  • # and schema elements may change over future iterations.
  • #
  • # Arguments
  • # after: [Not documented]
  • # entityId: [Not documented]
  • # first: [Not documented]
  • # input: [Not documented]
  • queryExceptionTrends(
  • after: String,
  • entityId: [EntityId!],
  • first: Int,
  • input: ExceptionTrendInput
  • ): ExceptionTrendResponse
  • # Query exceptions.
  • #
  • # **NOTE:** This API/functionality is in Alpha, This functionality can be unstable
  • # and schema elements may change over future iterations.
  • #
  • # Arguments
  • # after: [Not documented]
  • # entityId: [Not documented]
  • # first: [Not documented]
  • # input: [Not documented]
  • queryExceptions(
  • after: String,
  • entityId: [EntityId!],
  • first: Int,
  • input: ExceptionInput
  • ): ExceptionConnection
  • # Query Log Pattern Statistics
  • #
  • # **NOTE:** This API/functionality is in Alpha, This functionality can be unstable
  • # and schema elements may change over future iterations.
  • #
  • # Arguments
  • # entityId: Optionally filter by entityIds
  • # first: Number of log types to be returned
  • # input: Filters for querying log pattern
  • queryLogPatternStats(
  • entityId: [EntityId!],
  • first: Int,
  • input: LogPatternInput!
  • ): LogPatternStatsResponse
  • # Query Log Patterns
  • #
  • # **NOTE:** This API/functionality is in Alpha, This functionality can be unstable
  • # and schema elements may change over future iterations.
  • #
  • # Arguments
  • # entityId: Optionally filter by entityIds
  • # first: Number of log types to be returned
  • # input: [Not documented]
  • queryLogPatterns(
  • entityId: [EntityId!],
  • first: Int,
  • input: LogPatternInput
  • ): LogPatternResponse
  • # Query log records.
  • #
  • # **NOTE:** This API/functionality is in Alpha, This functionality can be unstable
  • # and schema elements may change over future iterations.
  • #
  • # Arguments
  • # after: Return records after the given cursor, as per GraphQL
  • # Relay spec
  • # entityId: Optionally filter by entityIds
  • # first: Return first N records in a paged response, as per
  • # GraphQL Relay spec
  • # input: [Not documented]
  • queryLogs(after: String, entityId: [EntityId!], first: Int, input: LogInput): LogConnection
  • # Query Log Schema. Returns list of fields and their metadata.
  • #
  • # **NOTE:** This API/functionality is in Alpha, This functionality can be unstable
  • # and schema elements may change over future iterations.
  • #
  • # Arguments
  • # after: Return records after the given cursor, as per GraphQL
  • # Relay spec
  • # before: Return records before the given cursor, as per GraphQL
  • # Relay spec
  • # entityId: Optionally filter by entityIds
  • # first: Return first N records in a paged response, as per
  • # GraphQL Relay spec
  • # namespace: namespace from which schema needs to be returned
  • queryLogsSchema(
  • after: String,
  • before: String,
  • entityId: [EntityId],
  • first: Int,
  • namespace: String!
  • ): LogSchemaConnection
  • # Get list of Observability namespaces
  • #
  • # Namespace should be used when querying for observability data
  • #
  • # **NOTE:** This API/functionality is in Alpha, This functionality can be unstable
  • # and schema elements may change over future iterations.
  • queryObservabilityNamespaces: [ObservabilityNamespace!]
  • }

link Require by