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/cloudwatch/components/shared/LogGroups/LogGroupsField.tsx

135 lines
4.5 KiB

import { css } from '@emotion/css';
import React, { useEffect, useState } from 'react';
import { config } from '@grafana/runtime';
import { CloudWatchDatasource } from '../../../datasource';
import { useAccountOptions } from '../../../hooks';
import { DescribeLogGroupsRequest } from '../../../resources/types';
import { LogGroup } from '../../../types';
import { isTemplateVariable } from '../../../utils/templateVariableUtils';
import { LegacyLogGroupSelection } from './LegacyLogGroupNamesSelection';
import { LogGroupsSelector } from './LogGroupsSelector';
import { SelectedLogGroups } from './SelectedLogGroups';
type Props = {
datasource: CloudWatchDatasource;
onChange: (logGroups: LogGroup[]) => void;
legacyLogGroupNames?: string[];
logGroups?: LogGroup[];
region: string;
maxNoOfVisibleLogGroups?: number;
newFormStylingEnabled?: boolean;
onBeforeOpen?: () => void;
};
const rowGap = css({
gap: 3,
});
const logGroupNewStyles = css({
display: 'flex',
flexDirection: 'column',
marginTop: 8,
'& div:first-child': {
marginBottom: 8,
},
});
// used in Config Editor and in Log Query Editor
export const LogGroupsField = ({
datasource,
onChange,
legacyLogGroupNames,
logGroups,
region,
maxNoOfVisibleLogGroups,
newFormStylingEnabled,
onBeforeOpen,
}: Props) => {
const accountState = useAccountOptions(datasource?.resources, region);
const [loadingLogGroupsStarted, setLoadingLogGroupsStarted] = useState(false);
useEffect(() => {
// If log group names are stored in the query model, make a new DescribeLogGroups request for each log group to load the arn. Then update the query model.
if (datasource && !loadingLogGroupsStarted && !logGroups?.length && legacyLogGroupNames?.length) {
setLoadingLogGroupsStarted(true);
// there's no need to migrate variables, they will be taken care of in the logs query runner
const variables = legacyLogGroupNames.filter((lgn) => isTemplateVariable(datasource.resources.templateSrv, lgn));
const legacyLogGroupNameValues = legacyLogGroupNames.filter(
(lgn) => !isTemplateVariable(datasource.resources.templateSrv, lgn)
);
Promise.all(
legacyLogGroupNameValues.map((lg) =>
datasource.resources.getLogGroups({ region: region, logGroupNamePrefix: lg })
)
)
.then((results) => {
const logGroups = results.flatMap((r) =>
r.map((lg) => ({
arn: lg.value.arn,
name: lg.value.name,
accountId: lg.accountId,
}))
);
onChange([...logGroups, ...variables.map((v) => ({ name: v, arn: v }))]);
})
.catch((err) => {
console.error(err);
});
}
}, [datasource, legacyLogGroupNames, logGroups, onChange, region, loadingLogGroupsStarted]);
return (
<div className={newFormStylingEnabled ? logGroupNewStyles : `gf-form gf-form--grow flex-grow-1 ${rowGap}`}>
<LogGroupsSelector
fetchLogGroups={async (params: Partial<DescribeLogGroupsRequest>) =>
datasource?.resources.getLogGroups({ region: region, ...params }) ?? []
}
onChange={onChange}
accountOptions={accountState.value}
selectedLogGroups={logGroups}
onBeforeOpen={onBeforeOpen}
variables={datasource?.getVariables()}
/>
<SelectedLogGroups
selectedLogGroups={logGroups ?? []}
onChange={onChange}
maxNoOfVisibleLogGroups={maxNoOfVisibleLogGroups}
></SelectedLogGroups>
</div>
);
};
// We had to bring back the Legacy Log Group selector to support due to an issue where GovClouds do not support the new Log Group API
// when that is fixed we can get rid of this wrapper component and just export the LogGroupsField
type WrapperProps = {
datasource: CloudWatchDatasource;
onChange: (logGroups: LogGroup[]) => void;
legacyLogGroupNames?: string[]; // will need this for a while for migration purposes
logGroups?: LogGroup[];
region: string;
maxNoOfVisibleLogGroups?: number;
onBeforeOpen?: () => void;
newFormStylingEnabled?: boolean;
// Legacy Props, can remove once we remove support for Legacy Log Group Selector
legacyOnChange: (logGroups: string[]) => void;
};
export const LogGroupsFieldWrapper = (props: WrapperProps) => {
if (!config.featureToggles.cloudWatchCrossAccountQuerying) {
return (
<LegacyLogGroupSelection
{...props}
onChange={props.legacyOnChange}
legacyLogGroupNames={props.legacyLogGroupNames || []}
/>
);
}
return <LogGroupsField {...props} />;
};