kibana/x-pack/server/lib/xpack_usage.js
2018-04-24 13:48:10 -07:00

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'
});
}