-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsprint_features.yml
More file actions
2485 lines (2485 loc) · 87.8 KB
/
Copy pathsprint_features.yml
File metadata and controls
2485 lines (2485 loc) · 87.8 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
path: sprint_features
categories:
general:
nl: Algemeen
en: General
icon: [fas, fa-project-diagram]
team:
nl: Team
en: Team
icon: [fas, fa-users]
metrics:
nl: Metrieken
en: Metrics
icon: [fas, fa-chart-pie]
tracking:
nl: Voortgang
en: Progress
icon: [fas, fa-tasks]
velocity:
nl: Velocity
en: Velocity
icon: [fas, fa-shipping-fast]
backlog:
nl: Backlog
en: Backlog
icon: [fas, fa-clipboard-list]
code:
nl: Code
en: Code
icon: [fas, fa-server]
files:
- expression: '1:length(get(ls()[1]))'
window:
dimension: 1
group: project_id
column: sprint_num
optional: No
combine: min
descriptions:
nl: Sprintnummer
en: Sprint number
long_descriptions:
nl: Het opeenvolgende nummer van de sprint in de loopduur van het project
en: The sequential number of the sprint in the project's lifespan
units:
nl: "Sprint #%s"
en: "Sprint #%s"
measurement:
unit: meta
source:
jira: "${jira_url}/secure/RapidBoard.jspa?rapidView=${jira_board_id}&projectKey=${jira_key}&view=reporting&chart=burndownChart&sprint=${jira_sprint_id}"
jira_version: "${jira_url}/jira/projects/${jira_key}?selectedItem=com.atlassian.jira.jira-projects-plugin%3Arelease-page&status=released-unreleased"
category: general
- definition: sprint_days
table: sprint
column: sprint_days
optional: No
combine: median
descriptions:
nl: Sprintlengte
en: Sprint length
long_descriptions:
nl: Het aantal dagen tussen de begindatum en de einddatum van de sprint
en: The number of days between the start and end date of the sprint
units:
nl: "%s dagen"
en: "%s days"
short_units:
nl: "%s dagen"
en: "%s days"
measurement:
unit: time
preferred: false
source:
jira: "${jira_url}/secure/RapidBoard.jspa?rapidView=${jira_board_id}&projectKey=${jira_key}&view=reporting&chart=sprintRetrospective&sprint=${jira_sprint_id}"
jira_version: "${jira_url}/jira/projects/${jira_key}/versions/${jira_sprint_id}"
category: general
- definition: sprint_weekdays
table: sprint
column: sprint_weekdays
combine: median
descriptions:
nl: Weekdagen
en: Week days
long_descriptions:
nl: Het aantal dagen exclusief weekends tussen de begindatum en de einddatum van de sprint
en: The number of days, excluding weekends, between the start and end date of the sprint
units:
nl: "%s weekdagen"
en: "%s weekdays"
short_units:
nl: "%s dagen"
en: "%s days"
measurement:
unit: time
superset: sprint_days
preferred: true
source:
jira: "${jira_url}/secure/RapidBoard.jspa?rapidView=${jira_board_id}&projectKey=${jira_key}&view=reporting&chart=sprintRetrospective&sprint=${jira_sprint_id}"
jira_version: "${jira_url}/jira/projects/${jira_key}/versions/${jira_sprint_id}"
category: general
- filename: 00-sprint-closed.sql
table: sprint_close
column: sprint_is_closed
optional: No
combine: min
descriptions:
nl: Gesloten sprint
en: Closed sprint
long_descriptions:
nl: Of de sprint op het moment afgesloten is
en: Whether the sprint is closed at the moment
tags:
nl: Gesloten
en: Closed
units:
nl: "%s gesloten sprint"
en: "%s closed sprint"
measurement:
unit: meta
source:
jira: "${jira_url}/secure/RapidBoard.jspa?rapidView=${jira_board_id}&projectKey=${jira_key}&view=reporting&chart=sprintRetrospective&sprint=${jira_sprint_id}"
jira_version: "${jira_url}/jira/projects/${jira_key}?selectedItem=com.atlassian.jira.jira-projects-plugin%3Arelease-page&status=released-unreleased"
category: general
- expression: "1 - sprint_is_closed"
column: sprint_is_open
optional: No
combine: max
descriptions:
nl: Open sprint
en: Open sprint
long_descriptions:
nl: Of de sprint op het moment open staat
en: Whether the sprint is open at the moment
tags:
nl: Open
en: Open
units:
nl: "%s open sprint"
en: "%s open sprint"
measurement:
unit: meta
category: general
- filename: 00-sprint-gathered.sql
table: sprint_gathered
column: sprint_is_complete
optional: No
combine: min
descriptions:
nl: Complete sprint
en: Complete sprint
long_descriptions:
nl: Of alle gegevens beschikbaar zijn voor de sprint
en: Whether all data is available for the sprint
tags:
nl: Compleet
en: Complete
units:
nl: "%s complete sprint"
en: "%s complete sprint"
measurement:
unit: meta
category: general
source:
jira: "${jira_url}/secure/RapidBoard.jspa?rapidView=${jira_board_id}&projectKey=${jira_key}&view=reporting&chart=sprintRetrospective&sprint=${jira_sprint_id}"
jira_version: "${jira_url}/jira/projects/${jira_key}?selectedItem=com.atlassian.jira.jira-projects-plugin%3Arelease-page&status=released-unreleased"
- filename: 01-number-of-vcs-committers.sql
table: sprint_vcs_dev_count
column: number_of_vcs_devs
default: 0
combine: mode
descriptions:
nl: Developer teamgrootte
en: Development team size
long_descriptions:
nl: Het aantal developers dat commits in het versiebeheersysteem maakt tijdens de sprint
en: The number of developers that made commits in the version control system during the sprint
units:
nl: "%s developers"
en: "%s developers"
short_units:
nl: "%s devs"
en: "%s devs"
measurement:
unit: person
source:
vcs: "${vcs_url}"
category: team
- filename: 01-number-of-jira-updaters.sql
table: sprint_jira_dev_count
column: number_of_jira_devs
default: 0
combine: mode
descriptions:
nl: Project teamgrootte
en: Project team size
long_descriptions:
nl: Het aantal personen dat aanpassingen maakt in de projecttracker tijdens de sprint
en: The number of persons that made changes in the project tracker during the sprint
units:
nl: "%s projectleden"
en: "%s project members"
short_units:
nl: "%s leden"
en: "%s members"
measurement:
unit: person
source:
jira: "${jira_url}/secure/RapidBoard.jspa?projectKey=${jira_key}&rapidView=${jira_board_id}&view=planning"
category: team
cache: true
- filename: 01-number-of-seats.sql
table: sprint_seat_count
column: number_of_seats
default: 0
combine: median
descriptions:
nl: Teamgrootte
en: Team size
long_descriptions:
nl: Het aantal fte voor het project in de periode van de sprint
en: The number of FTE for the project during the sprint period
units:
nl: "%s full-time leden"
en: "%s fulltime members"
short_units:
nl: "%s fte"
en: "%s FTE"
measurement:
unit: person
category: team
- expression: "ifelse(number_of_vcs_devs > 0, number_of_vcs_devs, round(mean(c(number_of_jira_devs, number_of_seats))))"
column: number_of_devs
default: 0
combine: mode
descriptions:
nl: Aantal developers
en: Number of developers
long_descriptions:
nl: Het berekende aantal developers in het project tijdens de sprint
en: The calculated number of developers in the project during the sprint
units:
nl: "%s developers"
en: "%s developers"
short_units:
nl: "%s devs"
en: "%s devs"
measurement:
unit: person
preferred: true
category: team
- filename: 01-dev-sprint-experience.sql
table: sprint_experience
column: dev_sprint_experience
default: 0
combine: mean
descriptions:
nl: Teamervaring
en: Team experience
long_descriptions:
nl: Het totaal aantal sprints waar developers in gewerkt hebben in de loopduur van het project voor de sprint
en: The total number of sprints that developers have worked in the lifespan of the project before the sprint
units:
nl: "%s sprints ervaring"
en: "%s sprints of experience"
short_units:
nl: "%s sprints"
en: "%s sprints"
measurement:
unit: sprint
category: team
source:
vcs: "${vcs_url}"
cache: true
- expression: "dev_sprint_experience / number_of_devs"
column: weighted_sprint_experience
default: 0
combine: median
descriptions:
nl: Gemiddelde ervaring
en: Average experience
long_descriptions:
nl: Het aantal sprints dat een developer in het team gemiddeld in heeft gewerkt in de loopduur van het project voor de sprint
en: The number of sprints that a developer in the team has worked in the lifespan of the project before the sprint
units:
nl: "%s sprints ervaring per developer"
en: "%s sprints of experience per developer"
short_units:
nl: "%s sprints/dev"
en: "%s sprints/dev"
measurement:
unit: [sprint, person]
dividend: dev_sprint_experience
divisor: number_of_devs
category: team
- filename: 01-new-committers.sql
table: new_developers
column: num_new_developers
default: 0
combine: sum
descriptions:
nl: Nieuwe developers
en: New developers
long_descriptions:
nl: Het aantal developers die niet eerder gewerkt hebben in de loopduur van het project voor de sprint
en: The number of developers that have not worked on the project during its lifespan before the sprint
units:
nl: "%s nieuwe developers"
en: "%s new developers"
measurement:
unit: person
superset: number_of_devs
category: team
source:
vcs: "${vcs_url}"
cache: true
- metric: TeamSpirit
column: team_spirit
aggregate: end
combine: mode
descriptions:
nl: Teamstemming
en: Team spirit
long_descriptions:
nl: De stemming van het team tijdens de sprint
en: The mood of the team during the sprint
values:
type: icon
icons:
0: [far, fa-frown]
1: [far, fa-meh]
2: [far, fa-grin]
units:
nl: "Stemming van %s"
en: "Spirit %s"
measurement:
unit: meta
source:
quality: "${quality_url}/${quality_name}"
metric_history: "${metric_history_url}/${metric_history_file}"
- metric: [ProductLOC, Ncloc, loc]
column: lines_of_code
carry: True
aggregate: end
summarize: sum
combine: sum
descriptions:
nl: Aantal regels code
en: Number of lines of code
long_descriptions:
nl: Het totaal aantal regels code in de producten aan het einde van de sprint
en: The total number of lines of code in the products at the end of the sprint
units:
nl: "%s regels code"
en: "%s regels code"
measurement:
unit: line
backends: [sonar]
- metric: [UnittestLineCoverage, LineCoverage]
column: unittest_line_coverage
carry: True
aggregate: end
summarize: [min, max]
combine: [min, max]
descriptions:
nl: Unittest line coverage
en: Unittest line coverage
long_descriptions:
nl: Het percentage regels met code dat in de producten door tests wordt bereikt aan het einde van de sprint
en: The percentage of lines of code in the products that is reached by tests at the end of the sprint
units:
nl: "%s%% unittest line coverage"
en: "%s%% unittest line coverage"
short_units:
nl: "%s%%"
en: "%s%%"
measurement:
unit: [line, line]
dividend: number_of_covered_lines
divisor: lines_of_code
backends: [sonar]
- metric: [UnittestBranchCoverage, BranchCoverage]
column: unittest_branch_coverage
carry: True
aggregate: end
summarize: [min, max]
combine: [min, max]
descriptions:
nl: Unittest branch coverage
en: Unittest branch coverage
measurement:
unit: [line, line]
dividend: number_of_covered_branches
divisor: number_of_branches
long_descriptions:
nl: Het percentage regels met condities dat in de producten door tests wordt bereikt aan het einde van de sprint
en: The percentage of lines of conditions in the products that is reached by tests at the end of the sprint
units:
nl: "%s%% unittest branch coverage"
en: "%s%% unittest branch coverage"
short_units:
nl: "%s%%"
en: "%s%%"
backends: [sonar]
- metric: ARTStatementCoverage
column: art_statement_coverage
aggregate: end
summarize: [min, max]
combine: [min, max]
descriptions:
nl: ART statement coverage
en: ART statement coverage
long_descriptions:
nl: Het percentage regels met statements dat in de producten door regressietests wordt bereikt aan het einde van de sprint
en: The percentage of lines of statements in the products that is reached by regression tests at the end of the sprint
units:
nl: "%s%% ART statement coverage"
en: "%s%% ART statement coverage"
short_units:
nl: "%s%%"
en: "%s%%"
measurement:
unit: [line, line]
dividend: number_of_covered_lines
divisor: lines_of_code
backends: [sonar]
- metric: ARTBranchCoverage
column: art_branch_coverage
aggregate: end
summarize: [min, max]
combine: [min, max]
descriptions:
nl: ART branch coverage
en: ART branch coverage
long_descriptions:
nl: Het percentage regels met condities dat in de producten door regressietests wordt bereikt aan het einde van de sprint
en: The percentage of lines of condities in the products that is reached by regression tests at the end of the sprint
units:
nl: "%s%% ART branch coverage"
en: "%s%% ART branch coverage"
short_units:
nl: "%s%%"
en: "%s%%"
measurement:
unit: [line, line]
dividend: number_of_covered_branches
divisor: number_of_branches
backends: [sonar]
- metric: [Vulnerabilities]
column: vulnerabilities
carry: true
aggregate: end
summarize: sum
descriptions:
nl: Kwetsbaarheden
en: Vulnerabilities
long_descriptions:
nl: Het aantal gedetecteerde plekken in code in de producten die wellicht voor kwetsbaarheden zorgen aan het einde van de sprint
en: The number of detected locations in code in the products that may cause vulnerabilities at the end of the sprint
units:
nl: "%s kwetsbaarheden"
en: "%s vulnerabilities"
measurement:
unit: issue
backends: [sonar]
- metric: MaintainabilityBugs
column: maintainability_bugs
carry: true
aggregate: end
summarize: sum
descriptions:
nl: Onderhoudsbugs
en: Maintainability bugs
long_descriptions:
nl: Het aantal gedetecteerde plekken in code in de producten die er wellicht voor zorgen dat onderhoud wordt bemoeilijkt aan het einde van de sprint
en: The number of detected locations in code in the products that may cause hindrance to maintainability at the end of the sprint
units:
nl: "%s onderhoudsbugs"
en: "%s maintainability bugs"
measurement:
unit: issue
backends: [sonar]
- metric: CodeSmells
column: code_smells
carry: true
aggregate: end
summarize: sum
descriptions:
nl: Code smells
en: Code smells
long_descriptions:
nl: Het aantal gedetecteerde plekken in code in de producten die wellicht niet voldoen aan designprincipes aan het einde van de sprint
en: The number of detected locations in code in the products that may not adhere to design principles at the end of the sprint
units:
nl: "%s code smells"
en: "%s code smells"
measurement:
unit: issue
backends: [sonar]
- metric: SqaleIndex
column: technical_debt
carry: true
aggregate: end
summarize: sum
descriptions:
nl: Technische schuldtijd
en: Technical debt time
long_descriptions:
nl: De hoeveelheid tijd die ingeschat wordt om problemen omtrent technische schuld in code in de producten op te lossen aan het einde van de sprint
en: The amount of time that is estimated to resolve technical debt issues in code in the products at the end of the sprint
values:
type: duration
intervals:
- unit: minutes
key: m
num: 60
- unit: hours
key: h
num: 8
- unit: days
key: d
num: 5
units:
nl: "%s technische schuld"
en: "%s of technical debt"
measurement:
unit: time
backends: [sonar]
- metric: [DocumentAge, source_up_to_dateness]
column: document_age
aggregate: end
summarize: [min, max]
combine: [min, max]
descriptions:
nl: Documentouderdom
en: Document age
long_descriptions:
nl: De hoeveelheid tijd dat de documenten niet zijn aangepast aan het einde van de sprint
en: The amount of time that the documents have not been updated at the end of the sprint
values:
type: duration
intervals:
- unit: days
key: d
num: 5
units:
nl: "%s geleden bijgewerkt"
en: "%s last updated"
measurement:
unit: time
backends: [git, github, gitlab, tfs, subversion]
- filename: 03-story-watchers.sql
table: watchers
column: num_watchers
default: 0
combine: mean
descriptions:
nl: Story-watchers
en: Story watchers
long_descriptions:
nl: Het gemiddeld aantal personen dat notificaties van aanpassingen aan een story in de sprint ontvangt
en: The average number of persons that receive notifications of changes to a story in the sprint
units:
nl: "%s story-watchers"
en: "%s story watchers"
measurement:
unit: person
superset: number_of_jira_devs
source:
jira: "${jira_url}/secure/IssueNavigator.jspa?jqlQuery=${jira_project} and ${jira_sprint} and type = Story and watchers %3E 0&runQuery=true"
category: tracking
- filename: 03-number-of-issue-changers.sql
table: updaters
column: avg_updaters
default: 0
combine: mean
descriptions:
nl: Item-updaters
en: Item updaters
long_descriptions:
nl: Het gemiddeld aantal personen dat een aanpassing aan een item in de sprint maakt
en: The average number of persons that makes a change to an item in the sprint
units:
nl: "%s item-updaters"
en: "%s item updaters"
measurement:
unit: person
superset: number_of_jira_devs
category: tracking
source:
jira: "${jira_url}/secure/IssueNavigator.jspa?jqlQuery=${jira_project} and ${jira_sprint} and reporter !%3D currentUser()&runQuery=true"
cache: true
- filename: 04-expected-story-points.sql
table: expected_story_points
column: num_story_points
patterns:
story_point_types: NOT (${s(issue_bug)})
default: 0
summarize:
operation: sum
field: story_points
details: [key, story_points]
combine: sum
values:
type: fraction
denominator: 4
descriptions:
nl: Geplande storypoints
en: Planned story points
long_descriptions:
nl: Het totaal aantal storypoints voor 1 dag na de start van sprint is gepland
en: The total number of story points that is planned at most 1 day after the sprint starts
units:
nl: "%s geplande punten"
en: "%s planned points"
measurement:
unit: point
moment: [1, days]
post: done_story_points
preferred: true
source:
jira: "${jira_url}/secure/RapidBoard.jspa?rapidView=${jira_board_id}&projectKey=${jira_key}&view=reporting&chart=burndownChart&sprint=${jira_sprint_id}"
cache: true
category: velocity
- filename: 04-done-story-points.sql
table: done_story_points
column: done_story_points
patterns:
story_point_types: NOT (${s(issue_bug)})
default: 0
summarize:
operation: sum
field: story_points
details: [key, story_points, fixversion]
combine: sum
prediction:
- url: '${prediction_url}'
values:
type: fraction
denominator: 4
descriptions:
nl: Afgeronde storypoints
en: Done story points
long_descriptions:
nl: Het totaal aantal storypoints dat voltooid is in de sprint
en: The total number of story points that are completed during the sprint
units:
nl: "%s afgronde storypoints"
en: "%s done story points"
measurement:
unit: point
superset: velocity_one
moment: post
pre: num_story_points
preferred: true
source:
jira: "${jira_url}/secure/RapidBoard.jspa?rapidView=${jira_board_id}&projectKey=${jira_key}&view=reporting&chart=sprintRetrospective&sprint=${jira_sprint_id}"
cache: true
category: velocity
- filename: 04-expected-story-points.sql
table: expected_bug_points
column: planned_bug_points
patterns:
story_point_types: ${s(issue_bug)}
default: 0
summarize:
operation: sum
field: story_points
details: [key, story_points]
combine: sum
values:
type: fraction
denominator: 4
descriptions:
nl: Geplande bug points
en: Planned bug points
long_descriptions:
nl: Het totaal aantal storypoints voor bugs die voor 1 dag na de start van sprint zijn gepland
en: The total number of points for bugs that are planned at most 1 day after the sprint starts
units:
nl: "%s geplande bug punten"
en: "%s planned bug points"
measurement:
unit: point
moment: [1, days]
post: done_bug_points
source:
jira: "${jira_url}/secure/RapidBoard.jspa?rapidView=${jira_board_id}&projectKey=${jira_key}&view=reporting&chart=burndownChart&sprint=${jira_sprint_id}"
category: velocity
- filename: 04-done-story-points.sql
table: done_bug_points
column: done_bug_points
patterns:
story_point_types: ${s(issue_bug)}
default: 0
summarize:
operation: sum
field: story_points
details: [key, story_points]
combine: sum
values:
type: fraction
denominator: 4
descriptions:
nl: Afgeronde bug points
en: Done bug points
long_descriptions:
nl: Het totaal aantal storypoints voor bugs die voltooid zijn in de sprint
en: The total number of points for bugs that are completed during the sprint
units:
nl: "%s afgronde bug points"
en: "%s done bug points"
measurement:
unit: point
superset: velocity_one
moment: post
pre: planned_bug_points
source:
jira: "${jira_url}/secure/RapidBoard.jspa?rapidView=${jira_board_id}&projectKey=${jira_key}&view=reporting&chart=sprintRetrospective&sprint=${jira_sprint_id}"
category: velocity
- expression: "done_story_points + done_bug_points"
column: velocity_one
default: 0
combine: sum
values:
type: fraction
denominator: 4
descriptions:
nl: "Sprint-velocity"
en: "Sprint velocity"
long_descriptions:
nl: "Het totaal aantal storypoints die voltooid zijn in de sprint"
en: "The total number of points that are completed during the sprint"
units:
nl: "%s punten"
en: "%s points"
measurement:
unit: point
source:
jira: null
category: velocity
- expression: "done_story_points - num_story_points"
column: over_expectation
default: 0
combine: sum
values:
type: fraction
denominator: 4
descriptions:
nl: Punten boven verwachting
en: Points above expectation
long_descriptions:
nl: Het aantal storypoints die tijdens de sprint zijn afgemaakt terwijl ze niet gepland zijn
en: The number of story points that are completed during the sprint despite not being planned
units:
nl: "%s toegevoegde storypoints"
en: "%s added story points"
measurement:
unit: point
superset: done_story_points
preferred: false
source:
jira: null
category: velocity
- expression: "abs(done_story_points - num_story_points)"
column: points_off_expectation
default: 0
combine: sum
values:
type: fraction
denominator: 4
descriptions:
nl: Punten naast verwachting
en: Points off expectation
long_descriptions:
nl: Het aantal storypoints afgemaakt tijdens de sprint onder of boven de geplande aantal
en: The number of story points completed during the sprint above or below the planned number
units:
nl: "%s storypoints naast verwachting"
en: "%s story points off expectation"
measurement:
unit: point
preferred: false
source:
jira: null
category: velocity
- filename: 04-weighted-story-points.sql
table: weighted_story_points
column: num_weighted_points
default: 0
combine: sum
values:
type: fraction
denominator: 4
descriptions:
nl: Gewogen storypoints
en: Weighted story points
long_descriptions:
nl: Het aantal punten in de sprint wanneer deze genormaliseerd worden met een wisselkoers van alle projecten
en: The number of points in the sprint after normalizing then using an exchange rate of all projects
units:
nl: "%s gewogen storypoints"
en: "%s weighted story points"
measurement:
unit: point
preferred: false
source:
jira: "${jira_url}/secure/BrowseProjects.jspa"
category: velocity
- filename: 04-attachments.sql
table: attachments
column: num_attachments
default: 0
combine: sum
descriptions:
nl: Bijlagen
en: Attachments
long_descriptions:
nl: Het aantal bijlagen dat bij items in de sprint is toegevoegd
en: The number of attachements that is added to items in the sprint
units:
nl: "%s bijlagen"
en: "%s attachments"
source:
jira: "${jira_url}/secure/IssueNavigator.jspa?jqlQuery=${jira_project} and ${jira_sprint} and attachments is not empty&runQuery=true"
category: tracking
- filename: 04-labels.sql
table: labels
column: num_labels
default: 0
combine: sum
descriptions:
nl: Labels
en: Labels
long_descriptions:
nl: Het aantal labels dat bij items in de sprint is toegevoegd
en: The number of labels that is added to items in the sprint
units:
nl: "%s labels"
en: "%s labels"
source:
jira: "${jira_url}/secure/IssueNavigator.jspa?jqlQuery=${jira_project} and ${jira_sprint} and labels is not empty&runQuery=true"
category: tracking
- filename: 04-impediments.sql
table: impediments
column: num_impediments
default: 0
combine: sum
descriptions:
nl: Impediments
en: Impediments
long_descriptions:
nl: Het aantal items in de sprint dat gemarkeerd is als geblokeerd door een impediment of een andere taak buiten het team
en: The number of items in the sprint that is marked as blocked due to an impediment or another external task
units:
nl: "%s impediments"
en: "%s impediments"
measurement:
unit: issue
source:
jira: "${jira_url}/secure/IssueNavigator.jspa?jqlQuery=${jira_project} and ${jira_sprint} and Flagged %3D Impediment&runQuery=true"
category: tracking
- filename: 04-late-rank-changes.sql
table: rank_changes
column: num_late_rank_changes
default: 0
combine: sum
descriptions:
nl: Late rangwijzigingen
en: Late rank changes
long_descriptions:
nl: Het aantal wijzigingen in volgorde op de backlog na het begin van de sprint
en: The number of changes in the order on the backlog after the sprint start
units:
nl: "%s rangwijzigingen na begin van sprint"
en: "%s rank changes after start of sprint"
measurement:
unit: change
source:
jira: null
category: tracking
- filename: 04-not-done-points.sql
table: not_done
column: num_not_done_points
default: 0
summarize:
operation: sum
field: story_points
details: [key, story_points]
combine: sum
values:
type: fraction
denominator: 4
descriptions:
nl: Onvoltooide storypoints
en: Unfinished story points
long_descriptions:
nl: Het totaal aantal storypoints dat nog niet tijdens de sprint zijn afgerond
en: The total number of story points that are not yet done during the sprint
units:
nl: "%s storypoints die nog niet afgerond zijn"
en: "%s story points that are not yet done"
measurement:
unit: point
source:
jira: "${jira_url}/secure/RapidBoard.jspa?rapidView=${jira_board_id}&projectKey=${jira_key}&view=reporting&chart=sprintRetrospective&sprint=${jira_sprint_id}"
category: velocity
- filename: 04-late-story-points.sql
table: late_story_points
column: num_late_points
default: 0
summarize:
operation: sum
field: story_points
details: [key, story_points]
combine: sum
values:
type: fraction
denominator: 4
descriptions:
nl: Late storypoints
en: Late story points
long_descriptions:
nl: Het totaal aantal storypoints dat later dan 1 dag na het begin van de sprint toegevoegd worden
en: The total number of story points that is added later than 1 day after the start of the sprint
units:
nl: "%s late storypoints"
en: "%s late story points"
measurement:
unit: point
source:
jira: "${jira_url}/secure/RapidBoard.jspa?rapidView=${jira_board_id}&projectKey=${jira_key}&view=reporting&chart=sprintRetrospective&sprint=${jira_sprint_id}"
category: velocity
- filename: 04-added-stories.sql
table: added_stories
column: num_added_stories
default: 0
summarize:
operation: count_unique
field: key
details: [key]
combine: sum
descriptions:
nl: Heringeplande stories
en: Replanned stories
long_descriptions:
nl: Het totaal aantal stories dat uit een eerdere sprint wordt toegevoegd aan de sprint
en: The total number of stories that is added from an earlier sprint to the sprint
units:
nl: "%s stories toegevoegd uit eerdere sprint"
en: "%s stories added from earlier sprint"
measurement:
unit: point
source:
jira: "${jira_url}/secure/RapidBoard.jspa?rapidView=${jira_board_id}&projectKey=${jira_key}&view=reporting&chart=sprintRetrospective&sprint=${jira_sprint_id}"
category: tracking
- filename: 04-added-story-points.sql
table: added_story_points
column: num_added_points
default: 0
summarize:
operation: sum
field: story_points
details: [key, story_points]
combine: sum
values:
type: fraction
denominator: 4
descriptions:
nl: Heringeplande storypoints
en: Replanned story points
long_descriptions:
nl: Het totaal aantal storypoints dat uit een eerdere sprint wordt toegevoegd aan de sprint
en: The total number of story points that is added from an earlier sprint to the sprint
units:
nl: "%s storypoints toegevoegd uit eerdere sprint"
en: "%s story points added from earlier sprint"
measurement:
unit: point
source:
jira: "${jira_url}/secure/RapidBoard.jspa?rapidView=${jira_board_id}&projectKey=${jira_key}&view=reporting&chart=sprintRetrospective&sprint=${jira_sprint_id}"
category: velocity
- filename: 04-removed-stories.sql
table: removed_stories
column: num_removed_stories
default: 0
summarize:
operation: count_unique
field: key
details: [key]
combine: sum
descriptions:
nl: Doorgeschoven stories
en: Removed stories
long_descriptions:
nl: Het totaal aantal stories dat tijdens de sprint wordt weggehaald of doorgeschoven
en: The total number of stories that is (re)moved during the sprint
units:
nl: "%s doorgeschoven stories"
en: "%s removed stories"