mirror of
https://github.com/grafana/grafana.git
synced 2025-02-15 10:03:33 -06:00
* Config and doc upgrades * Update docs/sources/datasources/tempo/_index.md Co-authored-by: Kim Nylander <104772500+knylander-grafana@users.noreply.github.com> * Update docs/sources/datasources/tempo/_index.md Co-authored-by: Kim Nylander <104772500+knylander-grafana@users.noreply.github.com> * Update docs/sources/datasources/tempo/_index.md Co-authored-by: Kim Nylander <104772500+knylander-grafana@users.noreply.github.com> * Update docs/sources/datasources/tempo/_index.md Co-authored-by: Kim Nylander <104772500+knylander-grafana@users.noreply.github.com> * Update docs/sources/datasources/tempo/_index.md Co-authored-by: Kim Nylander <104772500+knylander-grafana@users.noreply.github.com> * Update docs/sources/datasources/tempo/_index.md Co-authored-by: Kim Nylander <104772500+knylander-grafana@users.noreply.github.com> * Update tags text * Use service graph as a proper noun * Update docs/sources/datasources/tempo/_index.md Co-authored-by: Kim Nylander <104772500+knylander-grafana@users.noreply.github.com> * Update docs/sources/datasources/tempo/_index.md Co-authored-by: Kim Nylander <104772500+knylander-grafana@users.noreply.github.com> * Update docs/sources/datasources/tempo/_index.md Co-authored-by: Kim Nylander <104772500+knylander-grafana@users.noreply.github.com> * Update docs/sources/datasources/tempo/_index.md Co-authored-by: Kim Nylander <104772500+knylander-grafana@users.noreply.github.com> * Yarn prettier --------- Co-authored-by: Kim Nylander <104772500+knylander-grafana@users.noreply.github.com>
71 lines
2.1 KiB
TypeScript
71 lines
2.1 KiB
TypeScript
import { css } from '@emotion/css';
|
|
import React from 'react';
|
|
|
|
import { DataSourcePluginOptionsEditorProps, GrafanaTheme2, updateDatasourcePluginJsonDataOption } from '@grafana/data';
|
|
import { DataSourcePicker } from '@grafana/runtime';
|
|
import { Button, InlineField, InlineFieldRow, useStyles2 } from '@grafana/ui';
|
|
|
|
import { TempoJsonData } from '../types';
|
|
|
|
interface Props extends DataSourcePluginOptionsEditorProps<TempoJsonData> {}
|
|
|
|
export function ServiceGraphSettings({ options, onOptionsChange }: Props) {
|
|
const styles = useStyles2(getStyles);
|
|
|
|
return (
|
|
<div className={css({ width: '100%' })}>
|
|
<h3 className="page-heading">Service graph</h3>
|
|
|
|
<div className={styles.infoText}>Select a Prometheus data source that contains the service graph data.</div>
|
|
|
|
<InlineFieldRow className={styles.row}>
|
|
<InlineField
|
|
tooltip="The Prometheus data source with the service graph data"
|
|
label="Data source"
|
|
labelWidth={26}
|
|
>
|
|
<DataSourcePicker
|
|
inputId="service-graph-data-source-picker"
|
|
pluginId="prometheus"
|
|
current={options.jsonData.serviceMap?.datasourceUid}
|
|
noDefault={true}
|
|
width={40}
|
|
onChange={(ds) =>
|
|
updateDatasourcePluginJsonDataOption({ onOptionsChange, options }, 'serviceMap', {
|
|
datasourceUid: ds.uid,
|
|
})
|
|
}
|
|
/>
|
|
</InlineField>
|
|
{options.jsonData.serviceMap?.datasourceUid ? (
|
|
<Button
|
|
type={'button'}
|
|
variant={'secondary'}
|
|
size={'sm'}
|
|
fill={'text'}
|
|
onClick={() => {
|
|
updateDatasourcePluginJsonDataOption({ onOptionsChange, options }, 'serviceMap', {
|
|
datasourceUid: undefined,
|
|
});
|
|
}}
|
|
>
|
|
Clear
|
|
</Button>
|
|
) : null}
|
|
</InlineFieldRow>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
const getStyles = (theme: GrafanaTheme2) => ({
|
|
infoText: css`
|
|
label: infoText;
|
|
padding-bottom: ${theme.spacing(2)};
|
|
color: ${theme.colors.text.secondary};
|
|
`,
|
|
row: css`
|
|
label: row;
|
|
align-items: baseline;
|
|
`,
|
|
});
|