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

Make a dashboard with a problems

Ellery
Helper

Hi, how are you all doing? I'm trying to visualize the problem dashboard in a chart, but so far, I haven't been able to do it. I can only pin the number of issues.

 

Ellery_0-1708539596181.png

With this, I aim to group them by the same type of issue, understand how often they occur, and so on.

5 REPLIES 5

ChadTurner
DynaMight Legend
DynaMight Legend

@Ellery you can set the filters as you desire and then in the upper right hand corner pin it to the dashboard. You might want to rename them so the numeric of problems is clear in terms of 5 Resource issues and 3 Availability issues etc... 

You can slice and dice it any way you see fit from time frames to Management zones, tags and everything in between. 

Here is a sample: 

ChadTurner_0-1708539860723.png

 

-Chad

That's correct, but when pinning it to the dashboard, only the number of issues is displayed. We can add filters, but we can't group, for example: the number of pod restarts. Ideally, we'd have a metric to manage the issues effectively

Ellery_0-1708543258921.png

for example I want make some this 

Ellery_1-1708543333086.png

 

 

Dant3
Pro

Sadly the problem view is just that, a problem view. Can't manipulate to much info there. As @ChadTurner  stated only play with a preset of filters of the UI and cant be charted.

The best way to aproach the use case is via DQL. Other ways is play with the API.

If you have access to grail in your tenant is something like this:

 

 

fetch events, from:now()-15d
| filter dt.system.bucket=="default_davis_events" 
| filter isnotnull(display_id)
| summarize Cantidad=count(), by:{bin(timestamp,30m), alias:tiempo, event.name} 
| sort tiempo desc

 

 

This will give you something like this, it will you give you a count of type of events by event.name in slots of 30m, can be changed to 1d and make the query to 7d and you have the view of problems in a week.

You can expand adding those events that are important to you or expand to the entities and see what entities have more problems.

Dant3_1-1708541954888.png

Cheers.

 

 

Services Solution Engineer @PowerCloud - Observability/CloudOps Certified / Former SE @Dynatrace.

Thanks 

   

Ellery_2-1708544127523.png

 

Thank you very much, now I can create the charts and metrics to manage the issues effectively.

ChadTurner
DynaMight Legend
DynaMight Legend

Are you a SaaS customer? You showcased the Davis Metric in the screen shot but thats just an example correct, you want groupings based off all your problem cards that showed up correct?

If DQL is out of the question for you, then I highly recommend looking at the Environment v2 API. You can target problems and add in groupings, filters etc to organize the data. But it wont be on a dashboard. 

ChadTurner_0-1708544146323.png

Now the last work around is is you are a SaaS customer. There is a services portal that will give you even more insights and ability to work the data in terms of problems: 

ChadTurner_1-1708544314959.png

ChadTurner_2-1708544421506.png

It might be worth taking a look at. To gain access you'll need to reach out to your Dynatrace Account Reps. 

-Chad

Featured Posts