mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
Ensure we pass down the expiry_date for the license
This commit is contained in:
parent
f82b9717c0
commit
2562395a78
1 changed files with 4 additions and 2 deletions
|
@ -26,7 +26,8 @@ export function getClustersSummary(clusters, kibanaUuid) {
|
|||
const {
|
||||
status: licenseStatus,
|
||||
type: licenseType,
|
||||
expiry_date_in_millis: licenseExpiry
|
||||
expiry_date_in_millis: licenseExpiryInMs,
|
||||
expiry_date: licenseExpiry
|
||||
} = license;
|
||||
|
||||
const indices = pick(clusterStats.indices, ['count', 'docs', 'shards', 'store']);
|
||||
|
@ -53,7 +54,8 @@ export function getClustersSummary(clusters, kibanaUuid) {
|
|||
license: {
|
||||
status: licenseStatus,
|
||||
type: licenseType,
|
||||
expiry_date_in_millis: licenseExpiry
|
||||
expiry_date_in_millis: licenseExpiryInMs,
|
||||
expiry_date: licenseExpiry
|
||||
},
|
||||
elasticsearch: {
|
||||
cluster_stats: {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue