Skip to content

Commit

Permalink
update telemetry schema
Browse files Browse the repository at this point in the history
  • Loading branch information
Bamieh committed Sep 11, 2021
1 parent a1c48fe commit c5ba74a
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import { MakeSchemaFrom } from 'src/plugins/usage_collection/server';
export interface EventLoopDelaysUsageReport {
daily: Array<{
processId: number;
instanceUuid: string;
lastUpdatedAt: string;
fromTimestamp: string;
min: number;
Expand All @@ -37,6 +38,12 @@ export const eventLoopDelaysUsageSchema: MakeSchemaFrom<EventLoopDelaysUsageRepo
description: 'The process id of the monitored kibana instance.',
},
},
instanceUuid: {
type: 'keyword',
_meta: {
description: 'The uuid of the kibana instance.',
},
},
fromTimestamp: {
type: 'date',
_meta: {
Expand Down
6 changes: 6 additions & 0 deletions src/plugins/telemetry/schema/oss_plugins.json
Original file line number Diff line number Diff line change
Expand Up @@ -6881,6 +6881,12 @@
"description": "The process id of the monitored kibana instance."
}
},
"instanceUuid": {
"type": "keyword",
"_meta": {
"description": "The uuid of the kibana instance."
}
},
"fromTimestamp": {
"type": "date",
"_meta": {
Expand Down

0 comments on commit c5ba74a

Please sign in to comment.