Remove Stats API (#13896)

This commit is contained in:
Tim Sullivan 2017-09-12 13:47:13 -07:00 committed by GitHub
parent 9587611ca8
commit a8171c2d4a

View file

@ -7,6 +7,9 @@ export function statsMixin(kbnServer, server) {
* @name server.getKibanaStats
* @param {Object} options
* @property {Function} options.callCluster method for calling the elasticsearch cluster
*
* NOTE: this API will be moved out to an external plugin in 6.1, and likely
* have breaking changes in the format of the response data
*/
server.decorate('server', 'getKibanaStats', async ({ callCluster }) => {
const savedObjectsClient = server.savedObjectsClientFactory({ callCluster });
@ -15,17 +18,4 @@ export function statsMixin(kbnServer, server) {
savedObjectsClient
);
});
server.route({
method: 'GET',
path: '/api/stats',
handler: function (request, reply) {
const stats = getStats(
server.config().get('kibana.index'),
request.getSavedObjectsClient()
);
return reply(stats);
}
});
}