-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmetricdescriptions.json
66 lines (66 loc) · 1.98 KB
/
metricdescriptions.json
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"projects": [
{
"name": "BIP"
},
{
"name": "DAPLA"
},
{
"name": "DAT"
},
{
"name": "KLAS"
}
],
"metrics": [
{
"name": "jira_total_done",
"description": "Not including Won't fix",
"jql": "status IN (\"10002\")",
"limit": 0
},
{
"name": "jira_active_issues",
"description": "Backlog and active",
"jql": "status IN (\"To Do\", \"Selected for development\",\"In Progress\", \"QA\")",
"limit": 0
},
{
"name": "jira_updated_2d",
"description": "Issues with activity in the last two days",
"jql": "updatedDate <= now() AND updatedDate > -2d",
"limit": 0
},
{
"name": "jira_updated_5d",
"description": "Latest activity more than 2 and less than 5 days ago",
"jql": "updatedDate <= -2d AND updatedDate > -5d",
"limit": 0
},
{
"name": "jira_updated_10d",
"description": "Latest activity more than 5 and less than 10 days ago",
"jql": "updatedDate <= -5d AND updatedDate > -10d",
"limit": 0
},
{
"name": "jira_updated_4w",
"description": "Latest activity more than 10 days, less than 4 weeks ago",
"jql": "updatedDate <= -10d AND updatedDate > -4w",
"limit": 0
},
{
"name": "jira_updated_26w",
"description": "Latest activity more than a month, less than half year ago",
"jql": "updatedDate <= -2d AND updatedDate > -5d",
"limit": 0
},
{
"name": "jira_updated_older",
"description": "Latest activity more than a month, less than half year ago",
"jql": "updatedDate <= -26w",
"limit": 0
}
]
}