Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Monitoring] "Internal Monitoring" deprecation warning #72020

Merged
merged 20 commits into from
Jul 27, 2020
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
978c636
Internal Monitoring deprecation
igoristic Jul 16, 2020
df51458
Fixed type
igoristic Jul 16, 2020
6750d52
Added if cloud logic
igoristic Jul 16, 2020
654e485
Merge branch 'master' of https://github.com/elastic/kibana into inter…
igoristic Jul 16, 2020
6ef83f1
Fixed i18n test
igoristic Jul 16, 2020
8797eab
Merge branch 'master' of https://github.com/elastic/kibana into inter…
igoristic Jul 20, 2020
4582b2a
Merge branch 'master' of https://github.com/elastic/kibana into inter…
igoristic Jul 20, 2020
cbb0fb4
Addressed code review feedback
igoristic Jul 20, 2020
d6b31c2
Merge branch 'master' of https://github.com/elastic/kibana into inter…
igoristic Jul 21, 2020
b9e7db8
Fixed types
igoristic Jul 21, 2020
28f4093
Merge branch 'master' of https://github.com/elastic/kibana into inter…
igoristic Jul 21, 2020
57cbbfc
Merge branch 'master' of https://github.com/elastic/kibana into inter…
igoristic Jul 21, 2020
a3171f9
Changed query
igoristic Jul 21, 2020
2c45f1c
Merge branch 'master' into internal-monitoring-deprecation
elasticmachine Jul 21, 2020
60daec3
Merge branch 'master' into internal-monitoring-deprecation
elasticmachine Jul 22, 2020
ddbdad0
Merge branch 'master' into internal-monitoring-deprecation
elasticmachine Jul 22, 2020
2216464
Added delay to fix a test
igoristic Jul 23, 2020
24f8817
Merge branch 'master' of https://github.com/elastic/kibana into inter…
igoristic Jul 27, 2020
c44908f
Fixed tests
igoristic Jul 27, 2020
9c7d7b7
Fixed text
igoristic Jul 27, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ import { toMountPoint } from '../../../../../src/plugins/kibana_react/public';
import { isInSetupMode, toggleSetupMode } from './setup_mode';

export interface MonitoringIndicesTypes {
legacyIndices: boolean;
metricbeatIndices: boolean;
legacyIndices: number;
metricbeatIndices: number;
}

