OBJECT

InsightRuleQuery

Insight Rule queries

link GraphQL Schema definition

  • type InsightRuleQuery {
  • # Query to fetch all rules of a given type for a specific Organization
  • #
  • # Arguments
  • # after: [Not documented]
  • # filter: [Not documented]
  • # first: [Not documented]
  • # sort: [Not documented]
  • queryInsightRules(
  • after: String,
  • filter: InsightRuleFilter!,
  • first: Int,
  • sort: [QuerySort!]
  • ): InsightRuleConnection
  • # Query to fetch specific Rules by Ids
  • #
  • # Arguments
  • # ruleIds: [Not documented]
  • queryInsightRulesByIds(ruleIds: [ID!]!): [InsightRule!]
  • # Query observation runbook
  • #
  • # Arguments
  • # foundation: Foundation Name
  • # runbookTemplateId: Runbook template id
  • # templateVariables: Optional list of key/value pairs for
  • # resolving runbook template variables
  • queryRunbook(
  • foundation: String!,
  • runbookTemplateId: String!,
  • templateVariables: [TagInput!]
  • ): ObservabilityRunbook!
  • }