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

Creating a MTTD tile in DT dashboard

sarfarazx01a
Newcomer

Hi All,

I'm working on a tile for Mean Time To Detect (MTTD) to detect the problem when it occurs first. I wrote a DQL query, but I think the query is not giving the correct results. Can anyone please assist me on this.

fetch events
| filter event.kind == "DAVIS_PROBLEM"
| fieldsAdd time
| fieldsAdd detection_time = toDuration(timestamp - event.start)
//| summarize mean_detection_time = avg(detection_time)

1 REPLY 1

p_devulapalli
Leader

@sarfarazx01a Depending on your definition of MTTD you can use something like below to calculate MTTD for each of the problems . 

fetch events
| filter event.status_transition == "CREATED" AND event.kind == "DAVIS_PROBLEM"
| fieldsAdd `PRB_MTTD` = timestamp - event.start

 

Phani Devulapalli

Featured Posts