INPUT_OBJECT

InsightCorrelationRuleInput

Input to update, insert or delete existing insight

link GraphQL Schema definition

  • input InsightCorrelationRuleInput {
  • # Status of Insight Correlation Rule
  • active: Boolean
  • # conditions to apply on observations
  • constraint: InsightRuleConstraintInput
  • # properties of observations to correlate
  • correlatedBy: [String!]
  • # FIXED or SLIDING window for correlation
  • correlationWindowType: InsightCorrelationRuleWindowType
  • # Description of the Insight Correlation Rule
  • description: String
  • # Display Name of the Insight Correlation rule
  • displayName: String
  • # opaque unique id of a rule
  • id: ID
  • impacts: [InsightRuleImpactInput!]
  • # Inisht type the correlation rule would create, optional field used only by
  • # CUREATE InsightCorrelationRuleType
  • insightType: String
  • # Name of the Insight Correlation rule
  • name: String
  • # Type of Correlation Rule, Default value is DEFAULT
  • ruleType: InsightCorrelationRuleType
  • # Active window of time in minutes for correlation
  • windowInMins: Int
  • }