mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
79 lines
2.4 KiB
TypeScript
79 lines
2.4 KiB
TypeScript
import { css } from '@emotion/css';
|
|
import {
|
|
DataSourceJsonData,
|
|
DataSourcePluginOptionsEditorProps,
|
|
GrafanaTheme,
|
|
updateDatasourcePluginJsonDataOption,
|
|
} from '@grafana/data';
|
|
import { DataSourcePicker } from '@grafana/runtime';
|
|
import { InlineField, InlineFieldRow, TagsInput, useStyles } from '@grafana/ui';
|
|
import React from 'react';
|
|
|
|
export interface TraceToLogsOptions {
|
|
datasourceUid?: string;
|
|
tags?: string[];
|
|
}
|
|
|
|
export interface TraceToLogsData extends DataSourceJsonData {
|
|
tracesToLogs?: TraceToLogsOptions;
|
|
}
|
|
|
|
interface Props extends DataSourcePluginOptionsEditorProps<TraceToLogsData> {}
|
|
|
|
export function TraceToLogsSettings({ options, onOptionsChange }: Props) {
|
|
const styles = useStyles(getStyles);
|
|
|
|
return (
|
|
<div className={css({ width: '100%' })}>
|
|
<h3 className="page-heading">Trace to logs</h3>
|
|
|
|
<div className={styles.infoText}>
|
|
Trace to logs let's you navigate from a trace span to the selected data source's log.
|
|
</div>
|
|
|
|
<InlineFieldRow>
|
|
<InlineField tooltip="The data source the trace is going to navigate to" label="Data source" labelWidth={26}>
|
|
<DataSourcePicker
|
|
pluginId="loki"
|
|
current={options.jsonData.tracesToLogs?.datasourceUid}
|
|
noDefault={true}
|
|
width={40}
|
|
onChange={(ds) =>
|
|
updateDatasourcePluginJsonDataOption({ onOptionsChange, options }, 'tracesToLogs', {
|
|
datasourceUid: ds.uid,
|
|
tags: options.jsonData.tracesToLogs?.tags,
|
|
})
|
|
}
|
|
/>
|
|
</InlineField>
|
|
</InlineFieldRow>
|
|
|
|
<InlineFieldRow>
|
|
<InlineField
|
|
tooltip="Tags that will be used in the Loki query. Default tags: 'cluster', 'hostname', 'namespace', 'pod'"
|
|
label="Tags"
|
|
labelWidth={26}
|
|
>
|
|
<TagsInput
|
|
tags={options.jsonData.tracesToLogs?.tags}
|
|
width={40}
|
|
onChange={(tags) =>
|
|
updateDatasourcePluginJsonDataOption({ onOptionsChange, options }, 'tracesToLogs', {
|
|
datasourceUid: options.jsonData.tracesToLogs?.datasourceUid,
|
|
tags: tags,
|
|
})
|
|
}
|
|
/>
|
|
</InlineField>
|
|
</InlineFieldRow>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
const getStyles = (theme: GrafanaTheme) => ({
|
|
infoText: css`
|
|
padding-bottom: ${theme.spacing.md};
|
|
color: ${theme.colors.textSemiWeak};
|
|
`,
|
|
});
|