Skip to content

Commit

Permalink
Add Redis Enterprise to home tutorial
Browse files Browse the repository at this point in the history
  • Loading branch information
Marcin Tojek committed Mar 3, 2020
1 parent 4ef594c commit f3f18bd
Show file tree
Hide file tree
Showing 3 changed files with 74 additions and 0 deletions.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
72 changes: 72 additions & 0 deletions src/plugins/home/server/tutorials/redisenterprise_metrics/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
/*
* Licensed to Elasticsearch B.V. under one or more contributor
* license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright
* ownership. Elasticsearch B.V. licenses this file to you under
* the Apache License, Version 2.0 (the "License"); you may
* not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/

import { i18n } from '@kbn/i18n';
import { TutorialsCategory } from '../../services/tutorials';
import {
onPremInstructions,
cloudInstructions,
onPremCloudInstructions,
} from '../instructions/metricbeat_instructions';
import {
TutorialContext,
TutorialSchema,
} from '../../services/tutorials/lib/tutorials_registry_types';

export function redisenterpriseMetricsSpecProvider(context: TutorialContext): TutorialSchema {
const moduleName = 'redisenterprise';
return {
id: 'redisenterpriseMetrics',
name: i18n.translate('home.tutorials.redisenterpriseMetrics.nameTitle', {
defaultMessage: 'Redis Enterprise metrics',
}),
category: TutorialsCategory.METRICS,
shortDescription: i18n.translate('home.tutorials.redisenterpriseMetrics.shortDescription', {
defaultMessage: 'Fetch monitoring metrics from Redis Enterprise Server.',
}),
longDescription: i18n.translate('home.tutorials.redisenterpriseMetrics.longDescription', {
defaultMessage:
'The `redisenterprise` Metricbeat module fetches monitoring metrics from Redis Enterprise Server \
[Learn more]({learnMoreLink}).',
values: {
learnMoreLink: '{config.docs.beats.metricbeat}/metricbeat-module-redisenterprise.html',
},
}),
euiIconType: 'logoRedis',
isBeta: true,
artifacts: {
application: {
label: i18n.translate('home.tutorials.redisenterpriseMetrics.artifacts.application.label', {
defaultMessage: 'Discover',
}),
path: '/app/kibana#/discover',
},
dashboards: [],
exportedFields: {
documentationUrl: '{config.docs.beats.metricbeat}/exported-fields-redisenterprise.html',
},
},
completionTimeMinutes: 10,
previewImagePath:
'/plugins/kibana/home/tutorial_resources/redisenterprise_metrics/screenshot.png',
onPrem: onPremInstructions(moduleName, context),
elasticCloud: cloudInstructions(moduleName),
onPremElasticCloud: onPremCloudInstructions(moduleName),
};
}
2 changes: 2 additions & 0 deletions src/plugins/home/server/tutorials/register.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ import { stanMetricsSpecProvider } from './stan_metrics';
import { envoyproxyMetricsSpecProvider } from './envoyproxy_metrics';
import { ibmmqMetricsSpecProvider } from './ibmmq_metrics';
import { statsdMetricsSpecProvider } from './statsd_metrics';
import { redisenterpriseMetricsSpecProvider } from './redisenterprise_metrics';

export const builtInTutorials = [
systemLogsSpecProvider,
Expand Down Expand Up @@ -158,4 +159,5 @@ export const builtInTutorials = [
stanMetricsSpecProvider,
envoyproxyMetricsSpecProvider,
statsdMetricsSpecProvider,
redisenterpriseMetricsSpecProvider,
];

0 comments on commit f3f18bd

Please sign in to comment.