diff --git a/public/app/plugins/datasource/cloudwatch/components/VariableQueryEditor/VariableQueryEditor.tsx b/public/app/plugins/datasource/cloudwatch/components/VariableQueryEditor/VariableQueryEditor.tsx index b69362e8ed6..690e9ad4302 100644 --- a/public/app/plugins/datasource/cloudwatch/components/VariableQueryEditor/VariableQueryEditor.tsx +++ b/public/app/plugins/datasource/cloudwatch/components/VariableQueryEditor/VariableQueryEditor.tsx @@ -166,12 +166,34 @@ export const VariableQueryEditor = ({ query, datasource, onChange }: Props) => { placeholder="attribute name" onBlur={(value: string) => onQueryChange({ ...parsedQuery, attributeName: value })} label="Attribute Name" - tooltip='Attribute or tag to query on. Tags should be formatted "Tags.".' + tooltip={ + <> + {'Attribute or tag to query on. Tags should be formatted "Tags.". '} + + See the documentation for more details + + + } /> + + Pre-defined ec2:DescribeInstances filters/tags + + {' and the values to filter on. Tags should be formatted tag:.'} + + } > = ({ label, onBlur, placeholder, value, tooltip }) => {