elastic / kibana

Your window into the Elastic Stack
https://www.elastic.co/products/kibana
Other
19.48k stars 8.04k forks source link

[Obs] Annotations requirements + SLO POC #182429

Open jasonrhodes opened 2 months ago

jasonrhodes commented 2 months ago

We want to allow users to store annotations in our system so we can display those on charts across observability. Annotations are already used in some places in APM, tied to services. We want to expand this to other areas of observability, starting with SLOs.

Acceptance criteria

This ticket should be considered "done" when we have:

Notes

# Annotation type, taken from link above
interface Annotation {
  annotation: {
    type: string;
  };
  tags?: string[];
  message: string;
  service?: {
    name?: string;
    environment?: string;
    version?: string;
  };
  event: {
    created: string;
  };
  '@timestamp': string;
}

Open questions

elasticmachine commented 2 months ago

Pinging @elastic/obs-ux-management-team (Team:obs-ux-management)