Skip to content

Commit

Permalink
[APM] Fix schema issues (elastic#33833) (elastic#33999)
Browse files Browse the repository at this point in the history
  • Loading branch information
sorenlouv authored Mar 27, 2019
1 parent 1043144 commit cb3ce6f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions x-pack/plugins/apm/typings/es_schemas/raw/APMBaseDoc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,16 @@

// all documents types extend APMBaseDoc and inherit all properties
export interface APMBaseDoc {
'@metadata': unknown;
'@timestamp': string;
agent: {
name: string;
version: string;
};
observer: unknown;
timestamp: { us: number };
parent?: { id: string }; // parent ID is not available on root transactions
trace?: { id: string };
labels?: {
[key: string]: string | number | boolean;
};
[key: string]: unknown;
}

0 comments on commit cb3ce6f

Please sign in to comment.