const enterSetupModeLabel = () =>
Expand All @@ -40,7 +40,7 @@ const showIfLegacyOnlyIndices = () => {
<div>
<p>
{i18n.translate('xpack.monitoring.internalMonitoringToast.description', {
defaultMessage: `It appears you are using "Internal Collection" for Stack Monitoring.
defaultMessage: `It appears you are using "Legacy Collection" for Stack Monitoring.
This method of monitoring will no longer be supported in the next major release (8.0.0).
Please follow the steps in setup mode to start monitoring with Metricbeat.`,
})}
Expand Down Expand Up @@ -73,14 +73,14 @@ const showIfLegacyAndMetricbeatIndices = () => {
title: toMountPoint(
<FormattedMessage
id="xpack.monitoring.internalAndMetricbeatMonitoringToast.title"
defaultMessage="Partial Internal Monitoring Detected"
defaultMessage="Partial Legacy Monitoring Detected"
/>
),
text: toMountPoint(
<div>
<p>
{i18n.translate('xpack.monitoring.internalAndMetricbeatMonitoringToast.description', {
defaultMessage: `It appears you are using both Metricbeat and "Internal Collection" for Stack Monitoring.
defaultMessage: `It appears you are using both Metricbeat and "Legacy Collection" for Stack Monitoring.
only Metricbeat type monitoring will be supported in the next major release (8.0.0).
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What if we said: Monitoring will require Metricbeat collection in the next major version (8.0.0).

or maybe @gchaps can help here

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

How about:

In 8.0.0, you must use Metricbeat to collect monitoring data.

Please follow the steps in setup mode to migrate the rest of the monitoring to Metricbeat.`,
})}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,46 +4,97 @@
* you may not use this file except in compliance with the Elastic License.
*/

import { CatIndicesParams } from 'elasticsearch';
// @ts-ignore
import { RequestHandlerContext } from 'kibana/server';
import { getIndexPatterns } from '../../../../../lib/cluster/get_index_patterns';

// @ts-ignore
import { handleError } from '../../../../../lib/errors';
import { RouteDependencies } from '../../../../../types';

export function internalMonitoringCheckRoute(_server: unknown, npRoute: RouteDependencies) {
const queryBody = {
size: 15,
igoristic marked this conversation as resolved.
Show resolved Hide resolved
query: {
bool: {
filter: [
{
range: {
timestamp: {
gte: 'now-15m',
igoristic marked this conversation as resolved.
Show resolved Hide resolved
lte: 'now',
},
},
},
],
},
},
sort: [
{
timestamp: {
order: 'desc',
},
},
],
_source: {
excludes: ['*'],
},
};

const checkLatestMonitoringIsLegacy = async (context: RequestHandlerContext, index: string) => {
const { client: esClient } = context.core.elasticsearch.legacy;
const result = await esClient.callAsCurrentUser('search', {
index,
body: queryBody,
});

const {
hits: { hits },
} = result;
const counts = {
legacyIndicesCount: 0,
mbIndicesCount: 0,
};

if (!hits?.length) {
return counts;
}

counts.mbIndicesCount = hits.filter(({ _index }: { _index: string }) =>
_index.includes('-mb-')
).length;

counts.legacyIndicesCount = hits.length - counts.mbIndicesCount;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These counts seem off to me.

I added this debug code:
console.log(hits.map((h) => h._index));

which results in:

[ '.monitoring-kibana-7-2020.07.21',
  '.monitoring-kibana-7-2020.07.21',
  '.monitoring-kibana-7-2020.07.21',
  '.monitoring-kibana-7-2020.07.21',
  '.monitoring-kibana-7-2020.07.21',
  '.monitoring-kibana-7-2020.07.21',
  '.monitoring-kibana-7-2020.07.21',
  '.monitoring-kibana-7-2020.07.21',
  '.monitoring-kibana-7-2020.07.21',
  '.monitoring-kibana-7-2020.07.21',
  '.monitoring-kibana-7-2020.07.21',
  '.monitoring-kibana-7-2020.07.21',
  '.monitoring-kibana-7-2020.07.21',
  '.monitoring-kibana-7-2020.07.21',
  '.monitoring-kibana-7-2020.07.21' ]

Maybe you can just do a query like:

POST .monitoring-es-*/_search
{
  "size": 0,
  "aggs": {
    "types": {
      "terms": {
        "field": "_index",
        "size": 10
      }
    }
  }
}


return counts;
};

export function internalMonitoringCheckRoute(server: unknown, npRoute: RouteDependencies) {
npRoute.router.get(
{
path: '/api/monitoring/v1/elasticsearch_settings/check/internal_monitoring',
options: { tags: ['access:monitoring'] },
validate: false,
},
async (context, _request, response) => {
try {
const catQuery: Pick<CatIndicesParams, 'format' | 'h'> & {
expand_wildcards: string;
index?: string;
} = {
format: 'json',
h: 'index',
expand_wildcards: 'hidden,all',
index: '.monitoring-*',
const typeCount = {
legacy_indices: 0,
mb_indices: 0,
};

const { client: esClient } = context.core.elasticsearch.legacy;
const monitoringIndices = await esClient.callAsInternalUser('transport.request', {
method: 'GET',
path: '/_cat/indices',
query: catQuery,
});
const { esIndexPattern, kbnIndexPattern, lsIndexPattern } = getIndexPatterns(server);
const indexCounts = await Promise.all([
checkLatestMonitoringIsLegacy(context, esIndexPattern),
checkLatestMonitoringIsLegacy(context, kbnIndexPattern),
checkLatestMonitoringIsLegacy(context, lsIndexPattern),
]);

const mbIndices = monitoringIndices.filter(({ index }: { index: string }) =>
index.includes('-mb-')
);
indexCounts.forEach((counts) => {
typeCount.legacy_indices += counts.legacyIndicesCount;
typeCount.mb_indices += counts.mbIndicesCount;
});

return response.ok({
body: {
legacy_indices: Boolean(monitoringIndices.length - mbIndices.length),
mb_indices: Boolean(mbIndices.length),
},
body: typeCount,
});
} catch (err) {
throw handleError(err);
Expand Down