/* * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one * or more contributor license agreements. Licensed under the Elastic License * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ import React from 'react'; import { EuiText, EuiPageBody, EuiPageContent, EuiPageContentBody, EuiPageContentHeader, EuiPageContentHeaderSection, EuiPageHeader, EuiPageHeaderSection, EuiTitle, EuiCallOut, EuiSpacer, } from '@elastic/eui'; import { CreateAlert } from './create_alert'; import { AlertingExampleComponentParams } from '../application'; export const DocumentationPage = ( deps: Pick ) => (

Welcome to the Alerting plugin example

Documentation links

Plugin Structure

This example solution has both `server` and a `public` plugins. The `server` handles registration of example the RuleTypes, while the `public` handles creation of, and navigation for, these rule types.

If you see a message about needing to enable the Transport Layer Security, start ES with{' '} yarn es snapshot --ssl --license trial and Kibana with{' '} yarn start --run-examples --ssl. If you running chrome on a mac, you may need to type in thisisunsafe if you see the Certificate invalid screen with no way to ‘proceed anyway’.
);