cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Built-in metrics on grail

Christophe_N
Advisor

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

6 REPLIES 6

christian_gusta
Dynatrace Helper
Dynatrace Helper

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.

Jacek_Janowicz
Dynatrace Pro
Dynatrace Pro

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

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

m3tomlins
Guide

Synthetic metrics are showing up as "available in Grail"

m3tomlins_0-1709123032281.png

But when I query in a notebook, I get no data? 😞

m3tomlins_1-1709123134366.png

Am I missing something?

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;
}

 

fuelled by coffee and curiosity.

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

Featured Posts