OBJECT
Insight
link GraphQL Schema definition
- type Insight implements Node {
- # User insight assigned to
- User :
- # Details of correlation
- InsightCorrelationInfo! :
- # localized description of insight
- LocalizedString :
- # Time at which the insight is closed or not valid. Expressed in UTC ISO-8601
- # format
- DateTime :
- # opaque unique id of insight
- ID! :
- # impacts of insight w.r.t. one or more dimensions/measures and on other entities
- InsightImpact!]! : [
- # transient insights are expected to eventually have an endTime, non-transient are
- # point-in-time
- Boolean! :
- # Time at which the insight is updated based on incoming observation. Expressed in
- # UTC ISO-8601 format
- DateTime! :
- # Details of observations related to insight
- #
- # Arguments
- # after: Return records after the given cursor, as per GraphQL
- # Relay spec
- # filter: Optional additional field filters.
- # first: Return first N records in a paged response, as per
- # GraphQL Relay spec
- # isFaultFirst: Observations with probable cause first
- # mostRecentFirst: Most recent first
- (
- String, :
- QueryFilter, :
- Int, :
- Boolean, :
- Boolean :
- ): ObservationConnection
- # Entities from which the observations for a given insight are originated
- Entity!] : [
- # originating ensemble entity, it can be null for insights
- Entity @deprecated( reason: "replaced with originatingEntities" ) :
- # Insight Priority
- InsightPriority :
- # Remediation's for this insight
- InsightRemediation!] : [
- # Insight severity
- InsightSeverity :
- # Sources of the observations for a given insight
- ObservationSource!] : [
- # Time at which the insight is created. Expressed in UTC ISO-8601 format
- DateTime! :
- # status of insight e.g. NEW
- InsightStatus :
- # Custom tags
- Tag] : [
- # localized insight summary
- LocalizedString! :
- # Total observation count for a given insight
- Long! :
- # suggested trigger type of an insight, if known e.g. ANOMALOUS
- InsightTriggerType :
- # type of insight as defined in insight template
- String! :
- }