-
Notifications
You must be signed in to change notification settings - Fork 0
/
dashboard.json
1443 lines (1443 loc) · 198 KB
/
dashboard.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
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
{
"annotations": {
"list": [
{
"builtIn": 1,
"datasource": "-- Grafana --",
"enable": true,
"hide": true,
"iconColor": "rgba(0, 211, 255, 1)",
"name": "Annotations & Alerts",
"target": {
"limit": 100,
"matchAny": false,
"tags": [],
"type": "dashboard"
},
"type": "dashboard"
}
]
},
"editable": true,
"fiscalYearStartMonth": 0,
"gnetId": null,
"graphTooltip": 0,
"id": 1,
"links": [],
"liveNow": false,
"panels": [
{
"collapsed": true,
"datasource": null,
"gridPos": {
"h": 1,
"w": 24,
"x": 0,
"y": 0
},
"id": 12,
"panels": [
{
"datasource": null,
"description": "{\n \"id\": 1,\n \"created_at\": \"2020-11-02 12:55:12 UTC\",\n \"description\": \"v1.1 has been released\",\n \"name\": \"v1.1\",\n \"released_at\": \"2020-11-02 12:55:12 UTC\",\n \"tag\": \"v1.1\",\n \"object_kind\": \"release\",\n \"project\": {\n \"id\": 2,\n \"name\": \"release-webhook-example\",\n \"description\": \"\",\n \"web_url\": \"https://example.com/gitlab-org/release-webhook-example\",\n \"avatar_url\": null,\n \"git_ssh_url\": \"ssh://[email protected]/gitlab-org/release-webhook-example.git\",\n \"git_http_url\": \"https://example.com/gitlab-org/release-webhook-example.git\",\n \"namespace\": \"Gitlab\",\n \"visibility_level\": 0,\n \"path_with_namespace\": \"gitlab-org/release-webhook-example\",\n \"default_branch\": \"master\",\n \"ci_config_path\": null,\n \"homepage\": \"https://example.com/gitlab-org/release-webhook-example\",\n \"url\": \"ssh://[email protected]/gitlab-org/release-webhook-example.git\",\n \"ssh_url\": \"ssh://[email protected]/gitlab-org/release-webhook-example.git\",\n \"http_url\": \"https://example.com/gitlab-org/release-webhook-example.git\"\n },\n \"url\": \"https://example.com/gitlab-org/release-webhook-example/-/releases/v1.1\",\n \"action\": \"create\",\n \"assets\": {\n \"count\": 5,\n \"links\": [\n {\n \"id\": 1,\n \"external\": true,\n \"link_type\": \"other\",\n \"name\": \"Changelog\",\n \"url\": \"https://example.net/changelog\"\n }\n ],\n \"sources\": [\n {\n \"format\": \"zip\",\n \"url\": \"https://example.com/gitlab-org/release-webhook-example/-/archive/v1.1/release-webhook-example-v1.1.zip\"\n },\n {\n \"format\": \"tar.gz\",\n \"url\": \"https://example.com/gitlab-org/release-webhook-example/-/archive/v1.1/release-webhook-example-v1.1.tar.gz\"\n },\n {\n \"format\": \"tar.bz2\",\n \"url\": \"https://example.com/gitlab-org/release-webhook-example/-/archive/v1.1/release-webhook-example-v1.1.tar.bz2\"\n },\n {\n \"format\": \"tar\",\n \"url\": \"https://example.com/gitlab-org/release-webhook-example/-/archive/v1.1/release-webhook-example-v1.1.tar\"\n }\n ]\n },\n \"commit\": {\n \"id\": \"ee0a3fb31ac16e11b9dbb596ad16d4af654d08f8\",\n \"message\": \"Release v1.1\",\n \"title\": \"Release v1.1\",\n \"timestamp\": \"2020-10-31T14:58:32+11:00\",\n \"url\": \"https://example.com/gitlab-org/release-webhook-example/-/commit/ee0a3fb31ac16e11b9dbb596ad16d4af654d08f8\",\n \"author\": {\n \"name\": \"Example User\",\n \"email\": \"[email protected]\"\n }\n }\n}",
"fieldConfig": {
"defaults": {
"color": {
"mode": "thresholds"
},
"custom": {
"align": "center",
"displayMode": "auto"
},
"mappings": [],
"thresholds": {
"mode": "absolute",
"steps": [
{
"color": "green",
"value": null
},
{
"color": "red",
"value": 80
}
]
}
},
"overrides": []
},
"gridPos": {
"h": 5,
"w": 24,
"x": 0,
"y": 1
},
"id": 54,
"options": {
"showHeader": true
},
"pluginVersion": "8.2.0",
"targets": [
{
"format": 1,
"meta": {
"builderOptions": {
"fields": [],
"limit": 100,
"mode": "list"
}
},
"queryType": "sql",
"rawSql": "select event.metrics.object_kind as Event,\r\nevent.metrics.created_at as Time,\r\nevent.metrics.project.name as ProjectName,\r\nevent.metrics.tag as Version,\r\nevent.metrics.description as Description\r\nfrom test.git_json where event.repo == 'Gitlab' and event.metrics.object_kind == 'release' SETTINGS describe_extend_object_types=1;",
"refId": "A"
}
],
"title": "Gitlab Release Event",
"transparent": true,
"type": "table"
},
{
"datasource": null,
"description": "{\n \"object_kind\": \"wiki_page\",\n \"user\": {\n \"id\": 1,\n \"name\": \"Administrator\",\n \"username\": \"root\",\n \"avatar_url\": \"http://www.gravatar.com/avatar/e64c7d89f26bd1972efa854d13d7dd61?s=80\\u0026d=identicon\",\n \"email\": \"[email protected]\"\n },\n \"project\": {\n \"id\": 1,\n \"name\": \"awesome-project\",\n \"description\": \"This is awesome\",\n \"web_url\": \"http://example.com/root/awesome-project\",\n \"avatar_url\": null,\n \"git_ssh_url\": \"[email protected]:root/awesome-project.git\",\n \"git_http_url\": \"http://example.com/root/awesome-project.git\",\n \"namespace\": \"root\",\n \"visibility_level\": 0,\n \"path_with_namespace\": \"root/awesome-project\",\n \"default_branch\": \"master\",\n \"homepage\": \"http://example.com/root/awesome-project\",\n \"url\": \"[email protected]:root/awesome-project.git\",\n \"ssh_url\": \"[email protected]:root/awesome-project.git\",\n \"http_url\": \"http://example.com/root/awesome-project.git\"\n },\n \"wiki\": {\n \"web_url\": \"http://example.com/root/awesome-project/-/wikis/home\",\n \"git_ssh_url\": \"[email protected]:root/awesome-project.wiki.git\",\n \"git_http_url\": \"http://example.com/root/awesome-project.wiki.git\",\n \"path_with_namespace\": \"root/awesome-project.wiki\",\n \"default_branch\": \"master\"\n },\n \"object_attributes\": {\n \"title\": \"Awesome\",\n \"content\": \"awesome content goes here\",\n \"format\": \"markdown\",\n \"message\": \"adding an awesome page to the wiki\",\n \"slug\": \"awesome\",\n \"url\": \"http://example.com/root/awesome-project/-/wikis/awesome\",\n \"action\": \"create\"\n }\n}",
"fieldConfig": {
"defaults": {
"color": {
"mode": "thresholds"
},
"custom": {
"align": "auto",
"displayMode": "auto"
},
"mappings": [],
"thresholds": {
"mode": "absolute",
"steps": [
{
"color": "green",
"value": null
},
{
"color": "red",
"value": 80
}
]
}
},
"overrides": []
},
"gridPos": {
"h": 4,
"w": 24,
"x": 0,
"y": 6
},
"id": 44,
"options": {
"showHeader": true
},
"pluginVersion": "8.2.0",
"targets": [
{
"format": 1,
"meta": {
"builderOptions": {
"fields": [],
"limit": 100,
"mode": "list"
}
},
"queryType": "sql",
"rawSql": "select event.metrics.object_kind as Event,\r\nevent.metrics.object_attributes.title as WikiTitle,\r\nevent.metrics.object_attributes.message as message,\r\nevent.metrics.project.name as ProjectName\r\nfrom test.git_json where event.repo == 'Gitlab' and event.metrics.object_kind == 'wiki_page' SETTINGS describe_extend_object_types=1;",
"refId": "A"
}
],
"title": "Gitlab Wiki Page Event",
"transparent": true,
"type": "table"
},
{
"datasource": null,
"description": "{\n \"created_at\": \"2020-12-11T04:57:22Z\",\n \"updated_at\": \"2020-12-12T08:48:19Z\",\n \"group_name\": \"webhook-test\",\n \"group_path\": \"webhook-test\",\n \"group_id\": 100,\n \"user_username\": \"test_user\",\n \"user_name\": \"Test User\",\n \"user_email\": \"[email protected]\",\n \"user_id\": 64,\n \"group_access\": \"Developer\",\n \"group_plan\": null,\n \"expires_at\": \"2020-12-20T00:00:00Z\",\n \"event_name\": \"user_update_for_group\"\n}",
"fieldConfig": {
"defaults": {
"color": {
"mode": "thresholds"
},
"custom": {
"align": "auto",
"displayMode": "auto"
},
"mappings": [],
"thresholds": {
"mode": "absolute",
"steps": [
{
"color": "green",
"value": null
},
{
"color": "red",
"value": 80
}
]
}
},
"overrides": []
},
"gridPos": {
"h": 6,
"w": 24,
"x": 0,
"y": 10
},
"id": 50,
"options": {
"showHeader": true
},
"pluginVersion": "8.2.0",
"targets": [
{
"format": 1,
"meta": {
"builderOptions": {
"fields": [],
"limit": 100,
"mode": "list"
}
},
"queryType": "sql",
"rawSql": "select event.metrics.event_name as Event,\r\nevent.metrics.group_name as GroupName,\r\nevent.metrics.user_name as MemberAdded,\r\nevent.metrics.group_access as MemberAccess\r\nfrom test.git_json where event.repo == 'Gitlab' and event.metrics.event_name == 'user_update_for_group' SETTINGS describe_extend_object_types=1;",
"refId": "A"
}
],
"title": "Gitlab Member Update Event",
"transparent": true,
"type": "table"
},
{
"datasource": null,
"description": "{\n \"created_at\": \"2020-12-11T04:57:22Z\",\n \"updated_at\": \"2020-12-12T08:52:34Z\",\n \"group_name\": \"webhook-test\",\n \"group_path\": \"webhook-test\",\n \"group_id\": 100,\n \"user_username\": \"test_user\",\n \"user_name\": \"Test User\",\n \"user_email\": \"[email protected]\",\n \"user_id\": 64,\n \"group_access\": \"Guest\",\n \"group_plan\": null,\n \"expires_at\": \"2020-12-14T00:00:00Z\",\n \"event_name\": \"user_remove_from_group\"\n}",
"fieldConfig": {
"defaults": {
"color": {
"mode": "thresholds"
},
"custom": {
"align": "auto",
"displayMode": "auto"
},
"mappings": [],
"thresholds": {
"mode": "absolute",
"steps": [
{
"color": "green",
"value": null
},
{
"color": "red",
"value": 80
}
]
}
},
"overrides": []
},
"gridPos": {
"h": 5,
"w": 24,
"x": 0,
"y": 16
},
"id": 52,
"options": {
"showHeader": true
},
"pluginVersion": "8.2.0",
"targets": [
{
"format": 1,
"meta": {
"builderOptions": {
"fields": [],
"limit": 100,
"mode": "list"
}
},
"queryType": "sql",
"rawSql": "select event.metrics.event_name as Event,\r\nevent.metrics.group_name as GroupName,\r\nevent.metrics.user_name as MemberAdded,\r\nevent.metrics.group_access as MemberAccess\r\nfrom test.git_json where event.repo == 'Gitlab' and event.metrics.event_name == 'user_remove_from_group' SETTINGS describe_extend_object_types=1;",
"refId": "A"
}
],
"title": "Gitlab Member Remove Event",
"transparent": true,
"type": "table"
},
{
"datasource": null,
"description": "{\n \"created_at\": \"2020-12-11T04:57:22Z\",\n \"updated_at\": \"2020-12-11T04:57:22Z\",\n \"group_name\": \"webhook-test\",\n \"group_path\": \"webhook-test\",\n \"group_id\": 100,\n \"user_username\": \"test_user\",\n \"user_name\": \"Test User\",\n \"user_email\": \"[email protected]\",\n \"user_id\": 64,\n \"group_access\": \"Guest\",\n \"group_plan\": null,\n \"expires_at\": \"2020-12-14T00:00:00Z\",\n \"event_name\": \"user_add_to_group\"\n}",
"fieldConfig": {
"defaults": {
"color": {
"mode": "thresholds"
},
"custom": {
"align": "auto",
"displayMode": "auto"
},
"mappings": [],
"thresholds": {
"mode": "absolute",
"steps": [
{
"color": "green",
"value": null
},
{
"color": "red",
"value": 80
}
]
}
},
"overrides": []
},
"gridPos": {
"h": 5,
"w": 24,
"x": 0,
"y": 21
},
"id": 48,
"options": {
"showHeader": true
},
"pluginVersion": "8.2.0",
"targets": [
{
"format": 1,
"meta": {
"builderOptions": {
"fields": [],
"limit": 100,
"mode": "list"
}
},
"queryType": "sql",
"rawSql": "select event.metrics.event_name as Event,\r\nevent.metrics.group_name as GroupName,\r\nevent.metrics.user_name as MemberAdded,\r\nevent.metrics.group_access as MemberAccess\r\nfrom test.git_json where event.repo == 'Gitlab' and event.metrics.event_name == 'user_add_to_group' SETTINGS describe_extend_object_types=1;",
"refId": "A"
}
],
"title": "Gitlab Member Add Event",
"transparent": true,
"type": "table"
},
{
"datasource": null,
"description": "{\n \"object_kind\": \"deployment\",\n \"status\": \"success\",\n \"status_changed_at\":\"2021-04-28 21:50:00 +0200\",\n \"deployment_id\": 15,\n \"deployable_id\": 796,\n \"deployable_url\": \"http://10.126.0.2:3000/root/test-deployment-webhooks/-/jobs/796\",\n \"environment\": \"staging\",\n \"project\": {\n \"id\": 30,\n \"name\": \"test-deployment-webhooks\",\n \"description\": \"\",\n \"web_url\": \"http://10.126.0.2:3000/root/test-deployment-webhooks\",\n \"avatar_url\": null,\n \"git_ssh_url\": \"ssh://[email protected]:2222/root/test-deployment-webhooks.git\",\n \"git_http_url\": \"http://10.126.0.2:3000/root/test-deployment-webhooks.git\",\n \"namespace\": \"Administrator\",\n \"visibility_level\": 0,\n \"path_with_namespace\": \"root/test-deployment-webhooks\",\n \"default_branch\": \"master\",\n \"ci_config_path\": \"\",\n \"homepage\": \"http://10.126.0.2:3000/root/test-deployment-webhooks\",\n \"url\": \"ssh://[email protected]:2222/root/test-deployment-webhooks.git\",\n \"ssh_url\": \"ssh://[email protected]:2222/root/test-deployment-webhooks.git\",\n \"http_url\": \"http://10.126.0.2:3000/root/test-deployment-webhooks.git\"\n },\n \"short_sha\": \"279484c0\",\n \"user\": {\n \"id\": 1,\n \"name\": \"Administrator\",\n \"username\": \"root\",\n \"avatar_url\": \"https://www.gravatar.com/avatar/e64c7d89f26bd1972efa854d13d7dd61?s=80&d=identicon\",\n \"email\": \"[email protected]\"\n },\n \"user_url\": \"http://10.126.0.2:3000/root\",\n \"commit_url\": \"http://10.126.0.2:3000/root/test-deployment-webhooks/-/commit/279484c09fbe69ededfced8c1bb6e6d24616b468\",\n \"commit_title\": \"Add new file\"\n}",
"fieldConfig": {
"defaults": {
"color": {
"mode": "thresholds"
},
"custom": {
"align": "auto",
"displayMode": "auto"
},
"mappings": [],
"thresholds": {
"mode": "absolute",
"steps": [
{
"color": "green",
"value": null
},
{
"color": "red",
"value": 80
}
]
}
},
"overrides": []
},
"gridPos": {
"h": 5,
"w": 24,
"x": 0,
"y": 26
},
"id": 46,
"options": {
"showHeader": true
},
"pluginVersion": "8.2.0",
"targets": [
{
"format": 1,
"meta": {
"builderOptions": {
"fields": [],
"limit": 100,
"mode": "list"
}
},
"queryType": "sql",
"rawSql": "select event.metrics.object_kind as Event,\r\nevent.metrics.status as DeploymentStatus,\r\nevent.metrics.project.name as ProjectName,\r\nevent.metrics.user.name as User\r\nfrom test.git_json where event.repo == 'Gitlab' and event.metrics.object_kind == 'deployment' SETTINGS describe_extend_object_types=1;",
"refId": "A"
}
],
"title": "Gitlab Deployment Event",
"transparent": true,
"type": "table"
},
{
"datasource": null,
"description": "{\n \"object_kind\": \"issue\",\n \"event_type\": \"issue\",\n \"user\": {\n \"id\": 1,\n \"name\": \"Administrator\",\n \"username\": \"root\",\n \"avatar_url\": \"http://www.gravatar.com/avatar/e64c7d89f26bd1972efa854d13d7dd61?s=40\\u0026d=identicon\",\n \"email\": \"[email protected]\"\n },\n \"project\": {\n \"id\": 1,\n \"name\":\"Gitlab Test\",\n \"description\":\"Aut reprehenderit ut est.\",\n \"web_url\":\"http://example.com/gitlabhq/gitlab-test\",\n \"avatar_url\":null,\n \"git_ssh_url\":\"[email protected]:gitlabhq/gitlab-test.git\",\n \"git_http_url\":\"http://example.com/gitlabhq/gitlab-test.git\",\n \"namespace\":\"GitlabHQ\",\n \"visibility_level\":20,\n \"path_with_namespace\":\"gitlabhq/gitlab-test\",\n \"default_branch\":\"master\",\n \"ci_config_path\": null,\n \"homepage\":\"http://example.com/gitlabhq/gitlab-test\",\n \"url\":\"http://example.com/gitlabhq/gitlab-test.git\",\n \"ssh_url\":\"[email protected]:gitlabhq/gitlab-test.git\",\n \"http_url\":\"http://example.com/gitlabhq/gitlab-test.git\"\n },\n \"object_attributes\": {\n \"id\": 301,\n \"title\": \"New API: create/update/delete file\",\n \"assignee_ids\": [51],\n \"assignee_id\": 51,\n \"author_id\": 51,\n \"project_id\": 14,\n \"created_at\": \"2013-12-03T17:15:43Z\",\n \"updated_at\": \"2013-12-03T17:15:43Z\",\n \"updated_by_id\": 1,\n \"last_edited_at\": null,\n \"last_edited_by_id\": null,\n \"relative_position\": 0,\n \"description\": \"Create new API for manipulations with repository\",\n \"milestone_id\": null,\n \"state_id\": 1,\n \"confidential\": false,\n \"discussion_locked\": true,\n \"due_date\": null,\n \"moved_to_id\": null,\n \"duplicated_to_id\": null,\n \"time_estimate\": 0,\n \"total_time_spent\": 0,\n \"time_change\": 0,\n \"human_total_time_spent\": null,\n \"human_time_estimate\": null,\n \"human_time_change\": null,\n \"weight\": null,\n \"iid\": 23,\n \"url\": \"http://example.com/diaspora/issues/23\",\n \"state\": \"opened\",\n \"action\": \"open\",\n \"severity\": \"high\",\n \"escalation_status\": \"triggered\",\n \"escalation_policy\": {\n \"id\": 18,\n \"name\": \"Engineering On-call\"\n },\n \"labels\": [{\n \"id\": 206,\n \"title\": \"API\",\n \"color\": \"#ffffff\",\n \"project_id\": 14,\n \"created_at\": \"2013-12-03T17:15:43Z\",\n \"updated_at\": \"2013-12-03T17:15:43Z\",\n \"template\": false,\n \"description\": \"API related issues\",\n \"type\": \"ProjectLabel\",\n \"group_id\": 41\n }]\n },\n \"repository\": {\n \"name\": \"Gitlab Test\",\n \"url\": \"http://example.com/gitlabhq/gitlab-test.git\",\n \"description\": \"Aut reprehenderit ut est.\",\n \"homepage\": \"http://example.com/gitlabhq/gitlab-test\"\n },\n \"assignees\": [{\n \"name\": \"User1\",\n \"username\": \"user1\",\n \"avatar_url\": \"http://www.gravatar.com/avatar/e64c7d89f26bd1972efa854d13d7dd61?s=40\\u0026d=identicon\"\n }],\n \"assignee\": {\n \"name\": \"User1\",\n \"username\": \"user1\",\n \"avatar_url\": \"http://www.gravatar.com/avatar/e64c7d89f26bd1972efa854d13d7dd61?s=40\\u0026d=identicon\"\n },\n \"labels\": [{\n \"id\": 206,\n \"title\": \"API\",\n \"color\": \"#ffffff\",\n \"project_id\": 14,\n \"created_at\": \"2013-12-03T17:15:43Z\",\n \"updated_at\": \"2013-12-03T17:15:43Z\",\n \"template\": false,\n \"description\": \"API related issues\",\n \"type\": \"ProjectLabel\",\n \"group_id\": 41\n }],\n \"changes\": {\n \"updated_by_id\": {\n \"previous\": null,\n \"current\": 1\n },\n \"updated_at\": {\n \"previous\": \"2017-09-15 16:50:55 UTC\",\n \"current\": \"2017-09-15 16:52:00 UTC\"\n },\n \"labels\": {\n \"previous\": [{\n \"id\": 206,\n \"title\": \"API\",\n \"color\": \"#ffffff\",\n \"project_id\": 14,\n \"created_at\": \"2013-12-03T17:15:43Z\",\n \"updated_at\": \"2013-12-03T17:15:43Z\",\n \"template\": false,\n \"description\": \"API related issues\",\n \"type\": \"ProjectLabel\",\n \"group_id\": 41\n }],\n \"current\": [{\n \"id\": 205,\n \"title\": \"Platform\",\n \"color\": \"#123123\",\n \"project_id\": 14,\n \"created_at\": \"2013-12-03T17:15:43Z\",\n \"updated_at\": \"2013-12-03T17:15:43Z\",\n \"template\": false,\n \"description\": \"Platform related issues\",\n \"type\": \"ProjectLabel\",\n \"group_id\": 41\n }]\n }\n }\n}",
"fieldConfig": {
"defaults": {
"color": {
"mode": "thresholds"
},
"custom": {
"align": "auto",
"displayMode": "auto"
},
"mappings": [],
"thresholds": {
"mode": "absolute",
"steps": [
{
"color": "green",
"value": null
},
{
"color": "red",
"value": 80
}
]
}
},
"overrides": []
},
"gridPos": {
"h": 4,
"w": 24,
"x": 0,
"y": 31
},
"id": 42,
"options": {
"showHeader": true
},
"pluginVersion": "8.2.0",
"targets": [
{
"format": 1,
"meta": {
"builderOptions": {
"fields": [],
"limit": 100,
"mode": "list"
}
},
"queryType": "sql",
"rawSql": "select event.metrics.object_attributes.action as IssueAction,\r\nevent.metrics.event_type as Event,\r\nevent.metrics.repository.name as RepoName,\r\nevent.metrics.object_attributes.created_at as Time\r\nfrom test.git_json where event.repo == 'Gitlab' and event.metrics.event_type == 'issue' SETTINGS describe_extend_object_types=1;",
"refId": "A"
}
],
"title": "Gitlab Issue Event",
"transparent": true,
"type": "table"
},
{
"datasource": null,
"description": "{\n \"object_kind\": \"tag_push\",\n \"event_name\": \"tag_push\",\n \"before\": \"0000000000000000000000000000000000000000\",\n \"after\": \"82b3d5ae55f7080f1e6022629cdb57bfae7cccc7\",\n \"ref\": \"refs/tags/v1.0.0\",\n \"checkout_sha\": \"82b3d5ae55f7080f1e6022629cdb57bfae7cccc7\",\n \"user_id\": 1,\n \"user_name\": \"John Smith\",\n \"user_avatar\": \"https://s.gravatar.com/avatar/d4c74594d841139328695756648b6bd6?s=8://s.gravatar.com/avatar/d4c74594d841139328695756648b6bd6?s=80\",\n \"project_id\": 1,\n \"project\":{\n \"id\": 1,\n \"name\":\"Example\",\n \"description\":\"\",\n \"web_url\":\"http://example.com/jsmith/example\",\n \"avatar_url\":null,\n \"git_ssh_url\":\"[email protected]:jsmith/example.git\",\n \"git_http_url\":\"http://example.com/jsmith/example.git\",\n \"namespace\":\"Jsmith\",\n \"visibility_level\":0,\n \"path_with_namespace\":\"jsmith/example\",\n \"default_branch\":\"master\",\n \"homepage\":\"http://example.com/jsmith/example\",\n \"url\":\"[email protected]:jsmith/example.git\",\n \"ssh_url\":\"[email protected]:jsmith/example.git\",\n \"http_url\":\"http://example.com/jsmith/example.git\"\n },\n \"repository\":{\n \"name\": \"Example\",\n \"url\": \"ssh://[email protected]/jsmith/example.git\",\n \"description\": \"\",\n \"homepage\": \"http://example.com/jsmith/example\",\n \"git_http_url\":\"http://example.com/jsmith/example.git\",\n \"git_ssh_url\":\"[email protected]:jsmith/example.git\",\n \"visibility_level\":0\n },\n \"commits\": [],\n \"total_commits_count\": 0\n}",
"fieldConfig": {
"defaults": {
"color": {
"mode": "thresholds"
},
"custom": {
"align": "auto",
"displayMode": "auto"
},
"mappings": [],
"thresholds": {
"mode": "absolute",
"steps": [
{
"color": "green",
"value": null
},
{
"color": "red",
"value": 80
}
]
}
},
"overrides": []
},
"gridPos": {
"h": 4,
"w": 24,
"x": 0,
"y": 35
},
"id": 40,
"options": {
"showHeader": true
},
"pluginVersion": "8.2.0",
"targets": [
{
"format": 1,
"meta": {
"builderOptions": {
"fields": [],
"limit": 100,
"mode": "list"
}
},
"queryType": "sql",
"rawSql": "select event.metrics.event_name as Event,\r\nevent.metrics.repository.name as RepoName,\r\nevent.metrics.ref as tag\r\nfrom test.git_json where event.repo == 'Gitlab' and event.metrics.event_name == 'tag_push' SETTINGS describe_extend_object_types=1;",
"refId": "A"
}
],
"title": "Gitlab Tag Push Event",
"transparent": true,
"type": "table"
}
],
"title": "Gitlab Events",
"type": "row"
},
{
"collapsed": true,
"datasource": null,
"gridPos": {
"h": 1,
"w": 24,
"x": 0,
"y": 1
},
"id": 8,
"panels": [
{
"datasource": null,
"fieldConfig": {
"defaults": {
"color": {
"mode": "thresholds"
},
"custom": {
"align": "auto",
"displayMode": "auto"
},
"mappings": [],
"thresholds": {
"mode": "absolute",
"steps": [
{
"color": "green",
"value": null
},
{
"color": "red",
"value": 80
}
]
}
},
"overrides": []
},
"gridPos": {
"h": 8,
"w": 24,
"x": 0,
"y": 2
},
"id": 10,
"options": {
"showHeader": true
},
"pluginVersion": "8.2.0",
"targets": [
{
"format": 1,
"meta": {
"builderOptions": {
"fields": [],
"limit": 100,
"mode": "list"
}
},
"queryType": "sql",
"rawSql": "select event.metrics.after as hashid,\r\nevent.metrics.repository.name as repo,\r\nevent.metrics.commits.committer.name[1] as committer,\r\nevent.metrics.commits.message[1] as message,\r\nevent.metrics.commits.timestamp as time\r\nfrom test.git_json where event.repo =='Gitea' and event.repo != 'Github' SETTINGS describe_extend_object_types=1;",
"refId": "A"
}
],
"title": "Gitea push event",
"type": "table"
}
],
"title": "Gitea Events",
"type": "row"
},
{
"collapsed": false,
"datasource": null,
"gridPos": {
"h": 1,
"w": 24,
"x": 0,
"y": 2
},
"id": 2,
"panels": [],
"title": "Github Events",
"type": "row"
},
{
"datasource": null,
"description": "{\n \"action\": \"edited\",\n \"issue\": {\n \"url\": \"https://api.github.com/repos/Codertocat/Hello-World/issues/1\",\n \"repository_url\": \"https://api.github.com/repos/Codertocat/Hello-World\",\n \"labels_url\": \"https://api.github.com/repos/Codertocat/Hello-World/issues/1/labels{/name}\",\n \"comments_url\": \"https://api.github.com/repos/Codertocat/Hello-World/issues/1/comments\",\n \"events_url\": \"https://api.github.com/repos/Codertocat/Hello-World/issues/1/events\",\n \"html_url\": \"https://github.com/Codertocat/Hello-World/issues/1\",\n \"id\": 444500041,\n \"node_id\": \"MDU6SXNzdWU0NDQ1MDAwNDE=\",\n \"number\": 1,\n \"title\": \"Spelling error in the README file\",\n \"user\": {\n \"login\": \"Codertocat\",\n \"id\": 21031067,\n \"node_id\": \"MDQ6VXNlcjIxMDMxMDY3\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/21031067?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/Codertocat\",\n \"html_url\": \"https://github.com/Codertocat\",\n \"followers_url\": \"https://api.github.com/users/Codertocat/followers\",\n \"following_url\": \"https://api.github.com/users/Codertocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/Codertocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/Codertocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/Codertocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/Codertocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/Codertocat/repos\",\n \"events_url\": \"https://api.github.com/users/Codertocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/Codertocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"labels\": [\n {\n \"id\": 1362934389,\n \"node_id\": \"MDU6TGFiZWwxMzYyOTM0Mzg5\",\n \"url\": \"https://api.github.com/repos/Codertocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"color\": \"d73a4a\",\n \"default\": true\n }\n ],\n \"state\": \"open\",\n \"locked\": false,\n \"assignee\": {\n \"login\": \"Codertocat\",\n \"id\": 21031067,\n \"node_id\": \"MDQ6VXNlcjIxMDMxMDY3\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/21031067?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/Codertocat\",\n \"html_url\": \"https://github.com/Codertocat\",\n \"followers_url\": \"https://api.github.com/users/Codertocat/followers\",\n \"following_url\": \"https://api.github.com/users/Codertocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/Codertocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/Codertocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/Codertocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/Codertocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/Codertocat/repos\",\n \"events_url\": \"https://api.github.com/users/Codertocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/Codertocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"Codertocat\",\n \"id\": 21031067,\n \"node_id\": \"MDQ6VXNlcjIxMDMxMDY3\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/21031067?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/Codertocat\",\n \"html_url\": \"https://github.com/Codertocat\",\n \"followers_url\": \"https://api.github.com/users/Codertocat/followers\",\n \"following_url\": \"https://api.github.com/users/Codertocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/Codertocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/Codertocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/Codertocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/Codertocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/Codertocat/repos\",\n \"events_url\": \"https://api.github.com/users/Codertocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/Codertocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/Codertocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/Codertocat/Hello-World/milestone/1\",\n \"labels_url\": \"https://api.github.com/repos/Codertocat/Hello-World/milestones/1/labels\",\n \"id\": 4317517,\n \"node_id\": \"MDk6TWlsZXN0b25lNDMxNzUxNw==\",\n \"number\": 1,\n \"title\": \"v1.0\",\n \"description\": \"Add new space flight simulator\",\n \"creator\": {\n \"login\": \"Codertocat\",\n \"id\": 21031067,\n \"node_id\": \"MDQ6VXNlcjIxMDMxMDY3\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/21031067?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/Codertocat\",\n \"html_url\": \"https://github.com/Codertocat\",\n \"followers_url\": \"https://api.github.com/users/Codertocat/followers\",\n \"following_url\": \"https://api.github.com/users/Codertocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/Codertocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/Codertocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/Codertocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/Codertocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/Codertocat/repos\",\n \"events_url\": \"https://api.github.com/users/Codertocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/Codertocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 1,\n \"closed_issues\": 0,\n \"state\": \"closed\",\n \"created_at\": \"2019-05-15T15:20:17Z\",\n \"updated_at\": \"2019-05-15T15:20:18Z\",\n \"due_on\": \"2019-05-23T07:00:00Z\",\n \"closed_at\": \"2019-05-15T15:20:18Z\"\n },\n \"comments\": 0,\n \"created_at\": \"2019-05-15T15:20:18Z\",\n \"updated_at\": \"2019-05-15T15:20:18Z\",\n \"closed_at\": null,\n \"author_association\": \"OWNER\",\n \"body\": \"It looks like you accidently spelled 'commit' with two 't's.\"\n },\n \"changes\": {},\n \"repository\": {\n \"id\": 186853002,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxODY4NTMwMDI=\",\n \"name\": \"Hello-World\",\n \"full_name\": \"Codertocat/Hello-World\",\n \"private\": false,\n \"owner\": {\n \"login\": \"Codertocat\",\n \"id\": 21031067,\n \"node_id\": \"MDQ6VXNlcjIxMDMxMDY3\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/21031067?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/Codertocat\",\n \"html_url\": \"https://github.com/Codertocat\",\n \"followers_url\": \"https://api.github.com/users/Codertocat/followers\",\n \"following_url\": \"https://api.github.com/users/Codertocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/Codertocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/Codertocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/Codertocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/Codertocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/Codertocat/repos\",\n \"events_url\": \"https://api.github.com/users/Codertocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/Codertocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/Codertocat/Hello-World\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/Codertocat/Hello-World\",\n \"forks_url\": \"https://api.github.com/repos/Codertocat/Hello-World/forks\",\n \"keys_url\": \"https://api.github.com/repos/Codertocat/Hello-World/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/Codertocat/Hello-World/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/Codertocat/Hello-World/teams\",\n \"hooks_url\": \"https://api.github.com/repos/Codertocat/Hello-World/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/Codertocat/Hello-World/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/Codertocat/Hello-World/events\",\n \"assignees_url\": \"https://api.github.com/repos/Codertocat/Hello-World/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/Codertocat/Hello-World/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/Codertocat/Hello-World/tags\",\n \"blobs_url\": \"https://api.github.com/repos/Codertocat/Hello-World/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/Codertocat/Hello-World/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/Codertocat/Hello-World/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/Codertocat/Hello-World/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/Codertocat/Hello-World/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/Codertocat/Hello-World/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/Codertocat/Hello-World/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/Codertocat/Hello-World/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/Codertocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/Codertocat/Hello-World/subscription\",\n \"commits_url\": \"https://api.github.com/repos/Codertocat/Hello-World/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/Codertocat/Hello-World/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/Codertocat/Hello-World/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/Codertocat/Hello-World/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/Codertocat/Hello-World/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/Codertocat/Hello-World/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/Codertocat/Hello-World/merges\",\n \"archive_url\": \"https://api.github.com/repos/Codertocat/Hello-World/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/Codertocat/Hello-World/downloads\",\n \"issues_url\": \"https://api.github.com/repos/Codertocat/Hello-World/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/Codertocat/Hello-World/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/Codertocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/Codertocat/Hello-World/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/Codertocat/Hello-World/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/Codertocat/Hello-World/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/Codertocat/Hello-World/deployments\",\n \"created_at\": \"2019-05-15T15:19:25Z\",\n \"updated_at\": \"2019-05-15T15:19:27Z\",\n \"pushed_at\": \"2019-05-15T15:20:13Z\",\n \"git_url\": \"git://github.com/Codertocat/Hello-World.git\",\n \"ssh_url\": \"[email protected]:Codertocat/Hello-World.git\",\n \"clone_url\": \"https://github.com/Codertocat/Hello-World.git\",\n \"svn_url\": \"https://github.com/Codertocat/Hello-World\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": true,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": null,\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"sender\": {\n \"login\": \"Codertocat\",\n \"id\": 21031067,\n \"node_id\": \"MDQ6VXNlcjIxMDMxMDY3\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/21031067?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/Codertocat\",\n \"html_url\": \"https://github.com/Codertocat\",\n \"followers_url\": \"https://api.github.com/users/Codertocat/followers\",\n \"following_url\": \"https://api.github.com/users/Codertocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/Codertocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/Codertocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/Codertocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/Codertocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/Codertocat/repos\",\n \"events_url\": \"https://api.github.com/users/Codertocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/Codertocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}",
"fieldConfig": {
"defaults": {
"color": {
"mode": "thresholds"
},
"custom": {
"align": "auto",
"displayMode": "auto"
},
"mappings": [],
"thresholds": {
"mode": "absolute",
"steps": [
{
"color": "green",
"value": null
},
{
"color": "red",
"value": 80
}
]
}
},
"overrides": []
},
"gridPos": {
"h": 3,
"w": 24,
"x": 0,
"y": 3
},
"id": 38,
"options": {
"showHeader": true
},
"pluginVersion": "8.2.0",
"targets": [
{
"format": 1,
"meta": {
"builderOptions": {
"fields": [],
"limit": 100,
"mode": "list"
}
},
"queryType": "sql",
"rawSql": "select event.metrics.action as AlertAction,\r\nevent.metrics.issue.title as IssueTitle,\r\nevent.metrics.repository.name as RepoName,\r\nevent.metrics.issue.labels.name[1] as Label\r\nfrom test.git_json where event.repo == 'Github' and event.metrics.issue.title !='' SETTINGS describe_extend_object_types=1;",
"refId": "A"
}
],
"title": "Github Issue Event",
"transparent": true,
"type": "table"
},
{
"datasource": null,
"description": "{\n \"action\": \"create\",\n \"alert\": {\n \"id\": 91095730,\n \"affected_range\": \">= 2.0.4, < 2.0.6\",\n \"affected_package_name\": \"rack\",\n \"fixed_in\": \"2.0.6\",\n \"external_reference\": \"https://nvd.nist.gov/vuln/detail/CVE-2018-16470\",\n \"external_identifier\": \"CVE-2018-16470\",\n \"severity\": \"moderate\",\n \"ghsa_id\": \"GHSA-hg78-4f6x-99wq\",\n \"created_at\": \"2021-03-01T01:23:45Z\"\n },\n \"repository\": {\n \"id\": 186853002,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxODY4NTMwMDI=\",\n \"name\": \"Hello-World\",\n \"full_name\": \"Codertocat/Hello-World\",\n \"private\": false,\n \"owner\": {\n \"login\": \"Codertocat\",\n \"id\": 21031067,\n \"node_id\": \"MDQ6VXNlcjIxMDMxMDY3\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/21031067?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/Codertocat\",\n \"html_url\": \"https://github.com/Codertocat\",\n \"followers_url\": \"https://api.github.com/users/Codertocat/followers\",\n \"following_url\": \"https://api.github.com/users/Codertocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/Codertocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/Codertocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/Codertocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/Codertocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/Codertocat/repos\",\n \"events_url\": \"https://api.github.com/users/Codertocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/Codertocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/Codertocat/Hello-World\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/Codertocat/Hello-World\",\n \"forks_url\": \"https://api.github.com/repos/Codertocat/Hello-World/forks\",\n \"keys_url\": \"https://api.github.com/repos/Codertocat/Hello-World/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/Codertocat/Hello-World/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/Codertocat/Hello-World/teams\",\n \"hooks_url\": \"https://api.github.com/repos/Codertocat/Hello-World/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/Codertocat/Hello-World/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/Codertocat/Hello-World/events\",\n \"assignees_url\": \"https://api.github.com/repos/Codertocat/Hello-World/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/Codertocat/Hello-World/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/Codertocat/Hello-World/tags\",\n \"blobs_url\": \"https://api.github.com/repos/Codertocat/Hello-World/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/Codertocat/Hello-World/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/Codertocat/Hello-World/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/Codertocat/Hello-World/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/Codertocat/Hello-World/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/Codertocat/Hello-World/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/Codertocat/Hello-World/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/Codertocat/Hello-World/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/Codertocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/Codertocat/Hello-World/subscription\",\n \"commits_url\": \"https://api.github.com/repos/Codertocat/Hello-World/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/Codertocat/Hello-World/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/Codertocat/Hello-World/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/Codertocat/Hello-World/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/Codertocat/Hello-World/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/Codertocat/Hello-World/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/Codertocat/Hello-World/merges\",\n \"archive_url\": \"https://api.github.com/repos/Codertocat/Hello-World/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/Codertocat/Hello-World/downloads\",\n \"issues_url\": \"https://api.github.com/repos/Codertocat/Hello-World/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/Codertocat/Hello-World/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/Codertocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/Codertocat/Hello-World/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/Codertocat/Hello-World/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/Codertocat/Hello-World/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/Codertocat/Hello-World/deployments\",\n \"created_at\": \"2019-05-15T15:19:25Z\",\n \"updated_at\": \"2019-05-15T15:19:27Z\",\n \"pushed_at\": \"2019-05-15T15:20:32Z\",\n \"git_url\": \"git://github.com/Codertocat/Hello-World.git\",\n \"ssh_url\": \"[email protected]:Codertocat/Hello-World.git\",\n \"clone_url\": \"https://github.com/Codertocat/Hello-World.git\",\n \"svn_url\": \"https://github.com/Codertocat/Hello-World\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": true,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 2,\n \"license\": null,\n \"forks\": 0,\n \"open_issues\": 2,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"sender\": {\n \"login\": \"github\",\n \"id\": 9919,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjk5MTk=\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/9919?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/github\",\n \"html_url\": \"https://github.com/github\",\n \"followers_url\": \"https://api.github.com/users/github/followers\",\n \"following_url\": \"https://api.github.com/users/github/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/github/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/github/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/github/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/github/orgs\",\n \"repos_url\": \"https://api.github.com/users/github/repos\",\n \"events_url\": \"https://api.github.com/users/github/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/github/received_events\",\n \"type\": \"Organization\",\n \"site_admin\": false\n }\n}",
"fieldConfig": {
"defaults": {
"color": {
"mode": "thresholds"
},
"custom": {
"align": "auto",
"displayMode": "auto"
},
"mappings": [],
"thresholds": {
"mode": "absolute",
"steps": [
{
"color": "green",
"value": null
},
{
"color": "red",
"value": 80
}
]
}
},
"overrides": []
},
"gridPos": {
"h": 4,
"w": 24,
"x": 0,
"y": 6
},
"id": 36,
"options": {
"showHeader": true
},
"pluginVersion": "8.2.0",
"targets": [
{
"format": 1,
"meta": {
"builderOptions": {
"fields": [],
"limit": 100,
"mode": "list"
}
},
"queryType": "sql",
"rawSql": "select event.metrics.action as AlertAction,\r\nevent.metrics.alert.created_at as AlertTime,\r\nevent.metrics.repository.name as RepoName\r\nfrom test.git_json where event.repo == 'Github' and event.metrics.alert.created_at !='' SETTINGS describe_extend_object_types=1;",
"refId": "A"
}
],
"title": "Github repository_vulnerability_alert",
"type": "table"
},
{
"datasource": null,
"description": "{\n \"action\": \"added\",\n \"member\": {\n \"login\": \"hacktocat\",\n \"id\": 39652351,\n \"node_id\": \"MDQ6VXNlcjM5NjUyMzUx\",\n \"avatar_url\": \"https://avatars2.githubusercontent.com/u/39652351?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/hacktocat\",\n \"html_url\": \"https://github.com/hacktocat\",\n \"followers_url\": \"https://api.github.com/users/hacktocat/followers\",\n \"following_url\": \"https://api.github.com/users/hacktocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/hacktocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/hacktocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/hacktocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/hacktocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/hacktocat/repos\",\n \"events_url\": \"https://api.github.com/users/hacktocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/hacktocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repository\": {\n \"id\": 186853002,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxODY4NTMwMDI=\",\n \"name\": \"Hello-World\",\n \"full_name\": \"Codertocat/Hello-World\",\n \"private\": false,\n \"owner\": {\n \"login\": \"Codertocat\",\n \"id\": 21031067,\n \"node_id\": \"MDQ6VXNlcjIxMDMxMDY3\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/21031067?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/Codertocat\",\n \"html_url\": \"https://github.com/Codertocat\",\n \"followers_url\": \"https://api.github.com/users/Codertocat/followers\",\n \"following_url\": \"https://api.github.com/users/Codertocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/Codertocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/Codertocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/Codertocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/Codertocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/Codertocat/repos\",\n \"events_url\": \"https://api.github.com/users/Codertocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/Codertocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/Codertocat/Hello-World\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/Codertocat/Hello-World\",\n \"forks_url\": \"https://api.github.com/repos/Codertocat/Hello-World/forks\",\n \"keys_url\": \"https://api.github.com/repos/Codertocat/Hello-World/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/Codertocat/Hello-World/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/Codertocat/Hello-World/teams\",\n \"hooks_url\": \"https://api.github.com/repos/Codertocat/Hello-World/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/Codertocat/Hello-World/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/Codertocat/Hello-World/events\",\n \"assignees_url\": \"https://api.github.com/repos/Codertocat/Hello-World/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/Codertocat/Hello-World/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/Codertocat/Hello-World/tags\",\n \"blobs_url\": \"https://api.github.com/repos/Codertocat/Hello-World/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/Codertocat/Hello-World/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/Codertocat/Hello-World/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/Codertocat/Hello-World/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/Codertocat/Hello-World/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/Codertocat/Hello-World/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/Codertocat/Hello-World/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/Codertocat/Hello-World/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/Codertocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/Codertocat/Hello-World/subscription\",\n \"commits_url\": \"https://api.github.com/repos/Codertocat/Hello-World/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/Codertocat/Hello-World/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/Codertocat/Hello-World/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/Codertocat/Hello-World/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/Codertocat/Hello-World/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/Codertocat/Hello-World/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/Codertocat/Hello-World/merges\",\n \"archive_url\": \"https://api.github.com/repos/Codertocat/Hello-World/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/Codertocat/Hello-World/downloads\",\n \"issues_url\": \"https://api.github.com/repos/Codertocat/Hello-World/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/Codertocat/Hello-World/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/Codertocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/Codertocat/Hello-World/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/Codertocat/Hello-World/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/Codertocat/Hello-World/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/Codertocat/Hello-World/deployments\",\n \"created_at\": \"2019-05-15T15:19:25Z\",\n \"updated_at\": \"2019-05-15T15:20:41Z\",\n \"pushed_at\": \"2019-05-15T15:20:57Z\",\n \"git_url\": \"git://github.com/Codertocat/Hello-World.git\",\n \"ssh_url\": \"[email protected]:Codertocat/Hello-World.git\",\n \"clone_url\": \"https://github.com/Codertocat/Hello-World.git\",\n \"svn_url\": \"https://github.com/Codertocat/Hello-World\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"Ruby\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": true,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 2,\n \"license\": null,\n \"forks\": 1,\n \"open_issues\": 2,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"sender\": {\n \"login\": \"hacktocat\",\n \"id\": 39652351,\n \"node_id\": \"MDQ6VXNlcjM5NjUyMzUx\",\n \"avatar_url\": \"https://avatars2.githubusercontent.com/u/39652351?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/hacktocat\",\n \"html_url\": \"https://github.com/hacktocat\",\n \"followers_url\": \"https://api.github.com/users/hacktocat/followers\",\n \"following_url\": \"https://api.github.com/users/hacktocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/hacktocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/hacktocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/hacktocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/hacktocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/hacktocat/repos\",\n \"events_url\": \"https://api.github.com/users/hacktocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/hacktocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}",
"fieldConfig": {
"defaults": {
"color": {
"mode": "thresholds"
},
"custom": {
"align": "auto",
"displayMode": "auto"
},
"mappings": [],
"thresholds": {
"mode": "absolute",
"steps": [
{
"color": "green",
"value": null
},
{
"color": "red",
"value": 80
}
]
}
},
"overrides": []
},
"gridPos": {
"h": 4,
"w": 24,
"x": 0,
"y": 10
},
"id": 34,
"options": {
"showHeader": true
},
"pluginVersion": "8.2.0",
"targets": [
{
"format": 1,
"meta": {
"builderOptions": {
"fields": [],
"limit": 100,
"mode": "list"
}
},
"queryType": "sql",
"rawSql": "select event.metrics.action as MemberAction,\r\nevent.metrics.repository.name as RepoName,\r\nevent.metrics.member.login as AddedMember\r\nfrom test.git_json where event.repo == 'Github' and event.metrics.member.login !='' SETTINGS describe_extend_object_types=1;",
"refId": "A"
}
],
"title": "Github Member Event",
"transparent": true,
"type": "table"
},
{
"datasource": null,
"description": "{\n \"team\": {\n \"name\": \"github\",\n \"id\": 3253328,\n \"node_id\": \"MDQ6VGVhbTMyNTMzMjg=\",\n \"slug\": \"github\",\n \"description\": \"Open-source team\",\n \"privacy\": \"secret\",\n \"url\": \"https://api.github.com/teams/3253328\",\n \"html_url\": \"https://github.com/orgs/Octocoders/teams/github\",\n \"members_url\": \"https://api.github.com/teams/3253328/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/3253328/repos\",\n \"permission\": \"pull\"\n },\n \"repository\": {\n \"id\": 186853261,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxODY4NTMyNjE=\",\n \"name\": \"Hello-World\",\n \"full_name\": \"Octocoders/Hello-World\",\n \"private\": false,\n \"owner\": {\n \"login\": \"Octocoders\",\n \"id\": 38302899,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjM4MzAyODk5\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/38302899?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/Octocoders\",\n \"html_url\": \"https://github.com/Octocoders\",\n \"followers_url\": \"https://api.github.com/users/Octocoders/followers\",\n \"following_url\": \"https://api.github.com/users/Octocoders/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/Octocoders/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/Octocoders/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/Octocoders/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/Octocoders/orgs\",\n \"repos_url\": \"https://api.github.com/users/Octocoders/repos\",\n \"events_url\": \"https://api.github.com/users/Octocoders/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/Octocoders/received_events\",\n \"type\": \"Organization\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/Octocoders/Hello-World\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/Octocoders/Hello-World\",\n \"forks_url\": \"https://api.github.com/repos/Octocoders/Hello-World/forks\",\n \"keys_url\": \"https://api.github.com/repos/Octocoders/Hello-World/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/Octocoders/Hello-World/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/Octocoders/Hello-World/teams\",\n \"hooks_url\": \"https://api.github.com/repos/Octocoders/Hello-World/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/Octocoders/Hello-World/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/Octocoders/Hello-World/events\",\n \"assignees_url\": \"https://api.github.com/repos/Octocoders/Hello-World/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/Octocoders/Hello-World/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/Octocoders/Hello-World/tags\",\n \"blobs_url\": \"https://api.github.com/repos/Octocoders/Hello-World/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/Octocoders/Hello-World/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/Octocoders/Hello-World/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/Octocoders/Hello-World/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/Octocoders/Hello-World/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/Octocoders/Hello-World/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/Octocoders/Hello-World/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/Octocoders/Hello-World/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/Octocoders/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/Octocoders/Hello-World/subscription\",\n \"commits_url\": \"https://api.github.com/repos/Octocoders/Hello-World/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/Octocoders/Hello-World/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/Octocoders/Hello-World/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/Octocoders/Hello-World/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/Octocoders/Hello-World/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/Octocoders/Hello-World/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/Octocoders/Hello-World/merges\",\n \"archive_url\": \"https://api.github.com/repos/Octocoders/Hello-World/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/Octocoders/Hello-World/downloads\",\n \"issues_url\": \"https://api.github.com/repos/Octocoders/Hello-World/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/Octocoders/Hello-World/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/Octocoders/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/Octocoders/Hello-World/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/Octocoders/Hello-World/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/Octocoders/Hello-World/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/Octocoders/Hello-World/deployments\",\n \"created_at\": \"2019-05-15T15:20:42Z\",\n \"updated_at\": \"2019-05-15T15:20:45Z\",\n \"pushed_at\": \"2019-05-15T15:20:33Z\",\n \"git_url\": \"git://github.com/Octocoders/Hello-World.git\",\n \"ssh_url\": \"[email protected]:Octocoders/Hello-World.git\",\n \"clone_url\": \"https://github.com/Octocoders/Hello-World.git\",\n \"svn_url\": \"https://github.com/Octocoders/Hello-World\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"Ruby\",\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": null,\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"organization\": {\n \"login\": \"Octocoders\",\n \"id\": 38302899,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjM4MzAyODk5\",\n \"url\": \"https://api.github.com/orgs/Octocoders\",\n \"repos_url\": \"https://api.github.com/orgs/Octocoders/repos\",\n \"events_url\": \"https://api.github.com/orgs/Octocoders/events\",\n \"hooks_url\": \"https://api.github.com/orgs/Octocoders/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/Octocoders/issues\",\n \"members_url\": \"https://api.github.com/orgs/Octocoders/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/Octocoders/public_members{/member}\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/38302899?v=4\",\n \"description\": \"\"\n },\n \"sender\": {\n \"login\": \"Octocoders\",\n \"id\": 38302899,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjM4MzAyODk5\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/38302899?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/Octocoders\",\n \"html_url\": \"https://github.com/Octocoders\",\n \"followers_url\": \"https://api.github.com/users/Octocoders/followers\",\n \"following_url\": \"https://api.github.com/users/Octocoders/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/Octocoders/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/Octocoders/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/Octocoders/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/Octocoders/orgs\",\n \"repos_url\": \"https://api.github.com/users/Octocoders/repos\",\n \"events_url\": \"https://api.github.com/users/Octocoders/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/Octocoders/received_events\",\n \"type\": \"Organization\",\n \"site_admin\": false\n }\n}",
"fieldConfig": {
"defaults": {
"color": {
"mode": "thresholds"
},
"custom": {
"align": "auto",
"displayMode": "auto"
},
"mappings": [],
"thresholds": {
"mode": "absolute",
"steps": [
{
"color": "green",
"value": null
},
{
"color": "red",
"value": 80
}
]
}
},
"overrides": []
},
"gridPos": {
"h": 3,
"w": 24,
"x": 0,
"y": 14
},
"id": 32,
"options": {
"showHeader": true
},
"pluginVersion": "8.2.0",
"targets": [
{
"format": 1,
"meta": {
"builderOptions": {
"fields": [],
"limit": 100,
"mode": "list"
}
},
"queryType": "sql",
"rawSql": "select event.metrics.team.name as TeamName,\r\nevent.metrics.repository.name as RepoName,\r\nevent.metrics.sender.login as Author\r\nfrom test.git_json where event.repo == 'Github' and event.metrics.team.name !='' SETTINGS describe_extend_object_types=1;",
"refId": "A"
}
],
"title": "Github Team Add Event",
"transparent": true,
"type": "table"
},
{
"datasource": null,
"description": "{\n \"action\": \"created\",\n \"starred_at\": \"2019-05-15T15:20:40Z\",\n \"repository\": {\n \"id\": 186853002,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxODY4NTMwMDI=\",\n \"name\": \"Hello-World\",\n \"full_name\": \"Codertocat/Hello-World\",\n \"private\": false,\n \"owner\": {\n \"login\": \"Codertocat\",\n \"id\": 21031067,\n \"node_id\": \"MDQ6VXNlcjIxMDMxMDY3\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/21031067?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/Codertocat\",\n \"html_url\": \"https://github.com/Codertocat\",\n \"followers_url\": \"https://api.github.com/users/Codertocat/followers\",\n \"following_url\": \"https://api.github.com/users/Codertocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/Codertocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/Codertocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/Codertocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/Codertocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/Codertocat/repos\",\n \"events_url\": \"https://api.github.com/users/Codertocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/Codertocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/Codertocat/Hello-World\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/Codertocat/Hello-World\",\n \"forks_url\": \"https://api.github.com/repos/Codertocat/Hello-World/forks\",\n \"keys_url\": \"https://api.github.com/repos/Codertocat/Hello-World/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/Codertocat/Hello-World/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/Codertocat/Hello-World/teams\",\n \"hooks_url\": \"https://api.github.com/repos/Codertocat/Hello-World/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/Codertocat/Hello-World/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/Codertocat/Hello-World/events\",\n \"assignees_url\": \"https://api.github.com/repos/Codertocat/Hello-World/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/Codertocat/Hello-World/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/Codertocat/Hello-World/tags\",\n \"blobs_url\": \"https://api.github.com/repos/Codertocat/Hello-World/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/Codertocat/Hello-World/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/Codertocat/Hello-World/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/Codertocat/Hello-World/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/Codertocat/Hello-World/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/Codertocat/Hello-World/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/Codertocat/Hello-World/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/Codertocat/Hello-World/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/Codertocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/Codertocat/Hello-World/subscription\",\n \"commits_url\": \"https://api.github.com/repos/Codertocat/Hello-World/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/Codertocat/Hello-World/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/Codertocat/Hello-World/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/Codertocat/Hello-World/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/Codertocat/Hello-World/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/Codertocat/Hello-World/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/Codertocat/Hello-World/merges\",\n \"archive_url\": \"https://api.github.com/repos/Codertocat/Hello-World/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/Codertocat/Hello-World/downloads\",\n \"issues_url\": \"https://api.github.com/repos/Codertocat/Hello-World/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/Codertocat/Hello-World/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/Codertocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/Codertocat/Hello-World/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/Codertocat/Hello-World/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/Codertocat/Hello-World/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/Codertocat/Hello-World/deployments\",\n \"created_at\": \"2019-05-15T15:19:25Z\",\n \"updated_at\": \"2019-05-15T15:20:40Z\",\n \"pushed_at\": \"2019-05-15T15:20:33Z\",\n \"git_url\": \"git://github.com/Codertocat/Hello-World.git\",\n \"ssh_url\": \"[email protected]:Codertocat/Hello-World.git\",\n \"clone_url\": \"https://github.com/Codertocat/Hello-World.git\",\n \"svn_url\": \"https://github.com/Codertocat/Hello-World\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 1,\n \"watchers_count\": 1,\n \"language\": \"Ruby\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": true,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 2,\n \"license\": null,\n \"forks\": 0,\n \"open_issues\": 2,\n \"watchers\": 1,\n \"default_branch\": \"master\"\n },\n \"sender\": {\n \"login\": \"Codertocat\",\n \"id\": 21031067,\n \"node_id\": \"MDQ6VXNlcjIxMDMxMDY3\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/21031067?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/Codertocat\",\n \"html_url\": \"https://github.com/Codertocat\",\n \"followers_url\": \"https://api.github.com/users/Codertocat/followers\",\n \"following_url\": \"https://api.github.com/users/Codertocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/Codertocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/Codertocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/Codertocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/Codertocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/Codertocat/repos\",\n \"events_url\": \"https://api.github.com/users/Codertocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/Codertocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}",
"fieldConfig": {
"defaults": {
"color": {
"mode": "thresholds"
},
"custom": {
"align": "auto",
"displayMode": "auto"
},
"mappings": [],
"thresholds": {
"mode": "absolute",
"steps": [
{
"color": "green",
"value": null
},
{
"color": "red",
"value": 80
}
]
}
},
"overrides": []
},
"gridPos": {
"h": 4,
"w": 24,
"x": 0,
"y": 17
},
"id": 30,
"options": {
"showHeader": true
},
"pluginVersion": "8.2.0",
"targets": [
{
"format": 1,
"meta": {
"builderOptions": {
"fields": [],
"limit": 100,
"mode": "list"
}
},
"queryType": "sql",
"rawSql": "select event.metrics.action as StarAction,\r\nevent.metrics.repository.name as RepoName,\r\nevent.metrics.starred_at as StarredAt,\r\nevent.metrics.sender.login as Author\r\nfrom test.git_json where event.repo == 'Github' and event.metrics.starred_at !='' SETTINGS describe_extend_object_types=1;",
"refId": "A"
}
],
"title": "Github Starred Event",
"transparent": true,
"type": "table"
},
{
"datasource": null,
"description": "{\n \"action\": \"created\",\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/Codertocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/Codertocat/Hello-World/milestone/1\",\n \"labels_url\": \"https://api.github.com/repos/Codertocat/Hello-World/milestones/1/labels\",\n \"id\": 4317517,\n \"node_id\": \"MDk6TWlsZXN0b25lNDMxNzUxNw==\",\n \"number\": 1,\n \"title\": \"v1.0\",\n \"description\": \"Add new space flight simulator\",\n \"creator\": {\n \"login\": \"Codertocat\",\n \"id\": 21031067,\n \"node_id\": \"MDQ6VXNlcjIxMDMxMDY3\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/21031067?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/Codertocat\",\n \"html_url\": \"https://github.com/Codertocat\",\n \"followers_url\": \"https://api.github.com/users/Codertocat/followers\",\n \"following_url\": \"https://api.github.com/users/Codertocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/Codertocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/Codertocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/Codertocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/Codertocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/Codertocat/repos\",\n \"events_url\": \"https://api.github.com/users/Codertocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/Codertocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 0,\n \"closed_issues\": 0,\n \"state\": \"open\",\n \"created_at\": \"2019-05-15T15:20:17Z\",\n \"updated_at\": \"2019-05-15T15:20:17Z\",\n \"due_on\": \"2019-05-23T07:00:00Z\",\n \"closed_at\": null\n },\n \"repository\": {\n \"id\": 186853002,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxODY4NTMwMDI=\",\n \"name\": \"Hello-World\",\n \"full_name\": \"Codertocat/Hello-World\",\n \"private\": false,\n \"owner\": {\n \"login\": \"Codertocat\",\n \"id\": 21031067,\n \"node_id\": \"MDQ6VXNlcjIxMDMxMDY3\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/21031067?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/Codertocat\",\n \"html_url\": \"https://github.com/Codertocat\",\n \"followers_url\": \"https://api.github.com/users/Codertocat/followers\",\n \"following_url\": \"https://api.github.com/users/Codertocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/Codertocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/Codertocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/Codertocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/Codertocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/Codertocat/repos\",\n \"events_url\": \"https://api.github.com/users/Codertocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/Codertocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/Codertocat/Hello-World\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/Codertocat/Hello-World\",\n \"forks_url\": \"https://api.github.com/repos/Codertocat/Hello-World/forks\",\n \"keys_url\": \"https://api.github.com/repos/Codertocat/Hello-World/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/Codertocat/Hello-World/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/Codertocat/Hello-World/teams\",\n \"hooks_url\": \"https://api.github.com/repos/Codertocat/Hello-World/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/Codertocat/Hello-World/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/Codertocat/Hello-World/events\",\n \"assignees_url\": \"https://api.github.com/repos/Codertocat/Hello-World/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/Codertocat/Hello-World/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/Codertocat/Hello-World/tags\",\n \"blobs_url\": \"https://api.github.com/repos/Codertocat/Hello-World/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/Codertocat/Hello-World/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/Codertocat/Hello-World/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/Codertocat/Hello-World/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/Codertocat/Hello-World/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/Codertocat/Hello-World/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/Codertocat/Hello-World/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/Codertocat/Hello-World/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/Codertocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/Codertocat/Hello-World/subscription\",\n \"commits_url\": \"https://api.github.com/repos/Codertocat/Hello-World/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/Codertocat/Hello-World/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/Codertocat/Hello-World/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/Codertocat/Hello-World/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/Codertocat/Hello-World/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/Codertocat/Hello-World/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/Codertocat/Hello-World/merges\",\n \"archive_url\": \"https://api.github.com/repos/Codertocat/Hello-World/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/Codertocat/Hello-World/downloads\",\n \"issues_url\": \"https://api.github.com/repos/Codertocat/Hello-World/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/Codertocat/Hello-World/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/Codertocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/Codertocat/Hello-World/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/Codertocat/Hello-World/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/Codertocat/Hello-World/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/Codertocat/Hello-World/deployments\",\n \"created_at\": \"2019-05-15T15:19:25Z\",\n \"updated_at\": \"2019-05-15T15:19:27Z\",\n \"pushed_at\": \"2019-05-15T15:20:13Z\",\n \"git_url\": \"git://github.com/Codertocat/Hello-World.git\",\n \"ssh_url\": \"[email protected]:Codertocat/Hello-World.git\",\n \"clone_url\": \"https://github.com/Codertocat/Hello-World.git\",\n \"svn_url\": \"https://github.com/Codertocat/Hello-World\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": true,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": null,\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"sender\": {\n \"login\": \"Codertocat\",\n \"id\": 21031067,\n \"node_id\": \"MDQ6VXNlcjIxMDMxMDY3\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/21031067?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/Codertocat\",\n \"html_url\": \"https://github.com/Codertocat\",\n \"followers_url\": \"https://api.github.com/users/Codertocat/followers\",\n \"following_url\": \"https://api.github.com/users/Codertocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/Codertocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/Codertocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/Codertocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/Codertocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/Codertocat/repos\",\n \"events_url\": \"https://api.github.com/users/Codertocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/Codertocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}",
"fieldConfig": {
"defaults": {
"color": {
"mode": "thresholds"
},
"custom": {
"align": "auto",
"displayMode": "auto"
},
"mappings": [],
"thresholds": {
"mode": "absolute",
"steps": [
{
"color": "green",
"value": null
},
{
"color": "red",
"value": 80
}
]
}
},
"overrides": []
},
"gridPos": {
"h": 5,
"w": 24,
"x": 0,
"y": 21
},
"id": 28,
"options": {
"showHeader": true
},
"pluginVersion": "8.2.0",
"targets": [
{
"format": 1,
"meta": {
"builderOptions": {
"fields": [],
"limit": 100,
"mode": "list"
}
},
"queryType": "sql",
"rawSql": "select event.metrics.action as MilestoneAction,\r\nevent.metrics.repository.name as RepoName,\r\nevent.metrics.milestone.description as Description,\r\nevent.metrics.sender.login as Author\r\nfrom test.git_json where event.repo == 'Github' and event.metrics.milestone.description !='' SETTINGS describe_extend_object_types=1;",
"refId": "A"
}
],
"title": "Github Milestone Event",
"transparent": true,
"type": "table"
},
{
"datasource": null,
"description": "{\n \"action\": \"deleted\",\n \"label\": {\n \"id\": 1362937026,\n \"node_id\": \"MDU6TGFiZWwxMzYyOTM3MDI2\",\n \"url\": \"https://api.github.com/repos/Codertocat/Hello-World/labels/:bug:%20Bugfix\",\n \"name\": \":bug: Bugfix\",\n \"color\": \"cceeaa\",\n \"default\": false\n },\n \"repository\": {\n \"id\": 186853002,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxODY4NTMwMDI=\",\n \"name\": \"Hello-World\",\n \"full_name\": \"Codertocat/Hello-World\",\n \"private\": false,\n \"owner\": {\n \"login\": \"Codertocat\",\n \"id\": 21031067,\n \"node_id\": \"MDQ6VXNlcjIxMDMxMDY3\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/21031067?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/Codertocat\",\n \"html_url\": \"https://github.com/Codertocat\",\n \"followers_url\": \"https://api.github.com/users/Codertocat/followers\",\n \"following_url\": \"https://api.github.com/users/Codertocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/Codertocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/Codertocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/Codertocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/Codertocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/Codertocat/repos\",\n \"events_url\": \"https://api.github.com/users/Codertocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/Codertocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/Codertocat/Hello-World\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/Codertocat/Hello-World\",\n \"forks_url\": \"https://api.github.com/repos/Codertocat/Hello-World/forks\",\n \"keys_url\": \"https://api.github.com/repos/Codertocat/Hello-World/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/Codertocat/Hello-World/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/Codertocat/Hello-World/teams\",\n \"hooks_url\": \"https://api.github.com/repos/Codertocat/Hello-World/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/Codertocat/Hello-World/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/Codertocat/Hello-World/events\",\n \"assignees_url\": \"https://api.github.com/repos/Codertocat/Hello-World/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/Codertocat/Hello-World/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/Codertocat/Hello-World/tags\",\n \"blobs_url\": \"https://api.github.com/repos/Codertocat/Hello-World/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/Codertocat/Hello-World/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/Codertocat/Hello-World/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/Codertocat/Hello-World/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/Codertocat/Hello-World/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/Codertocat/Hello-World/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/Codertocat/Hello-World/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/Codertocat/Hello-World/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/Codertocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/Codertocat/Hello-World/subscription\",\n \"commits_url\": \"https://api.github.com/repos/Codertocat/Hello-World/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/Codertocat/Hello-World/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/Codertocat/Hello-World/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/Codertocat/Hello-World/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/Codertocat/Hello-World/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/Codertocat/Hello-World/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/Codertocat/Hello-World/merges\",\n \"archive_url\": \"https://api.github.com/repos/Codertocat/Hello-World/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/Codertocat/Hello-World/downloads\",\n \"issues_url\": \"https://api.github.com/repos/Codertocat/Hello-World/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/Codertocat/Hello-World/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/Codertocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/Codertocat/Hello-World/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/Codertocat/Hello-World/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/Codertocat/Hello-World/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/Codertocat/Hello-World/deployments\",\n \"created_at\": \"2019-05-15T15:19:25Z\",\n \"updated_at\": \"2019-05-15T15:21:03Z\",\n \"pushed_at\": \"2019-05-15T15:20:57Z\",\n \"git_url\": \"git://github.com/Codertocat/Hello-World.git\",\n \"ssh_url\": \"[email protected]:Codertocat/Hello-World.git\",\n \"clone_url\": \"https://github.com/Codertocat/Hello-World.git\",\n \"svn_url\": \"https://github.com/Codertocat/Hello-World\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"Ruby\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": true,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 2,\n \"license\": null,\n \"forks\": 1,\n \"open_issues\": 2,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"sender\": {\n \"login\": \"Codertocat\",\n \"id\": 21031067,\n \"node_id\": \"MDQ6VXNlcjIxMDMxMDY3\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/21031067?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/Codertocat\",\n \"html_url\": \"https://github.com/Codertocat\",\n \"followers_url\": \"https://api.github.com/users/Codertocat/followers\",\n \"following_url\": \"https://api.github.com/users/Codertocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/Codertocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/Codertocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/Codertocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/Codertocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/Codertocat/repos\",\n \"events_url\": \"https://api.github.com/users/Codertocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/Codertocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}",
"fieldConfig": {
"defaults": {
"color": {
"mode": "thresholds"
},
"custom": {
"align": "auto",
"displayMode": "auto"
},
"mappings": [],
"thresholds": {
"mode": "absolute",
"steps": [
{
"color": "green",
"value": null
},
{
"color": "red",
"value": 80
}
]
}
},
"overrides": []
},
"gridPos": {
"h": 4,
"w": 24,
"x": 0,
"y": 26
},
"id": 26,
"options": {
"showHeader": true
},
"pluginVersion": "8.2.0",
"targets": [
{
"format": 1,
"meta": {
"builderOptions": {
"fields": [],