Thank you!
Sadly cannot get the
to go away even after reading those instructions.
Originally I had:
FROM Metric SELECT max(k8s.container.cpuUsedCores) AS 'Used', min(k8s.container.cpuRequestedCores) AS 'Requested', min(k8s.container.cpuLimitCores) AS 'Limit' WHERE k8s.namespaceName='...' AND k8s.containerName='...' AND tags.app='...' TIMESERIES
I read in the documentation you pointed out:
In order to select attributes starting with tags.
a metric name has to be provided. For example, SELECT uniques(tags.environment) FROM Metric WHERE metricName=’aws.lambda.function.duration’
does not work without the WHERE
clause.
Hence I turned this into:
FROM Metric SELECT max(k8s.container.cpuUsedCores) AS 'Used', min(k8s.container.cpuRequestedCores) AS 'Requested', min(k8s.container.cpuLimitCores) AS 'Limit' WHERE metricName IN ('k8s.container.cpuUsedCores', 'k8s.container.cpuRequestedCores', 'k8s.container.cpuLimitCores') AND k8s.namespaceName='...' AND k8s.containerName='...' AND tags.app='...' TIMESERIES
But that still shows the same
and tooltip.