forked from dalavanmanphonsy/jiradog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmetrics.example.yaml
31 lines (31 loc) · 1005 Bytes
/
metrics.example.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
- __comment: Recent unclosed service requests
issues:
jql: project = "PL" AND type = "Service Request" AND status IN ("Ready for Development","In
Progress","Review/QA") AND updated >= -1d ORDER BY created DESC
method: ticket_count
source: jira
method: direct
metric_name: jiradog.recentUnclosedServiceRequests
projects:
- PL
- __comment: Recently closed service requests
issues:
jql: project = "PL" AND type = "Service Request" AND status NOT IN ("Ready for
Development","In Progress","Review/QA") AND updated >= -1d ORDER BY created
DESC
method: ticket_count
source: jira
method: direct
metric_name: jiradog.recentClosedServiceRequests
projects:
- PL
- __comment: Service Requests over the last 7 days
issues:
jql: project = "PL" AND type = "Service Request" AND updated >= -7d ORDER BY created
DESC
method: ticket_count
source: jira
method: direct
metric_name: jiradog.sevenDaysServiceRequestCount
projects:
- PL