mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
16 lines
513 B
JavaScript
16 lines
513 B
JavaScript
/*
|
|
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
|
* or more contributor license agreements. Licensed under the Elastic License;
|
|
* you may not use this file except in compliance with the Elastic License.
|
|
*/
|
|
|
|
export function xpackUsage(client) {
|
|
/*
|
|
* Get an object over the Usage API that as available/enabled data and some
|
|
* select metadata for each of the X-Pack UI plugins
|
|
*/
|
|
return client.transport.request({
|
|
method: 'GET',
|
|
path: '/_xpack/usage'
|
|
});
|
|
}
|