mirror of
https://github.com/elastic/kibana.git
synced 2025-04-25 02:09:32 -04:00
* [ML] Changing all calls to ML endpoints to use internal user * updating alerting * updating documentation * [ML] Changing all calls to ML endpoints to use internal user * updating alerting * updating documentation * fixing missed types * adding authorization headers to endpoint calls * correcting has privileges call * updating security tests * odd eslint error * adding auth header to module setup * fixing missing auth argument * fixing delete DFA job permission checks * removing debug test tag * removing additional ml privilege checks * adding authorization header to _evaluate * updating alerting cluster client name * code clean up * changing authorizationHeader name * updating alterting documentation * fixing secondary credentials * adding management links * updating SIEM telemetry * fixing merge conflicts * granting access to index patterns Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
254 lines
6.9 KiB
TypeScript
254 lines
6.9 KiB
TypeScript
/*
|
|
* 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.
|
|
*/
|
|
|
|
import { RequestHandlerContext } from 'kibana/server';
|
|
import { wrapError } from '../client/error_wrapper';
|
|
import { DataVisualizer } from '../models/data_visualizer';
|
|
import { Field, HistogramField } from '../models/data_visualizer/data_visualizer';
|
|
import {
|
|
dataVisualizerFieldHistogramsSchema,
|
|
dataVisualizerFieldStatsSchema,
|
|
dataVisualizerOverallStatsSchema,
|
|
indexPatternTitleSchema,
|
|
} from './schemas/data_visualizer_schema';
|
|
import { RouteInitialization } from '../types';
|
|
|
|
function getOverallStats(
|
|
context: RequestHandlerContext,
|
|
indexPatternTitle: string,
|
|
query: object,
|
|
aggregatableFields: string[],
|
|
nonAggregatableFields: string[],
|
|
samplerShardSize: number,
|
|
timeFieldName: string,
|
|
earliestMs: number,
|
|
latestMs: number
|
|
) {
|
|
const dv = new DataVisualizer(context.ml!.mlClient);
|
|
return dv.getOverallStats(
|
|
indexPatternTitle,
|
|
query,
|
|
aggregatableFields,
|
|
nonAggregatableFields,
|
|
samplerShardSize,
|
|
timeFieldName,
|
|
earliestMs,
|
|
latestMs
|
|
);
|
|
}
|
|
|
|
function getStatsForFields(
|
|
context: RequestHandlerContext,
|
|
indexPatternTitle: string,
|
|
query: any,
|
|
fields: Field[],
|
|
samplerShardSize: number,
|
|
timeFieldName: string,
|
|
earliestMs: number,
|
|
latestMs: number,
|
|
interval: number,
|
|
maxExamples: number
|
|
) {
|
|
const dv = new DataVisualizer(context.ml!.mlClient);
|
|
return dv.getStatsForFields(
|
|
indexPatternTitle,
|
|
query,
|
|
fields,
|
|
samplerShardSize,
|
|
timeFieldName,
|
|
earliestMs,
|
|
latestMs,
|
|
interval,
|
|
maxExamples
|
|
);
|
|
}
|
|
|
|
function getHistogramsForFields(
|
|
context: RequestHandlerContext,
|
|
indexPatternTitle: string,
|
|
query: any,
|
|
fields: HistogramField[],
|
|
samplerShardSize: number
|
|
) {
|
|
const dv = new DataVisualizer(context.ml!.mlClient);
|
|
return dv.getHistogramsForFields(indexPatternTitle, query, fields, samplerShardSize);
|
|
}
|
|
|
|
/**
|
|
* Routes for the index data visualizer.
|
|
*/
|
|
export function dataVisualizerRoutes({ router, mlLicense }: RouteInitialization) {
|
|
/**
|
|
* @apiGroup DataVisualizer
|
|
*
|
|
* @api {post} /api/ml/data_visualizer/get_field_stats/:indexPatternTitle Get histograms for fields
|
|
* @apiName GetHistogramsForFields
|
|
* @apiDescription Returns the histograms on a list fields in the specified index pattern.
|
|
*
|
|
* @apiSchema (params) indexPatternTitleSchema
|
|
* @apiSchema (body) dataVisualizerFieldHistogramsSchema
|
|
*
|
|
* @apiSuccess {Object} fieldName histograms by field, keyed on the name of the field.
|
|
*/
|
|
router.post(
|
|
{
|
|
path: '/api/ml/data_visualizer/get_field_histograms/{indexPatternTitle}',
|
|
validate: {
|
|
params: indexPatternTitleSchema,
|
|
body: dataVisualizerFieldHistogramsSchema,
|
|
},
|
|
options: {
|
|
tags: ['access:ml:canAccessML'],
|
|
},
|
|
},
|
|
mlLicense.basicLicenseAPIGuard(async (context, request, response) => {
|
|
try {
|
|
const {
|
|
params: { indexPatternTitle },
|
|
body: { query, fields, samplerShardSize },
|
|
} = request;
|
|
|
|
const results = await getHistogramsForFields(
|
|
context,
|
|
indexPatternTitle,
|
|
query,
|
|
fields,
|
|
samplerShardSize
|
|
);
|
|
|
|
return response.ok({
|
|
body: results,
|
|
});
|
|
} catch (e) {
|
|
return response.customError(wrapError(e));
|
|
}
|
|
})
|
|
);
|
|
|
|
/**
|
|
* @apiGroup DataVisualizer
|
|
*
|
|
* @api {post} /api/ml/data_visualizer/get_field_stats/:indexPatternTitle Get stats for fields
|
|
* @apiName GetStatsForFields
|
|
* @apiDescription Returns the stats on individual fields in the specified index pattern.
|
|
*
|
|
* @apiSchema (params) indexPatternTitleSchema
|
|
* @apiSchema (body) dataVisualizerFieldStatsSchema
|
|
*
|
|
* @apiSuccess {Object} fieldName stats by field, keyed on the name of the field.
|
|
*/
|
|
router.post(
|
|
{
|
|
path: '/api/ml/data_visualizer/get_field_stats/{indexPatternTitle}',
|
|
validate: {
|
|
params: indexPatternTitleSchema,
|
|
body: dataVisualizerFieldStatsSchema,
|
|
},
|
|
options: {
|
|
tags: ['access:ml:canAccessML'],
|
|
},
|
|
},
|
|
mlLicense.basicLicenseAPIGuard(async (context, request, response) => {
|
|
try {
|
|
const {
|
|
params: { indexPatternTitle },
|
|
body: {
|
|
query,
|
|
fields,
|
|
samplerShardSize,
|
|
timeFieldName,
|
|
earliest,
|
|
latest,
|
|
interval,
|
|
maxExamples,
|
|
},
|
|
} = request;
|
|
|
|
const results = await getStatsForFields(
|
|
context,
|
|
indexPatternTitle,
|
|
query,
|
|
fields,
|
|
samplerShardSize,
|
|
timeFieldName,
|
|
earliest,
|
|
latest,
|
|
interval,
|
|
maxExamples
|
|
);
|
|
|
|
return response.ok({
|
|
body: results,
|
|
});
|
|
} catch (e) {
|
|
return response.customError(wrapError(e));
|
|
}
|
|
})
|
|
);
|
|
|
|
/**
|
|
* @apiGroup DataVisualizer
|
|
*
|
|
* @api {post} /api/ml/data_visualizer/get_overall_stats/:indexPatternTitle Get overall stats
|
|
* @apiName GetOverallStats
|
|
* @apiDescription Returns the top level overall stats for the specified index pattern.
|
|
*
|
|
* @apiSchema (params) indexPatternTitleSchema
|
|
* @apiSchema (body) dataVisualizerOverallStatsSchema
|
|
*
|
|
* @apiSuccess {number} totalCount total count of documents.
|
|
* @apiSuccess {Object} aggregatableExistsFields stats on aggregatable fields that exist in documents.
|
|
* @apiSuccess {Object} aggregatableNotExistsFields stats on aggregatable fields that do not exist in documents.
|
|
* @apiSuccess {Object} nonAggregatableExistsFields stats on non-aggregatable fields that exist in documents.
|
|
* @apiSuccess {Object} nonAggregatableNotExistsFields stats on non-aggregatable fields that do not exist in documents.
|
|
*/
|
|
router.post(
|
|
{
|
|
path: '/api/ml/data_visualizer/get_overall_stats/{indexPatternTitle}',
|
|
validate: {
|
|
params: indexPatternTitleSchema,
|
|
body: dataVisualizerOverallStatsSchema,
|
|
},
|
|
options: {
|
|
tags: ['access:ml:canAccessML'],
|
|
},
|
|
},
|
|
mlLicense.basicLicenseAPIGuard(async (context, request, response) => {
|
|
try {
|
|
const {
|
|
params: { indexPatternTitle },
|
|
body: {
|
|
query,
|
|
aggregatableFields,
|
|
nonAggregatableFields,
|
|
samplerShardSize,
|
|
timeFieldName,
|
|
earliest,
|
|
latest,
|
|
},
|
|
} = request;
|
|
|
|
const results = await getOverallStats(
|
|
context,
|
|
indexPatternTitle,
|
|
query,
|
|
aggregatableFields,
|
|
nonAggregatableFields,
|
|
samplerShardSize,
|
|
timeFieldName,
|
|
earliest,
|
|
latest
|
|
);
|
|
|
|
return response.ok({
|
|
body: results,
|
|
});
|
|
} catch (e) {
|
|
return response.customError(wrapError(e));
|
|
}
|
|
})
|
|
);
|
|
}
|