11 May 2023 01:47 PM - last edited on 30 May 2023 07:34 AM by MaciejNeumann
Hi,
I have try to use the new Grail visualisation with metrics
However, some builtin metrics are not existing yet in Grail (I am using this as reference https://www.dynatrace.com/support/help/shortlink/built-in-metrics-on-grail)
I am thinking of synthetic metrics : Browser monitors metrics are not there (it's only one example..)
Will it be available soon and migrated over the time ? any timeline ?
Best regards,
Christophe
Solved! Go to Solution.
12 May 2023 10:55 AM
Hi,
We're gradually working on migrating metrics to Grail and we're at the moment working on the first Synthetic metrics. We don't have a timeline for when all of the Synthetic metrics will be available in Grail but you'll gradually see more and more of them available in Grail as we progress with the migration.
29 May 2023 03:53 PM
We have slightly changed the strategy of synthetic metrics rollout.
First set of metrics will be available as a preview with Dynatrace version 269. It will cover huge majority of HTTP and 3rd monitors metrics plus basic set of Browser monitor metrics.
I will be happy to discuss reasons details of your use case, what are the main goals you would like to achieve with synthetic metrics in Grail.
I would like all community participants to consider my comment as an invitation to such discussion and participation in preview. Please, leave comment under that message if you're interested in.
Best Regards,
Jacek
05 Sep 2023 03:07 PM
Hi Jacek !
Unfortunately, I missed your response in May ...
but if you need any feedback about synthetic metrics, I'll be happy to discuss.
Christophe
28 Feb 2024 12:25 PM
Synthetic metrics are showing up as "available in Grail"
But when I query in a notebook, I get no data? 😞
Am I missing something?
04 Mar 2024 04:19 AM
You are not missing something there.
it's just like that, gradually every metric will be on DQL for now they are just empty buckets
but if you need it now on dashboards gen 3, you can always use the sdk
import { metricsClient } from '@dynatrace-sdk/client-classic-environment-v2';
export default async function () {
const metricSelectorString = "builtin:service.response.time:splitBy():fold:avg";
const resp = await metricsClient.query({
metricSelector: metricSelectorString,
acceptType: "application/json; charset=utf-8",
});
let outarray = [];
for (let rate of resp.result[0].data) {
let i = 0;
for (let ts of rate.timestamps) {
i++;
let date = new Date(ts);
outarray.push({
'Timestamp': date,
'miliSeconds': rate.values/1000,
});
}
}
return outarray;
}
04 Mar 2024 08:15 AM
Hi,
Synthetic metrics like those ones are not (yet) in Grail. Currently it's in closed preview but not publicly available
And @rgarzon1 explained how to get "classic" metrics in new UI dashboards.
Best regards,
Christophe
30 Oct 2024 06:40 PM
I would like to have a shorter retention for the metrics from my non-prod resources, any info on when we will be able to create a storage bucket for metrics and direct metrics to that custom bucket with less retention?