OBJECT
Observation
A point-in-time observation about the state of something in the system which may interest our insight service
link GraphQL Schema definition
- type Observation implements Node {
- # Contains native payload of observation. TODO alternative is to define sub-types
- # with additional fields
- JSON :
- # Time at which the observation generated at source. Expressed in UTC ISO-8601
- # format
- DateTime! :
- String :
- # Optional hyperlink of observation source
- HyperLink!] : [
- ID! :
- # impacts of observation w.r.t. one or more dimensions/measures
- InsightImpact]! : [
- # Inferred tags
- Tag] : [
- # Details of insights related to observation
- #
- # Arguments
- # filter: Optional additional field filters.
- # sort: Sort order for results in insightConnection
- QueryFilter, : [QuerySort!]): InsightConnection ( :
- # Transient observations are expected to have a follow-up observation indicating
- # the end of a insight sequence
- Boolean :
- # Time at which the observation is updated at source. Expressed in UTC ISO-8601
- # format
- DateTime! :
- # Alert name or definition
- String :
- # Ensemble generated id unique for the Observation. UUID Primary key format
- # agnostic to the cloud/source provider and will be used for Insight to
- # Observation mapping
- ID! :
- # status of observation based on point-product's observation status e.g. NEW
- ObservationStatus! :
- # Time at which the observation was received. Expressed in UTC ISO-8601 format
- DateTime! :
- # type of observation, which is defined by observation providers. e.g.
- # VROPS-Alert:Infrastructure
- String! :
- # Entities from which the observation will be originated
- Entity!] : [
- # entityIds from which the observation will be originated
- EntityId!] @deprecated( reason: "Refer to originatingEntities field!" ) : [
- # originating observation id which can be from point-product. e.g.
- # vrn:
/provider:VROPS/Alert: - String! :
- # originating per-product entityIds
- EntityId!] : [
- ObservabilityAlert :
- # Severity of an observation from source
- InsightSeverity :
- # Source of the observation
- ObservationSource! :
- # suggested trigger type of insight that should be created from this observation,
- # if known e.g. ANOMALOUS
- InsightTriggerType :
- # Custom tags
- Tag!] : [
- }