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.
 
 
 
 
 
 

23 lines
648 B

import React from 'react';
import { GraphiteQueryEditorState } from '../state/store';
import { TagsSection } from './TagsSection';
import { MetricsSection } from './MetricsSection';
import { SegmentSection } from '@grafana/ui';
type Props = {
state: GraphiteQueryEditorState;
};
export function SeriesSection({ state }: Props) {
const sectionContent = state.queryModel?.seriesByTagUsed ? (
<TagsSection tags={state.queryModel?.tags} state={state} />
) : (
<MetricsSection segments={state.segments} state={state} />
);
return (
<SegmentSection label="Series" fill={true}>
{sectionContent}
</SegmentSection>
);
}