mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
[ES] cluster_build_flavor
may be undefined (#171112)
This commit is contained in:
parent
4c3b56f70a
commit
da3833e513
2 changed files with 5 additions and 2 deletions
|
@ -15,7 +15,7 @@ export interface ClusterInfo {
|
|||
cluster_name: string;
|
||||
cluster_uuid: string;
|
||||
cluster_version: string;
|
||||
cluster_build_flavor: string;
|
||||
cluster_build_flavor?: string;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -27,7 +27,10 @@ export function registerAnalyticsContextProvider(
|
|||
cluster_name: { type: 'keyword', _meta: { description: 'The Cluster Name' } },
|
||||
cluster_uuid: { type: 'keyword', _meta: { description: 'The Cluster UUID' } },
|
||||
cluster_version: { type: 'keyword', _meta: { description: 'The Cluster version' } },
|
||||
cluster_build_flavor: { type: 'keyword', _meta: { description: 'The Cluster build flavor' } },
|
||||
cluster_build_flavor: {
|
||||
type: 'keyword',
|
||||
_meta: { description: 'The Cluster build flavor', optional: true },
|
||||
},
|
||||
},
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue