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/plugins/datasource/grafana-testdata-datasource/TestInfoTab.tsx

34 lines
840 B

// Libraries
import React, { PureComponent } from 'react';
import { PluginConfigPageProps, DataSourcePluginMeta, DataSourceJsonData } from '@grafana/data';
import { LinkButton } from '@grafana/ui';
// Types
interface Props extends PluginConfigPageProps<DataSourcePluginMeta<DataSourceJsonData>> {}
export class TestInfoTab extends PureComponent<Props> {
constructor(props: Props) {
super(props);
}
render() {
return (
<div>
See github for more information about setting up a reproducible test environment.
<br />
<br />
<LinkButton
variant="secondary"
href="https://github.com/grafana/grafana/tree/main/devenv"
target="_blank"
rel="noopener noreferrer"
>
GitHub
</LinkButton>
<br />
</div>
);
}
}