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

How to display the list of individual services in the management zone with the number of problems involving them?

Easwaran
Frequent Guest

Hi All,

 

I would like to display the list of services with number of problems it was part of. 

 

for Example, When I select a management zone, I would like to see Services(Col 1) & Number of Problems(Col2).

 

Is there any way to achieve this?

 

The idea was the application team can work on the most problematic services.

 

We can do it manually for limited number of services which I have already achieved through placing the filtered problem tile into the dashboard. but we have 1000 of services where can't relay on this manual  configurations.

 

Thanks,

Easwaran

Thanks,
Easwaran
2 REPLIES 2

Mizső
DynaMight Leader
DynaMight Leader

Hi @Easwaran,

 

You can use the enviroment API V2 to create such table.

 

Problems API v2 - GET problems details | Dynatrace Docs

 

Example response:

 

{
"startTime": 0,
"endTime": 0,
"severityLevel": "AVAILABILITY",
"entityTags": [
{
"stringRepresentation": "string",
"value": "string",
"key": "string",
"context": "string"
}
],
"managementZones": [
{
"name": "string",
"id": "string"
}
],
"problemId": "string",
"displayId": "string",
"problemFilters": [
{
"name": "string",
"id": "string"
}
],
"rootCauseEntity": {
"entityId": {
"id": "string",
"type": "string"
},
"name": "string"
},
"evidenceDetails": {
"details": [
{
"evidenceType": "AVAILABILITY_EVIDENCE",
"displayName": "string",
"entity": {
"entityId": {
"id": "string",
"type": "string"
},
"name": "string"
},
"groupingEntity": {
"entityId": {
"id": "string",
"type": "string"
},
"name": "string"
},
"rootCauseRelevant": true,
"startTime": 0
}
],
"totalCount": 0
},
"impactAnalysis": {
"impacts": [
{
"impactType": "APPLICATION",
"impactedEntity": {
"entityId": {
"id": "string",
"type": "string"
},
"name": "string"
},
"estimatedAffectedUsers": 0
}
]
},
"recentComments": {
"comments": [
{
"authorName": "string",
"createdAtTimestamp": 0,
"context": "string",
"id": "string",
"content": "string"
}
],
"pageSize": 0,
"totalCount": 0,
"nextPageKey": "AQAAABQBAAAABQ=="
},
"impactLevel": "APPLICATION",
"affectedEntities": [
{
"entityId": {
"id": "string",
"type": "string"
},
"name": "string"
}
],
"linkedProblemInfo": {
"problemId": "string",
"displayId": "string"
},
"impactedEntities": [
{
"entityId": {
"id": "string",
"type": "string"
},
"name": "string"
}
],
"title": "string",
"status": "CLOSED"
}

 

This is a PowerBI solution with Dynatrace Problem data via Problem APi v2.

 

Mizs_0-1664787793870.png

 

I hope it helps.

 

Br, Mizső

 

Dynatrace Community RockStar 2024, Certified Dynatrace Professional

Hi Mizso,

 

Thanks for your suggestions above, but I am expecting the simple 2 columns with "Service Name" ,"Problem Count"  within the Dynatrace itself using explorer or Custom Metrics or any solution without external reporting dependencies.

 

Thanks,

Easwaran M

Thanks,
Easwaran

Featured Posts