kibana/x-pack/plugins/apm/common/annotations.ts

18 lines
419 B
TypeScript
Raw Normal View History

/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License
* 2.0; you may not use this file except in compliance with the Elastic License
* 2.0.
*/
export enum AnnotationType {
2020-05-22 09:08:58 +02:00
VERSION = 'version',
}
export interface Annotation {
type: AnnotationType;
id: string;
2020-05-05 19:49:39 +02:00
'@timestamp': number;
text: string;
}