The open and composable observability and data visualization platform. Visualize metrics, logs, and traces from multiple sources like Prometheus, Loki, Elasticsearch, InfluxDB, Postgres and many more.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
grafana/public/app/features/correlations/CorrelationsFeatureToggle.tsx

24 lines
635 B

import React from 'react';
import { Page } from 'app/core/components/Page/Page';
import { Trans } from 'app/core/internationalization';
export default function FeatureTogglePage() {
return (
<Page navId="correlations">
<Page.Contents>
<h1>
<Trans i18nKey="correlations.page-heading">Correlations are disabled</Trans>
</h1>
<Trans i18nKey="correlations.page-content">To enable Correlations, add it in the Grafana config:</Trans>
<div>
<pre>
{`[feature_toggles]
correlations = true
`}
</pre>
</div>
</Page.Contents>
</Page>
);
}