-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_deploy_data.json
6423 lines (6423 loc) · 446 KB
/
test_deploy_data.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
{
"status": "success",
"data": {
"resultType": "streams",
"result": [
{
"stream": {
"deployment_environment_name": "root",
"deployment_id": "1784526925",
"deployment_status": "failure",
"environment_name": "dev",
"event_name": "deployment_created",
"loki_resource_labels": "service.name, service.namespace",
"receiver": "webhookevent",
"scope_name": "otlp/webhookevent",
"scope_version": "1.0.0",
"service_name": "vault-terraform",
"service_namespace": "github",
"source": "webhookevent",
"team_name": "tag-k8s",
"vcs_repository_name": "vault-terraform",
"vcs_repository_owner": "liatrio",
"vcs_repository_ref_revision": "08bc87cf41e805e319fa9857e501d76e318cdb07",
"vcs_repository_url_full": "https://github.com/liatrio/vault-terraform"
},
"values": [
[
"1725903315689116127",
"{\"action\":\"created\",\"deployment\":{\"created_at\":\"2024-09-09T17:34:12Z\",\"environment\":\"root\",\"id\":1784526925,\"ref\":\"main\",\"sha\":\"08bc87cf41e805e319fa9857e501d76e318cdb07\",\"task\":\"deploy\",\"updated_at\":\"2024-09-09T17:35:14Z\",\"url\":\"https://api.github.com/repos/liatrio/vault-terraform/deployments/1784526925\"},\"deployment_status\":{\"environment\":\"root\",\"state\":\"failure\",\"url\":\"https://api.github.com/repos/liatrio/vault-terraform/deployments/1784526925/statuses/4509850882\"},\"repository\":{\"custom_properties\":{},\"full_name\":\"liatrio/vault-terraform\",\"html_url\":\"https://github.com/liatrio/vault-terraform\",\"name\":\"vault-terraform\",\"owner\":{\"login\":\"liatrio\"}},\"workflow\":{\"name\":\"Onboarding\",\"path\":\".github/workflows/onboarding.yaml\",\"url\":\"https://api.github.com/repos/liatrio/vault-terraform/actions/workflows/85817187\"}}"
]
]
},
{
"stream": {
"deployment_environment_name": "root",
"deployment_id": "1784514831",
"deployment_status": "failure",
"environment_name": "dev",
"event_name": "deployment_created",
"loki_resource_labels": "service.name, service.namespace",
"receiver": "webhookevent",
"scope_name": "otlp/webhookevent",
"scope_version": "1.0.0",
"service_name": "vault-terraform",
"service_namespace": "github",
"source": "webhookevent",
"team_name": "tag-k8s",
"vcs_repository_name": "vault-terraform",
"vcs_repository_owner": "liatrio",
"vcs_repository_ref_revision": "08bc87cf41e805e319fa9857e501d76e318cdb07",
"vcs_repository_url_full": "https://github.com/liatrio/vault-terraform"
},
"values": [
[
"1725903048751547479",
"{\"action\":\"created\",\"deployment\":{\"created_at\":\"2024-09-09T17:29:41Z\",\"environment\":\"root\",\"id\":1784514831,\"ref\":\"main\",\"sha\":\"08bc87cf41e805e319fa9857e501d76e318cdb07\",\"task\":\"deploy\",\"updated_at\":\"2024-09-09T17:30:47Z\",\"url\":\"https://api.github.com/repos/liatrio/vault-terraform/deployments/1784514831\"},\"deployment_status\":{\"environment\":\"root\",\"state\":\"failure\",\"url\":\"https://api.github.com/repos/liatrio/vault-terraform/deployments/1784514831/statuses/4509814947\"},\"repository\":{\"custom_properties\":{},\"full_name\":\"liatrio/vault-terraform\",\"html_url\":\"https://github.com/liatrio/vault-terraform\",\"name\":\"vault-terraform\",\"owner\":{\"login\":\"liatrio\"}},\"workflow\":{\"name\":\"Onboarding\",\"path\":\".github/workflows/onboarding.yaml\",\"url\":\"https://api.github.com/repos/liatrio/vault-terraform/actions/workflows/85817187\"}}"
]
]
},
{
"stream": {
"deployment_environment_name": "root",
"deployment_id": "1784506890",
"deployment_status": "failure",
"environment_name": "dev",
"event_name": "deployment_created",
"loki_resource_labels": "service.name, service.namespace",
"receiver": "webhookevent",
"scope_name": "otlp/webhookevent",
"scope_version": "1.0.0",
"service_name": "vault-terraform",
"service_namespace": "github",
"source": "webhookevent",
"team_name": "tag-k8s",
"vcs_repository_name": "vault-terraform",
"vcs_repository_owner": "liatrio",
"vcs_repository_ref_revision": "08bc87cf41e805e319fa9857e501d76e318cdb07",
"vcs_repository_url_full": "https://github.com/liatrio/vault-terraform"
},
"values": [
[
"1725902843942614866",
"{\"action\":\"created\",\"deployment\":{\"created_at\":\"2024-09-09T17:26:19Z\",\"environment\":\"root\",\"id\":1784506890,\"ref\":\"main\",\"sha\":\"08bc87cf41e805e319fa9857e501d76e318cdb07\",\"task\":\"deploy\",\"updated_at\":\"2024-09-09T17:27:23Z\",\"url\":\"https://api.github.com/repos/liatrio/vault-terraform/deployments/1784506890\"},\"deployment_status\":{\"environment\":\"root\",\"state\":\"failure\",\"url\":\"https://api.github.com/repos/liatrio/vault-terraform/deployments/1784506890/statuses/4509790888\"},\"repository\":{\"custom_properties\":{},\"full_name\":\"liatrio/vault-terraform\",\"html_url\":\"https://github.com/liatrio/vault-terraform\",\"name\":\"vault-terraform\",\"owner\":{\"login\":\"liatrio\"}},\"workflow\":{\"name\":\"Onboarding\",\"path\":\".github/workflows/onboarding.yaml\",\"url\":\"https://api.github.com/repos/liatrio/vault-terraform/actions/workflows/85817187\"}}"
]
]
},
{
"stream": {
"deployment_environment_name": "root",
"deployment_id": "1784466398",
"deployment_status": "failure",
"environment_name": "dev",
"event_name": "deployment_created",
"loki_resource_labels": "service.name, service.namespace",
"receiver": "webhookevent",
"scope_name": "otlp/webhookevent",
"scope_version": "1.0.0",
"service_name": "vault-terraform",
"service_namespace": "github",
"source": "webhookevent",
"team_name": "liatrio",
"vcs_repository_name": "vault-terraform",
"vcs_repository_owner": "liatrio",
"vcs_repository_ref_revision": "08bc87cf41e805e319fa9857e501d76e318cdb07",
"vcs_repository_url_full": "https://github.com/liatrio/vault-terraform"
},
"values": [
[
"1725901856391546433",
"{\"action\":\"created\",\"deployment\":{\"created_at\":\"2024-09-09T17:10:11Z\",\"environment\":\"root\",\"id\":1784466398,\"ref\":\"main\",\"sha\":\"08bc87cf41e805e319fa9857e501d76e318cdb07\",\"task\":\"deploy\",\"updated_at\":\"2024-09-09T17:10:55Z\",\"url\":\"https://api.github.com/repos/liatrio/vault-terraform/deployments/1784466398\"},\"deployment_status\":{\"environment\":\"root\",\"state\":\"failure\",\"url\":\"https://api.github.com/repos/liatrio/vault-terraform/deployments/1784466398/statuses/4509669495\"},\"repository\":{\"custom_properties\":{},\"full_name\":\"liatrio/vault-terraform\",\"html_url\":\"https://github.com/liatrio/vault-terraform\",\"name\":\"vault-terraform\",\"owner\":{\"login\":\"liatrio\"}},\"workflow\":{\"name\":\"Onboarding\",\"path\":\".github/workflows/onboarding.yaml\",\"url\":\"https://api.github.com/repos/liatrio/vault-terraform/actions/workflows/85817187\"}}"
]
]
},
{
"stream": {
"deployment_environment_name": "root",
"deployment_id": "1784460037",
"deployment_status": "failure",
"environment_name": "dev",
"event_name": "deployment_created",
"loki_resource_labels": "service.name, service.namespace",
"receiver": "webhookevent",
"scope_name": "otlp/webhookevent",
"scope_version": "1.0.0",
"service_name": "vault-terraform",
"service_namespace": "github",
"source": "webhookevent",
"team_name": "liatrio",
"vcs_repository_name": "vault-terraform",
"vcs_repository_owner": "liatrio",
"vcs_repository_ref_revision": "08bc87cf41e805e319fa9857e501d76e318cdb07",
"vcs_repository_url_full": "https://github.com/liatrio/vault-terraform"
},
"values": [
[
"1725901703739335226",
"{\"action\":\"created\",\"deployment\":{\"created_at\":\"2024-09-09T17:07:34Z\",\"environment\":\"root\",\"id\":1784460037,\"ref\":\"main\",\"sha\":\"08bc87cf41e805e319fa9857e501d76e318cdb07\",\"task\":\"deploy\",\"updated_at\":\"2024-09-09T17:08:22Z\",\"url\":\"https://api.github.com/repos/liatrio/vault-terraform/deployments/1784460037\"},\"deployment_status\":{\"environment\":\"root\",\"state\":\"failure\",\"url\":\"https://api.github.com/repos/liatrio/vault-terraform/deployments/1784460037/statuses/4509650230\"},\"repository\":{\"custom_properties\":{},\"full_name\":\"liatrio/vault-terraform\",\"html_url\":\"https://github.com/liatrio/vault-terraform\",\"name\":\"vault-terraform\",\"owner\":{\"login\":\"liatrio\"}},\"workflow\":{\"name\":\"Onboarding\",\"path\":\".github/workflows/onboarding.yaml\",\"url\":\"https://api.github.com/repos/liatrio/vault-terraform/actions/workflows/85817187\"}}"
]
]
},
{
"stream": {
"deployment_environment_name": "root",
"deployment_id": "1784383064",
"deployment_status": "failure",
"environment_name": "dev",
"event_name": "deployment_created",
"loki_resource_labels": "service.name, service.namespace",
"receiver": "webhookevent",
"scope_name": "otlp/webhookevent",
"scope_version": "1.0.0",
"service_name": "vault-terraform",
"service_namespace": "github",
"source": "webhookevent",
"team_name": "liatrio",
"vcs_repository_name": "vault-terraform",
"vcs_repository_owner": "liatrio",
"vcs_repository_ref_revision": "08bc87cf41e805e319fa9857e501d76e318cdb07",
"vcs_repository_url_full": "https://github.com/liatrio/vault-terraform"
},
"values": [
[
"1725900233918154254",
"{\"action\":\"created\",\"deployment\":{\"created_at\":\"2024-09-09T16:37:26Z\",\"environment\":\"root\",\"id\":1784383064,\"ref\":\"main\",\"sha\":\"08bc87cf41e805e319fa9857e501d76e318cdb07\",\"task\":\"deploy\",\"updated_at\":\"2024-09-09T16:43:52Z\",\"url\":\"https://api.github.com/repos/liatrio/vault-terraform/deployments/1784383064\"},\"deployment_status\":{\"environment\":\"root\",\"state\":\"failure\",\"url\":\"https://api.github.com/repos/liatrio/vault-terraform/deployments/1784383064/statuses/4509465174\"},\"repository\":{\"custom_properties\":{},\"full_name\":\"liatrio/vault-terraform\",\"html_url\":\"https://github.com/liatrio/vault-terraform\",\"name\":\"vault-terraform\",\"owner\":{\"login\":\"liatrio\"}},\"workflow\":{\"name\":\"Onboarding\",\"path\":\".github/workflows/onboarding.yaml\",\"url\":\"https://api.github.com/repos/liatrio/vault-terraform/actions/workflows/85817187\"}}"
]
]
},
{
"stream": {
"deployment_environment_name": "root",
"deployment_id": "1784368559",
"deployment_status": "failure",
"environment_name": "dev",
"event_name": "deployment_created",
"loki_resource_labels": "service.name, service.namespace",
"receiver": "webhookevent",
"scope_name": "otlp/webhookevent",
"scope_version": "1.0.0",
"service_name": "vault-terraform",
"service_namespace": "github",
"source": "webhookevent",
"team_name": "liatrio",
"vcs_repository_name": "vault-terraform",
"vcs_repository_owner": "liatrio",
"vcs_repository_ref_revision": "80eb76b4b3c1c3ffe5dbbe5df42019c6bc39f03d",
"vcs_repository_url_full": "https://github.com/liatrio/vault-terraform"
},
"values": [
[
"1725899645323639106",
"{\"action\":\"created\",\"deployment\":{\"created_at\":\"2024-09-09T16:32:01Z\",\"environment\":\"root\",\"id\":1784368559,\"ref\":\"main\",\"sha\":\"80eb76b4b3c1c3ffe5dbbe5df42019c6bc39f03d\",\"task\":\"deploy\",\"updated_at\":\"2024-09-09T16:34:04Z\",\"url\":\"https://api.github.com/repos/liatrio/vault-terraform/deployments/1784368559\"},\"deployment_status\":{\"environment\":\"root\",\"state\":\"failure\",\"url\":\"https://api.github.com/repos/liatrio/vault-terraform/deployments/1784368559/statuses/4509387441\"},\"repository\":{\"custom_properties\":{},\"full_name\":\"liatrio/vault-terraform\",\"html_url\":\"https://github.com/liatrio/vault-terraform\",\"name\":\"vault-terraform\",\"owner\":{\"login\":\"liatrio\"}},\"workflow\":{\"name\":\"Onboarding\",\"path\":\".github/workflows/onboarding.yaml\",\"url\":\"https://api.github.com/repos/liatrio/vault-terraform/actions/workflows/85817187\"}}"
]
]
},
{
"stream": {
"deployment_environment_name": "root",
"deployment_id": "1783826076",
"deployment_status": "success",
"environment_name": "dev",
"event_name": "deployment_created",
"loki_resource_labels": "service.name, service.namespace",
"receiver": "webhookevent",
"scope_name": "otlp/webhookevent",
"scope_version": "1.0.0",
"service_name": "vault-terraform",
"service_namespace": "github",
"source": "webhookevent",
"team_name": "liatrio",
"vcs_repository_name": "vault-terraform",
"vcs_repository_owner": "liatrio",
"vcs_repository_ref_revision": "b34c765b17cd8933830b7b9f95900f9910925e18",
"vcs_repository_url_full": "https://github.com/liatrio/vault-terraform"
},
"values": [
[
"1725889301947968209",
"{\"action\":\"created\",\"deployment\":{\"created_at\":\"2024-09-09T13:37:30Z\",\"environment\":\"root\",\"id\":1783826076,\"ref\":\"main\",\"sha\":\"b34c765b17cd8933830b7b9f95900f9910925e18\",\"task\":\"deploy\",\"updated_at\":\"2024-09-09T13:41:41Z\",\"url\":\"https://api.github.com/repos/liatrio/vault-terraform/deployments/1783826076\"},\"deployment_status\":{\"environment\":\"root\",\"state\":\"success\",\"url\":\"https://api.github.com/repos/liatrio/vault-terraform/deployments/1783826076/statuses/4507725704\"},\"repository\":{\"custom_properties\":{},\"full_name\":\"liatrio/vault-terraform\",\"html_url\":\"https://github.com/liatrio/vault-terraform\",\"name\":\"vault-terraform\",\"owner\":{\"login\":\"liatrio\"}},\"workflow\":{\"name\":\"Onboarding\",\"path\":\".github/workflows/onboarding.yaml\",\"url\":\"https://api.github.com/repos/liatrio/vault-terraform/actions/workflows/85817187\"}}"
]
]
},
{
"stream": {
"deployment_environment_name": "production",
"deployment_id": "1796250608",
"deployment_status": "success",
"environment_name": "dev",
"event_name": "deployment_created",
"loki_resource_labels": "service.name, service.namespace",
"receiver": "webhookevent",
"scope_name": "otlp/webhookevent",
"scope_version": "1.0.0",
"service_name": "clockwork",
"service_namespace": "github",
"source": "webhookevent",
"team_name": "liatrio",
"vcs_repository_name": "clockwork",
"vcs_repository_owner": "liatrio",
"vcs_repository_ref_revision": "c4cf3ee61349c8b0211aab542459f3a40b46f614",
"vcs_repository_url_full": "https://github.com/liatrio/clockwork"
},
"values": [
[
"1726225369776407804",
"{\"action\":\"created\",\"deployment\":{\"created_at\":\"2024-09-13T11:00:58Z\",\"environment\":\"production\",\"id\":1796250608,\"ref\":\"main\",\"sha\":\"c4cf3ee61349c8b0211aab542459f3a40b46f614\",\"task\":\"deploy\",\"updated_at\":\"2024-09-13T11:02:48Z\",\"url\":\"https://api.github.com/repos/liatrio/clockwork/deployments/1796250608\"},\"deployment_status\":{\"environment\":\"production\",\"state\":\"success\",\"url\":\"https://api.github.com/repos/liatrio/clockwork/deployments/1796250608/statuses/4545377538\"},\"repository\":{\"custom_properties\":{},\"full_name\":\"liatrio/clockwork\",\"html_url\":\"https://github.com/liatrio/clockwork\",\"name\":\"clockwork\",\"owner\":{\"login\":\"liatrio\"}},\"workflow\":{\"name\":\"Update Production Sheet\",\"path\":\".github/workflows/update-production-sheet.yml\",\"url\":\"https://api.github.com/repos/liatrio/clockwork/actions/workflows/97153021\"},\"workflow_run\":{\"display_title\":\"Update Production Sheet\",\"head_branch\":\"main\",\"head_sha\":\"c4cf3ee61349c8b0211aab542459f3a40b46f614\",\"run_number\":107,\"status\":\"completed\",\"workflow_id\":97153021}}"
]
]
},
{
"stream": {
"deployment_environment_name": "production",
"deployment_id": "1793929869",
"deployment_status": "success",
"environment_name": "dev",
"event_name": "deployment_created",
"loki_resource_labels": "service.name, service.namespace",
"receiver": "webhookevent",
"scope_name": "otlp/webhookevent",
"scope_version": "1.0.0",
"service_name": "clockwork",
"service_namespace": "github",
"source": "webhookevent",
"team_name": "liatrio",
"vcs_repository_name": "clockwork",
"vcs_repository_owner": "liatrio",
"vcs_repository_ref_revision": "c4cf3ee61349c8b0211aab542459f3a40b46f614",
"vcs_repository_url_full": "https://github.com/liatrio/clockwork"
},
"values": [
[
"1726154832543778345",
"{\"action\":\"created\",\"deployment\":{\"created_at\":\"2024-09-12T15:24:50Z\",\"environment\":\"production\",\"id\":1793929869,\"ref\":\"main\",\"sha\":\"c4cf3ee61349c8b0211aab542459f3a40b46f614\",\"task\":\"deploy\",\"updated_at\":\"2024-09-12T15:27:11Z\",\"url\":\"https://api.github.com/repos/liatrio/clockwork/deployments/1793929869\"},\"deployment_status\":{\"environment\":\"production\",\"state\":\"success\",\"url\":\"https://api.github.com/repos/liatrio/clockwork/deployments/1793929869/statuses/4538298072\"},\"repository\":{\"custom_properties\":{},\"full_name\":\"liatrio/clockwork\",\"html_url\":\"https://github.com/liatrio/clockwork\",\"name\":\"clockwork\",\"owner\":{\"login\":\"liatrio\"}},\"workflow\":{\"name\":\"Update Production Sheet\",\"path\":\".github/workflows/update-production-sheet.yml\",\"url\":\"https://api.github.com/repos/liatrio/clockwork/actions/workflows/97153021\"},\"workflow_run\":{\"display_title\":\"Update Production Sheet\",\"head_branch\":\"main\",\"head_sha\":\"c4cf3ee61349c8b0211aab542459f3a40b46f614\",\"run_number\":106,\"status\":\"completed\",\"workflow_id\":97153021}}"
]
]
},
{
"stream": {
"deployment_environment_name": "production",
"deployment_id": "1793097312",
"deployment_status": "failure",
"environment_name": "dev",
"event_name": "deployment_created",
"loki_resource_labels": "service.name, service.namespace",
"receiver": "webhookevent",
"scope_name": "otlp/webhookevent",
"scope_version": "1.0.0",
"service_name": "clockwork",
"service_namespace": "github",
"source": "webhookevent",
"team_name": "liatrio",
"vcs_repository_name": "clockwork",
"vcs_repository_owner": "liatrio",
"vcs_repository_ref_revision": "c4cf3ee61349c8b0211aab542459f3a40b46f614",
"vcs_repository_url_full": "https://github.com/liatrio/clockwork"
},
"values": [
[
"1726139112604688832",
"{\"action\":\"created\",\"deployment\":{\"created_at\":\"2024-09-12T11:00:50Z\",\"environment\":\"production\",\"id\":1793097312,\"ref\":\"main\",\"sha\":\"c4cf3ee61349c8b0211aab542459f3a40b46f614\",\"task\":\"deploy\",\"updated_at\":\"2024-09-12T11:05:11Z\",\"url\":\"https://api.github.com/repos/liatrio/clockwork/deployments/1793097312\"},\"deployment_status\":{\"environment\":\"production\",\"state\":\"failure\",\"url\":\"https://api.github.com/repos/liatrio/clockwork/deployments/1793097312/statuses/4535849062\"},\"repository\":{\"custom_properties\":{},\"full_name\":\"liatrio/clockwork\",\"html_url\":\"https://github.com/liatrio/clockwork\",\"name\":\"clockwork\",\"owner\":{\"login\":\"liatrio\"}},\"workflow\":{\"name\":\"Update Production Sheet\",\"path\":\".github/workflows/update-production-sheet.yml\",\"url\":\"https://api.github.com/repos/liatrio/clockwork/actions/workflows/97153021\"},\"workflow_run\":{\"display_title\":\"Update Production Sheet\",\"head_branch\":\"main\",\"head_sha\":\"c4cf3ee61349c8b0211aab542459f3a40b46f614\",\"run_number\":106,\"status\":\"completed\",\"workflow_id\":97153021}}"
]
]
},
{
"stream": {
"deployment_environment_name": "production",
"deployment_id": "1789836844",
"deployment_status": "success",
"environment_name": "dev",
"event_name": "deployment_created",
"loki_resource_labels": "service.name, service.namespace",
"receiver": "webhookevent",
"scope_name": "otlp/webhookevent",
"scope_version": "1.0.0",
"service_name": "clockwork",
"service_namespace": "github",
"source": "webhookevent",
"team_name": "liatrio",
"vcs_repository_name": "clockwork",
"vcs_repository_owner": "liatrio",
"vcs_repository_ref_revision": "c4cf3ee61349c8b0211aab542459f3a40b46f614",
"vcs_repository_url_full": "https://github.com/liatrio/clockwork"
},
"values": [
[
"1726052562367536073",
"{\"action\":\"created\",\"deployment\":{\"created_at\":\"2024-09-11T11:00:41Z\",\"environment\":\"production\",\"id\":1789836844,\"ref\":\"main\",\"sha\":\"c4cf3ee61349c8b0211aab542459f3a40b46f614\",\"task\":\"deploy\",\"updated_at\":\"2024-09-11T11:02:41Z\",\"url\":\"https://api.github.com/repos/liatrio/clockwork/deployments/1789836844\"},\"deployment_status\":{\"environment\":\"production\",\"state\":\"success\",\"url\":\"https://api.github.com/repos/liatrio/clockwork/deployments/1789836844/statuses/4525967928\"},\"repository\":{\"custom_properties\":{},\"full_name\":\"liatrio/clockwork\",\"html_url\":\"https://github.com/liatrio/clockwork\",\"name\":\"clockwork\",\"owner\":{\"login\":\"liatrio\"}},\"workflow\":{\"name\":\"Update Production Sheet\",\"path\":\".github/workflows/update-production-sheet.yml\",\"url\":\"https://api.github.com/repos/liatrio/clockwork/actions/workflows/97153021\"}}"
]
]
},
{
"stream": {
"deployment_environment_name": "production",
"deployment_id": "1787607543",
"deployment_status": "success",
"environment_name": "dev",
"event_name": "deployment_created",
"loki_resource_labels": "service.name, service.namespace",
"receiver": "webhookevent",
"scope_name": "otlp/webhookevent",
"scope_version": "1.0.0",
"service_name": "clockwork",
"service_namespace": "github",
"source": "webhookevent",
"team_name": "liatrio",
"vcs_repository_name": "clockwork",
"vcs_repository_owner": "liatrio",
"vcs_repository_ref_revision": "c4cf3ee61349c8b0211aab542459f3a40b46f614",
"vcs_repository_url_full": "https://github.com/liatrio/clockwork"
},
"values": [
[
"1725985343481164321",
"{\"action\":\"created\",\"deployment\":{\"created_at\":\"2024-09-10T16:20:24Z\",\"environment\":\"production\",\"id\":1787607543,\"ref\":\"main\",\"sha\":\"c4cf3ee61349c8b0211aab542459f3a40b46f614\",\"task\":\"deploy\",\"updated_at\":\"2024-09-10T16:22:22Z\",\"url\":\"https://api.github.com/repos/liatrio/clockwork/deployments/1787607543\"},\"deployment_status\":{\"environment\":\"production\",\"state\":\"success\",\"url\":\"https://api.github.com/repos/liatrio/clockwork/deployments/1787607543/statuses/4519210404\"},\"repository\":{\"custom_properties\":{},\"full_name\":\"liatrio/clockwork\",\"html_url\":\"https://github.com/liatrio/clockwork\",\"name\":\"clockwork\",\"owner\":{\"login\":\"liatrio\"}},\"workflow\":{\"name\":\"Build/Test/Push\",\"path\":\".github/workflows/build-test-push.yml\",\"url\":\"https://api.github.com/repos/liatrio/clockwork/actions/workflows/96982907\"}}"
]
]
},
{
"stream": {
"deployment_environment_name": "production",
"deployment_id": "1787586384",
"deployment_status": "success",
"environment_name": "dev",
"event_name": "deployment_created",
"loki_resource_labels": "service.name, service.namespace",
"receiver": "webhookevent",
"scope_name": "otlp/webhookevent",
"scope_version": "1.0.0",
"service_name": "clockwork",
"service_namespace": "github",
"source": "webhookevent",
"team_name": "liatrio",
"vcs_repository_name": "clockwork",
"vcs_repository_owner": "liatrio",
"vcs_repository_ref_revision": "ea547b1180a857098193c62e1e1bbd473835a808",
"vcs_repository_url_full": "https://github.com/liatrio/clockwork"
},
"values": [
[
"1725984963309023792",
"{\"action\":\"created\",\"deployment\":{\"created_at\":\"2024-09-10T16:13:02Z\",\"environment\":\"production\",\"id\":1787586384,\"ref\":\"main\",\"sha\":\"ea547b1180a857098193c62e1e1bbd473835a808\",\"task\":\"deploy\",\"updated_at\":\"2024-09-10T16:16:02Z\",\"url\":\"https://api.github.com/repos/liatrio/clockwork/deployments/1787586384\"},\"deployment_status\":{\"environment\":\"production\",\"state\":\"success\",\"url\":\"https://api.github.com/repos/liatrio/clockwork/deployments/1787586384/statuses/4519155851\"},\"repository\":{\"custom_properties\":{},\"full_name\":\"liatrio/clockwork\",\"html_url\":\"https://github.com/liatrio/clockwork\",\"name\":\"clockwork\",\"owner\":{\"login\":\"liatrio\"}},\"workflow\":{\"name\":\"Build/Test/Push\",\"path\":\".github/workflows/build-test-push.yml\",\"url\":\"https://api.github.com/repos/liatrio/clockwork/actions/workflows/96982907\"}}"
]
]
},
{
"stream": {
"deployment_environment_name": "production",
"deployment_id": "1786602412",
"deployment_status": "success",
"environment_name": "dev",
"event_name": "deployment_created",
"loki_resource_labels": "service.name, service.namespace",
"receiver": "webhookevent",
"scope_name": "otlp/webhookevent",
"scope_version": "1.0.0",
"service_name": "clockwork",
"service_namespace": "github",
"source": "webhookevent",
"team_name": "liatrio",
"vcs_repository_name": "clockwork",
"vcs_repository_owner": "liatrio",
"vcs_repository_ref_revision": "ad664f404547fe2a5093471cd23572fdc5110f85",
"vcs_repository_url_full": "https://github.com/liatrio/clockwork"
},
"values": [
[
"1725966159833938845",
"{\"action\":\"created\",\"deployment\":{\"created_at\":\"2024-09-10T11:00:38Z\",\"environment\":\"production\",\"id\":1786602412,\"ref\":\"main\",\"sha\":\"ad664f404547fe2a5093471cd23572fdc5110f85\",\"task\":\"deploy\",\"updated_at\":\"2024-09-10T11:02:38Z\",\"url\":\"https://api.github.com/repos/liatrio/clockwork/deployments/1786602412\"},\"deployment_status\":{\"environment\":\"production\",\"state\":\"success\",\"url\":\"https://api.github.com/repos/liatrio/clockwork/deployments/1786602412/statuses/4516157187\"},\"repository\":{\"custom_properties\":{},\"full_name\":\"liatrio/clockwork\",\"html_url\":\"https://github.com/liatrio/clockwork\",\"name\":\"clockwork\",\"owner\":{\"login\":\"liatrio\"}},\"workflow\":{\"name\":\"Update Production Sheet\",\"path\":\".github/workflows/update-production-sheet.yml\",\"url\":\"https://api.github.com/repos/liatrio/clockwork/actions/workflows/97153021\"}}"
]
]
},
{
"stream": {
"deployment_environment_name": "production",
"deployment_id": "1783872049",
"deployment_status": "success",
"environment_name": "dev",
"event_name": "deployment_created",
"loki_resource_labels": "service.name, service.namespace",
"receiver": "webhookevent",
"scope_name": "otlp/webhookevent",
"scope_version": "1.0.0",
"service_name": "clockwork",
"service_namespace": "github",
"source": "webhookevent",
"team_name": "liatrio",
"vcs_repository_name": "clockwork",
"vcs_repository_owner": "liatrio",
"vcs_repository_ref_revision": "ad664f404547fe2a5093471cd23572fdc5110f85",
"vcs_repository_url_full": "https://github.com/liatrio/clockwork"
},
"values": [
[
"1725890130263448590",
"{\"action\":\"created\",\"deployment\":{\"created_at\":\"2024-09-09T13:52:20Z\",\"environment\":\"production\",\"id\":1783872049,\"ref\":\"main\",\"sha\":\"ad664f404547fe2a5093471cd23572fdc5110f85\",\"task\":\"deploy\",\"updated_at\":\"2024-09-09T13:55:29Z\",\"url\":\"https://api.github.com/repos/liatrio/clockwork/deployments/1783872049\"},\"deployment_status\":{\"environment\":\"production\",\"state\":\"success\",\"url\":\"https://api.github.com/repos/liatrio/clockwork/deployments/1783872049/statuses/4507852766\"},\"repository\":{\"custom_properties\":{},\"full_name\":\"liatrio/clockwork\",\"html_url\":\"https://github.com/liatrio/clockwork\",\"name\":\"clockwork\",\"owner\":{\"login\":\"liatrio\"}},\"workflow\":{\"name\":\"Update Production Sheet\",\"path\":\".github/workflows/update-production-sheet.yml\",\"url\":\"https://api.github.com/repos/liatrio/clockwork/actions/workflows/97153021\"}}"
]
]
},
{
"stream": {
"deployment_environment_name": "production",
"deployment_id": "1783382198",
"deployment_status": "success",
"environment_name": "dev",
"event_name": "deployment_created",
"loki_resource_labels": "service.name, service.namespace",
"receiver": "webhookevent",
"scope_name": "otlp/webhookevent",
"scope_version": "1.0.0",
"service_name": "clockwork",
"service_namespace": "github",
"source": "webhookevent",
"team_name": "liatrio",
"vcs_repository_name": "clockwork",
"vcs_repository_owner": "liatrio",
"vcs_repository_ref_revision": "ad664f404547fe2a5093471cd23572fdc5110f85",
"vcs_repository_url_full": "https://github.com/liatrio/clockwork"
},
"values": [
[
"1725879788611540630",
"{\"action\":\"created\",\"deployment\":{\"created_at\":\"2024-09-09T11:00:38Z\",\"environment\":\"production\",\"id\":1783382198,\"ref\":\"main\",\"sha\":\"ad664f404547fe2a5093471cd23572fdc5110f85\",\"task\":\"deploy\",\"updated_at\":\"2024-09-09T11:03:07Z\",\"url\":\"https://api.github.com/repos/liatrio/clockwork/deployments/1783382198\"},\"deployment_status\":{\"environment\":\"production\",\"state\":\"success\",\"url\":\"https://api.github.com/repos/liatrio/clockwork/deployments/1783382198/statuses/4506405565\"},\"repository\":{\"custom_properties\":{},\"full_name\":\"liatrio/clockwork\",\"html_url\":\"https://github.com/liatrio/clockwork\",\"name\":\"clockwork\",\"owner\":{\"login\":\"liatrio\"}},\"workflow\":{\"name\":\"Update Production Sheet\",\"path\":\".github/workflows/update-production-sheet.yml\",\"url\":\"https://api.github.com/repos/liatrio/clockwork/actions/workflows/97153021\"}}"
]
]
},
{
"stream": {
"deployment_environment_name": "production",
"deployment_id": "1778164228",
"deployment_status": "success",
"environment_name": "dev",
"event_name": "deployment_created",
"loki_resource_labels": "service.name, service.namespace",
"receiver": "webhookevent",
"scope_name": "otlp/webhookevent",
"scope_version": "1.0.0",
"service_name": "clockwork",
"service_namespace": "github",
"source": "webhookevent",
"team_name": "liatrio",
"vcs_repository_name": "clockwork",
"vcs_repository_owner": "liatrio",
"vcs_repository_ref_revision": "ad664f404547fe2a5093471cd23572fdc5110f85",
"vcs_repository_url_full": "https://github.com/liatrio/clockwork"
},
"values": [
[
"1725620645804741739",
"{\"action\":\"created\",\"deployment\":{\"created_at\":\"2024-09-06T11:00:36Z\",\"environment\":\"production\",\"id\":1778164228,\"ref\":\"main\",\"sha\":\"ad664f404547fe2a5093471cd23572fdc5110f85\",\"task\":\"deploy\",\"updated_at\":\"2024-09-06T11:04:04Z\",\"url\":\"https://api.github.com/repos/liatrio/clockwork/deployments/1778164228\"},\"deployment_status\":{\"environment\":\"production\",\"state\":\"success\",\"url\":\"https://api.github.com/repos/liatrio/clockwork/deployments/1778164228/statuses/4490448188\"},\"repository\":{\"custom_properties\":{},\"full_name\":\"liatrio/clockwork\",\"html_url\":\"https://github.com/liatrio/clockwork\",\"name\":\"clockwork\",\"owner\":{\"login\":\"liatrio\"}},\"workflow\":{\"name\":\"Update Production Sheet\",\"path\":\".github/workflows/update-production-sheet.yml\",\"url\":\"https://api.github.com/repos/liatrio/clockwork/actions/workflows/97153021\"}}"
]
]
},
{
"stream": {
"deployment_environment_name": "production",
"deployment_id": "1775118369",
"deployment_status": "success",
"environment_name": "dev",
"event_name": "deployment_created",
"loki_resource_labels": "service.name, service.namespace",
"receiver": "webhookevent",
"scope_name": "otlp/webhookevent",
"scope_version": "1.0.0",
"service_name": "clockwork",
"service_namespace": "github",
"source": "webhookevent",
"team_name": "liatrio",
"vcs_repository_name": "clockwork",
"vcs_repository_owner": "liatrio",
"vcs_repository_ref_revision": "ad664f404547fe2a5093471cd23572fdc5110f85",
"vcs_repository_url_full": "https://github.com/liatrio/clockwork"
},
"values": [
[
"1725534263763301881",
"{\"action\":\"created\",\"deployment\":{\"created_at\":\"2024-09-05T11:00:48Z\",\"environment\":\"production\",\"id\":1775118369,\"ref\":\"main\",\"sha\":\"ad664f404547fe2a5093471cd23572fdc5110f85\",\"task\":\"deploy\",\"updated_at\":\"2024-09-05T11:04:22Z\",\"url\":\"https://api.github.com/repos/liatrio/clockwork/deployments/1775118369\"},\"deployment_status\":{\"environment\":\"production\",\"state\":\"success\",\"url\":\"https://api.github.com/repos/liatrio/clockwork/deployments/1775118369/statuses/4481199226\"},\"repository\":{\"custom_properties\":{},\"full_name\":\"liatrio/clockwork\",\"html_url\":\"https://github.com/liatrio/clockwork\",\"name\":\"clockwork\",\"owner\":{\"login\":\"liatrio\"}},\"workflow\":{\"name\":\"Update Production Sheet\",\"path\":\".github/workflows/update-production-sheet.yml\",\"url\":\"https://api.github.com/repos/liatrio/clockwork/actions/workflows/97153021\"}}"
]
]
},
{
"stream": {
"deployment_environment_name": "production",
"deployment_id": "1771939881",
"deployment_status": "success",
"environment_name": "dev",
"event_name": "deployment_created",
"loki_resource_labels": "service.name, service.namespace",
"receiver": "webhookevent",
"scope_name": "otlp/webhookevent",
"scope_version": "1.0.0",
"service_name": "clockwork",
"service_namespace": "github",
"source": "webhookevent",
"team_name": "liatrio",
"vcs_repository_name": "clockwork",
"vcs_repository_owner": "liatrio",
"vcs_repository_ref_revision": "ad664f404547fe2a5093471cd23572fdc5110f85",
"vcs_repository_url_full": "https://github.com/liatrio/clockwork"
},
"values": [
[
"1725447879718798658",
"{\"action\":\"created\",\"deployment\":{\"created_at\":\"2024-09-04T11:00:59Z\",\"environment\":\"production\",\"id\":1771939881,\"ref\":\"main\",\"sha\":\"ad664f404547fe2a5093471cd23572fdc5110f85\",\"task\":\"deploy\",\"updated_at\":\"2024-09-04T11:04:37Z\",\"url\":\"https://api.github.com/repos/liatrio/clockwork/deployments/1771939881\"},\"deployment_status\":{\"environment\":\"production\",\"state\":\"success\",\"url\":\"https://api.github.com/repos/liatrio/clockwork/deployments/1771939881/statuses/4471605551\"},\"repository\":{\"custom_properties\":{},\"full_name\":\"liatrio/clockwork\",\"html_url\":\"https://github.com/liatrio/clockwork\",\"name\":\"clockwork\",\"owner\":{\"login\":\"liatrio\"}},\"workflow\":{\"name\":\"Update Production Sheet\",\"path\":\".github/workflows/update-production-sheet.yml\",\"url\":\"https://api.github.com/repos/liatrio/clockwork/actions/workflows/97153021\"}}"
]
]
},
{
"stream": {
"deployment_environment_name": "production",
"deployment_id": "1768803617",
"deployment_status": "success",
"environment_name": "dev",
"event_name": "deployment_created",
"loki_resource_labels": "service.name, service.namespace",
"receiver": "webhookevent",
"scope_name": "otlp/webhookevent",
"scope_version": "1.0.0",
"service_name": "clockwork",
"service_namespace": "github",
"source": "webhookevent",
"team_name": "liatrio",
"vcs_repository_name": "clockwork",
"vcs_repository_owner": "liatrio",
"vcs_repository_ref_revision": "ad664f404547fe2a5093471cd23572fdc5110f85",
"vcs_repository_url_full": "https://github.com/liatrio/clockwork"
},
"values": [
[
"1725361403887139036",
"{\"action\":\"created\",\"deployment\":{\"created_at\":\"2024-09-03T11:00:41Z\",\"environment\":\"production\",\"id\":1768803617,\"ref\":\"main\",\"sha\":\"ad664f404547fe2a5093471cd23572fdc5110f85\",\"task\":\"deploy\",\"updated_at\":\"2024-09-03T11:03:23Z\",\"url\":\"https://api.github.com/repos/liatrio/clockwork/deployments/1768803617\"},\"deployment_status\":{\"environment\":\"production\",\"state\":\"success\",\"url\":\"https://api.github.com/repos/liatrio/clockwork/deployments/1768803617/statuses/4462231792\"},\"repository\":{\"custom_properties\":{},\"full_name\":\"liatrio/clockwork\",\"html_url\":\"https://github.com/liatrio/clockwork\",\"name\":\"clockwork\",\"owner\":{\"login\":\"liatrio\"}},\"workflow\":{\"name\":\"Update Production Sheet\",\"path\":\".github/workflows/update-production-sheet.yml\",\"url\":\"https://api.github.com/repos/liatrio/clockwork/actions/workflows/97153021\"}}"
]
]
},
{
"stream": {
"deployment_environment_name": "production",
"deployment_id": "1766186103",
"deployment_status": "success",
"environment_name": "dev",
"event_name": "deployment_created",
"loki_resource_labels": "service.name, service.namespace",
"receiver": "webhookevent",
"scope_name": "otlp/webhookevent",
"scope_version": "1.0.0",
"service_name": "clockwork",
"service_namespace": "github",
"source": "webhookevent",
"team_name": "liatrio",
"vcs_repository_name": "clockwork",
"vcs_repository_owner": "liatrio",
"vcs_repository_ref_revision": "ad664f404547fe2a5093471cd23572fdc5110f85",
"vcs_repository_url_full": "https://github.com/liatrio/clockwork"
},
"values": [
[
"1725274987170069344",
"{\"action\":\"created\",\"deployment\":{\"created_at\":\"2024-09-02T11:00:58Z\",\"environment\":\"production\",\"id\":1766186103,\"ref\":\"main\",\"sha\":\"ad664f404547fe2a5093471cd23572fdc5110f85\",\"task\":\"deploy\",\"updated_at\":\"2024-09-02T11:03:06Z\",\"url\":\"https://api.github.com/repos/liatrio/clockwork/deployments/1766186103\"},\"deployment_status\":{\"environment\":\"production\",\"state\":\"success\",\"url\":\"https://api.github.com/repos/liatrio/clockwork/deployments/1766186103/statuses/4454339190\"},\"repository\":{\"custom_properties\":{},\"full_name\":\"liatrio/clockwork\",\"html_url\":\"https://github.com/liatrio/clockwork\",\"name\":\"clockwork\",\"owner\":{\"login\":\"liatrio\"}},\"workflow\":{\"name\":\"Update Production Sheet\",\"path\":\".github/workflows/update-production-sheet.yml\",\"url\":\"https://api.github.com/repos/liatrio/clockwork/actions/workflows/97153021\"}}"
]
]
},
{
"stream": {
"deployment_environment_name": "production",
"deployment_id": "1761168330",
"deployment_status": "success",
"environment_name": "dev",
"event_name": "deployment_created",
"loki_resource_labels": "service.name, service.namespace",
"receiver": "webhookevent",
"scope_name": "otlp/webhookevent",
"scope_version": "1.0.0",
"service_name": "clockwork",
"service_namespace": "github",
"source": "webhookevent",
"team_name": "liatrio",
"vcs_repository_name": "clockwork",
"vcs_repository_owner": "liatrio",
"vcs_repository_ref_revision": "ad664f404547fe2a5093471cd23572fdc5110f85",
"vcs_repository_url_full": "https://github.com/liatrio/clockwork"
},
"values": [
[
"1725015747850404453",
"{\"action\":\"created\",\"deployment\":{\"created_at\":\"2024-08-30T11:00:36Z\",\"environment\":\"production\",\"id\":1761168330,\"ref\":\"main\",\"sha\":\"ad664f404547fe2a5093471cd23572fdc5110f85\",\"task\":\"deploy\",\"updated_at\":\"2024-08-30T11:02:26Z\",\"url\":\"https://api.github.com/repos/liatrio/clockwork/deployments/1761168330\"},\"deployment_status\":{\"environment\":\"production\",\"state\":\"success\",\"url\":\"https://api.github.com/repos/liatrio/clockwork/deployments/1761168330/statuses/4439017279\"},\"repository\":{\"custom_properties\":{},\"full_name\":\"liatrio/clockwork\",\"html_url\":\"https://github.com/liatrio/clockwork\",\"name\":\"clockwork\",\"owner\":{\"login\":\"liatrio\"}},\"workflow\":{\"name\":\"Update Production Sheet\",\"path\":\".github/workflows/update-production-sheet.yml\",\"url\":\"https://api.github.com/repos/liatrio/clockwork/actions/workflows/97153021\"}}"
]
]
},
{
"stream": {
"deployment_environment_name": "prod",
"deployment_id": "1797535678",
"deployment_status": "success",
"environment_name": "dev",
"event_name": "deployment_created",
"loki_resource_labels": "service.name, service.namespace",
"receiver": "webhookevent",
"scope_name": "otlp/webhookevent",
"scope_version": "1.0.0",
"service_name": "liatrio-backstage",
"service_namespace": "github",
"source": "webhookevent",
"team_name": "liatrio",
"vcs_repository_name": "liatrio-backstage",
"vcs_repository_owner": "liatrio",
"vcs_repository_ref_revision": "947e77af1dff71c06a0d92c6de8bcea6fe74df34",
"vcs_repository_url_full": "https://github.com/liatrio/liatrio-backstage"
},
"values": [
[
"1726255516171386410",
"{\"action\":\"created\",\"deployment\":{\"created_at\":\"2024-09-13T19:25:15Z\",\"environment\":\"prod\",\"id\":1797535678,\"ref\":\"v0.78.3\",\"sha\":\"947e77af1dff71c06a0d92c6de8bcea6fe74df34\",\"task\":\"deploy\",\"updated_at\":\"2024-09-13T19:25:15Z\",\"url\":\"https://api.github.com/repos/liatrio/liatrio-backstage/deployments/1797535678\"},\"deployment_status\":{\"environment\":\"prod\",\"state\":\"success\",\"url\":\"https://api.github.com/repos/liatrio/liatrio-backstage/deployments/1797535678/statuses/4549232326\"},\"repository\":{\"custom_properties\":{},\"full_name\":\"liatrio/liatrio-backstage\",\"html_url\":\"https://github.com/liatrio/liatrio-backstage\",\"name\":\"liatrio-backstage\",\"owner\":{\"login\":\"liatrio\"}},\"workflow\":null,\"workflow_run\":null}"
]
]
},
{
"stream": {
"deployment_environment_name": "prod",
"deployment_id": "1797530146",
"deployment_status": "success",
"environment_name": "dev",
"event_name": "deployment_created",
"loki_resource_labels": "service.name, service.namespace",
"receiver": "webhookevent",
"scope_name": "otlp/webhookevent",
"scope_version": "1.0.0",
"service_name": "liatrio-backstage",
"service_namespace": "github",
"source": "webhookevent",
"team_name": "liatrio",
"vcs_repository_name": "liatrio-backstage",
"vcs_repository_owner": "liatrio",
"vcs_repository_ref_revision": "947e77af1dff71c06a0d92c6de8bcea6fe74df34",
"vcs_repository_url_full": "https://github.com/liatrio/liatrio-backstage"
},
"values": [
[
"1726255342414912632",
"{\"action\":\"created\",\"deployment\":{\"created_at\":\"2024-09-13T19:22:21Z\",\"environment\":\"prod\",\"id\":1797530146,\"ref\":\"v0.78.3\",\"sha\":\"947e77af1dff71c06a0d92c6de8bcea6fe74df34\",\"task\":\"deploy\",\"updated_at\":\"2024-09-13T19:22:21Z\",\"url\":\"https://api.github.com/repos/liatrio/liatrio-backstage/deployments/1797530146\"},\"deployment_status\":{\"environment\":\"prod\",\"state\":\"success\",\"url\":\"https://api.github.com/repos/liatrio/liatrio-backstage/deployments/1797530146/statuses/4549213718\"},\"repository\":{\"custom_properties\":{},\"full_name\":\"liatrio/liatrio-backstage\",\"html_url\":\"https://github.com/liatrio/liatrio-backstage\",\"name\":\"liatrio-backstage\",\"owner\":{\"login\":\"liatrio\"}},\"workflow\":null,\"workflow_run\":null}"
]
]
},
{
"stream": {
"deployment_environment_name": "prod",
"deployment_id": "1797515122",
"deployment_status": "success",
"environment_name": "dev",
"event_name": "deployment_created",
"loki_resource_labels": "service.name, service.namespace",
"receiver": "webhookevent",
"scope_name": "otlp/webhookevent",
"scope_version": "1.0.0",
"service_name": "liatrio-backstage",
"service_namespace": "github",
"source": "webhookevent",
"team_name": "liatrio",
"vcs_repository_name": "liatrio-backstage",
"vcs_repository_owner": "liatrio",
"vcs_repository_ref_revision": "02b07bb8c63af9e55f71791863e17c6fe9ef9935",
"vcs_repository_url_full": "https://github.com/liatrio/liatrio-backstage"
},
"values": [
[
"1726254902306350080",
"{\"action\":\"created\",\"deployment\":{\"created_at\":\"2024-09-13T19:15:01Z\",\"environment\":\"prod\",\"id\":1797515122,\"ref\":\"v0.78.0\",\"sha\":\"02b07bb8c63af9e55f71791863e17c6fe9ef9935\",\"task\":\"deploy\",\"updated_at\":\"2024-09-13T19:15:01Z\",\"url\":\"https://api.github.com/repos/liatrio/liatrio-backstage/deployments/1797515122\"},\"deployment_status\":{\"environment\":\"prod\",\"state\":\"success\",\"url\":\"https://api.github.com/repos/liatrio/liatrio-backstage/deployments/1797515122/statuses/4549168449\"},\"repository\":{\"custom_properties\":{},\"full_name\":\"liatrio/liatrio-backstage\",\"html_url\":\"https://github.com/liatrio/liatrio-backstage\",\"name\":\"liatrio-backstage\",\"owner\":{\"login\":\"liatrio\"}},\"workflow\":null,\"workflow_run\":null}"
]
]
},
{
"stream": {
"deployment_environment_name": "prod",
"deployment_id": "1788722746",
"deployment_status": "success",
"environment_name": "dev",
"event_name": "deployment_created",
"loki_resource_labels": "service.name, service.namespace",
"receiver": "webhookevent",
"scope_name": "otlp/webhookevent",
"scope_version": "1.0.0",
"service_name": "liatrio-backstage",
"service_namespace": "github",
"source": "webhookevent",
"team_name": "liatrio",
"vcs_repository_name": "liatrio-backstage",
"vcs_repository_owner": "liatrio",
"vcs_repository_ref_revision": "3c56d9f1661b4c55c3de0f0784c7b40e8151dcd9",
"vcs_repository_url_full": "https://github.com/liatrio/liatrio-backstage"
},
"values": [
[
"1726017776688924336",
"{\"action\":\"created\",\"deployment\":{\"created_at\":\"2024-09-11T01:22:55Z\",\"environment\":\"prod\",\"id\":1788722746,\"ref\":\"v0.77.0\",\"sha\":\"3c56d9f1661b4c55c3de0f0784c7b40e8151dcd9\",\"task\":\"deploy\",\"updated_at\":\"2024-09-11T01:22:55Z\",\"url\":\"https://api.github.com/repos/liatrio/liatrio-backstage/deployments/1788722746\"},\"deployment_status\":{\"environment\":\"prod\",\"state\":\"success\",\"url\":\"https://api.github.com/repos/liatrio/liatrio-backstage/deployments/1788722746/statuses/4522607630\"},\"repository\":{\"custom_properties\":{},\"full_name\":\"liatrio/liatrio-backstage\",\"html_url\":\"https://github.com/liatrio/liatrio-backstage\",\"name\":\"liatrio-backstage\",\"owner\":{\"login\":\"liatrio\"}},\"workflow\":null}"
]
]
},
{
"stream": {
"deployment_environment_name": "prod",
"deployment_id": "1788673996",
"deployment_status": "success",
"environment_name": "dev",
"event_name": "deployment_created",
"loki_resource_labels": "service.name, service.namespace",
"receiver": "webhookevent",
"scope_name": "otlp/webhookevent",
"scope_version": "1.0.0",
"service_name": "liatrio-backstage",
"service_namespace": "github",
"source": "webhookevent",
"team_name": "liatrio",
"vcs_repository_name": "liatrio-backstage",
"vcs_repository_owner": "liatrio",
"vcs_repository_ref_revision": "3c56d9f1661b4c55c3de0f0784c7b40e8151dcd9",
"vcs_repository_url_full": "https://github.com/liatrio/liatrio-backstage"
},
"values": [
[
"1726015336369465405",
"{\"action\":\"created\",\"deployment\":{\"created_at\":\"2024-09-11T00:42:15Z\",\"environment\":\"prod\",\"id\":1788673996,\"ref\":\"v0.77.0\",\"sha\":\"3c56d9f1661b4c55c3de0f0784c7b40e8151dcd9\",\"task\":\"deploy\",\"updated_at\":\"2024-09-11T00:42:15Z\",\"url\":\"https://api.github.com/repos/liatrio/liatrio-backstage/deployments/1788673996\"},\"deployment_status\":{\"environment\":\"prod\",\"state\":\"success\",\"url\":\"https://api.github.com/repos/liatrio/liatrio-backstage/deployments/1788673996/statuses/4522458146\"},\"repository\":{\"custom_properties\":{},\"full_name\":\"liatrio/liatrio-backstage\",\"html_url\":\"https://github.com/liatrio/liatrio-backstage\",\"name\":\"liatrio-backstage\",\"owner\":{\"login\":\"liatrio\"}},\"workflow\":null}"
]
]
},
{
"stream": {
"deployment_environment_name": "plan",
"deployment_id": "1797483481",
"deployment_status": "success",
"environment_name": "dev",
"event_name": "deployment_created",
"loki_resource_labels": "service.name, service.namespace",
"receiver": "webhookevent",
"scope_name": "otlp/webhookevent",
"scope_version": "1.0.0",
"service_name": "k8s-platform-v3-infra-live",
"service_namespace": "github",
"source": "webhookevent",
"team_name": "liatrio",
"vcs_repository_name": "k8s-platform-v3-infra-live",
"vcs_repository_owner": "liatrio",
"vcs_repository_ref_revision": "b198c49dc97442a3efa5fee977f9ae8b80e4f23c",
"vcs_repository_url_full": "https://github.com/liatrio/k8s-platform-v3-infra-live"
},
"values": [
[
"1726254136252601111",
"{\"action\":\"created\",\"deployment\":{\"created_at\":\"2024-09-13T19:00:57Z\",\"environment\":\"plan\",\"id\":1797483481,\"ref\":\"isolated-nodepools\",\"sha\":\"b198c49dc97442a3efa5fee977f9ae8b80e4f23c\",\"task\":\"deploy\",\"updated_at\":\"2024-09-13T19:02:15Z\",\"url\":\"https://api.github.com/repos/liatrio/k8s-platform-v3-infra-live/deployments/1797483481\"},\"deployment_status\":{\"environment\":\"plan\",\"state\":\"success\",\"url\":\"https://api.github.com/repos/liatrio/k8s-platform-v3-infra-live/deployments/1797483481/statuses/4549082876\"},\"repository\":{\"custom_properties\":{},\"full_name\":\"liatrio/k8s-platform-v3-infra-live\",\"html_url\":\"https://github.com/liatrio/k8s-platform-v3-infra-live\",\"name\":\"k8s-platform-v3-infra-live\",\"owner\":{\"login\":\"liatrio\"}},\"workflow\":{\"name\":\"Terraform Plan\",\"path\":\".github/workflows/pr-plan.yaml\",\"url\":\"https://api.github.com/repos/liatrio/k8s-platform-v3-infra-live/actions/workflows/106129184\"},\"workflow_run\":{\"display_title\":\"feat: isolate nodepools with karpenter\",\"head_branch\":\"isolated-nodepools\",\"head_sha\":\"b198c49dc97442a3efa5fee977f9ae8b80e4f23c\",\"run_number\":89,\"status\":\"completed\",\"workflow_id\":106129184}}"
]
]
},
{
"stream": {
"deployment_environment_name": "plan",
"deployment_id": "1773493261",
"deployment_status": "failure",
"environment_name": "dev",
"event_name": "deployment_created",
"loki_resource_labels": "service.name, service.namespace",
"receiver": "webhookevent",
"scope_name": "otlp/webhookevent",
"scope_version": "1.0.0",
"service_name": "k8s-platform-v3-infra-live",
"service_namespace": "github",
"source": "webhookevent",
"team_name": "liatrio",
"vcs_repository_name": "k8s-platform-v3-infra-live",
"vcs_repository_owner": "liatrio",
"vcs_repository_ref_revision": "17c415117af88463129f3693d4a1ac900a143d53",
"vcs_repository_url_full": "https://github.com/liatrio/k8s-platform-v3-infra-live"
},
"values": [
[
"1725481048341992285",
"{\"action\":\"created\",\"deployment\":{\"created_at\":\"2024-09-04T20:15:57Z\",\"environment\":\"plan\",\"id\":1773493261,\"ref\":\"update-eks\",\"sha\":\"17c415117af88463129f3693d4a1ac900a143d53\",\"task\":\"deploy\",\"updated_at\":\"2024-09-04T20:17:27Z\",\"url\":\"https://api.github.com/repos/liatrio/k8s-platform-v3-infra-live/deployments/1773493261\"},\"deployment_status\":{\"environment\":\"plan\",\"state\":\"failure\",\"url\":\"https://api.github.com/repos/liatrio/k8s-platform-v3-infra-live/deployments/1773493261/statuses/4476272924\"},\"repository\":{\"custom_properties\":{},\"full_name\":\"liatrio/k8s-platform-v3-infra-live\",\"html_url\":\"https://github.com/liatrio/k8s-platform-v3-infra-live\",\"name\":\"k8s-platform-v3-infra-live\",\"owner\":{\"login\":\"liatrio\"}},\"workflow\":{\"name\":\"Terraform Plan\",\"path\":\".github/workflows/pr-plan.yaml\",\"url\":\"https://api.github.com/repos/liatrio/k8s-platform-v3-infra-live/actions/workflows/106129184\"}}"
]
]
},
{
"stream": {
"deployment_environment_name": "plan",
"deployment_id": "1773487896",
"deployment_status": "success",
"environment_name": "dev",
"event_name": "deployment_created",
"loki_resource_labels": "service.name, service.namespace",
"receiver": "webhookevent",
"scope_name": "otlp/webhookevent",
"scope_version": "1.0.0",
"service_name": "k8s-platform-v3-infra-live",
"service_namespace": "github",
"source": "webhookevent",
"team_name": "liatrio",
"vcs_repository_name": "k8s-platform-v3-infra-live",
"vcs_repository_owner": "liatrio",
"vcs_repository_ref_revision": "17c415117af88463129f3693d4a1ac900a143d53",
"vcs_repository_url_full": "https://github.com/liatrio/k8s-platform-v3-infra-live"
},
"values": [
[
"1725480906784845705",
"{\"action\":\"created\",\"deployment\":{\"created_at\":\"2024-09-04T20:13:32Z\",\"environment\":\"plan\",\"id\":1773487896,\"ref\":\"update-eks\",\"sha\":\"17c415117af88463129f3693d4a1ac900a143d53\",\"task\":\"deploy\",\"updated_at\":\"2024-09-04T20:15:05Z\",\"url\":\"https://api.github.com/repos/liatrio/k8s-platform-v3-infra-live/deployments/1773487896\"},\"deployment_status\":{\"environment\":\"plan\",\"state\":\"success\",\"url\":\"https://api.github.com/repos/liatrio/k8s-platform-v3-infra-live/deployments/1773487896/statuses/4476256658\"},\"repository\":{\"custom_properties\":{},\"full_name\":\"liatrio/k8s-platform-v3-infra-live\",\"html_url\":\"https://github.com/liatrio/k8s-platform-v3-infra-live\",\"name\":\"k8s-platform-v3-infra-live\",\"owner\":{\"login\":\"liatrio\"}},\"workflow\":{\"name\":\"Terraform Plan\",\"path\":\".github/workflows/pr-plan.yaml\",\"url\":\"https://api.github.com/repos/liatrio/k8s-platform-v3-infra-live/actions/workflows/106129184\"}}"
]
]
},
{
"stream": {
"deployment_environment_name": "plan",
"deployment_id": "1773487871",
"deployment_status": "failure",
"environment_name": "dev",
"event_name": "deployment_created",
"loki_resource_labels": "service.name, service.namespace",
"receiver": "webhookevent",
"scope_name": "otlp/webhookevent",
"scope_version": "1.0.0",
"service_name": "k8s-platform-v3-infra-live",
"service_namespace": "github",
"source": "webhookevent",
"team_name": "liatrio",
"vcs_repository_name": "k8s-platform-v3-infra-live",
"vcs_repository_owner": "liatrio",
"vcs_repository_ref_revision": "17c415117af88463129f3693d4a1ac900a143d53",
"vcs_repository_url_full": "https://github.com/liatrio/k8s-platform-v3-infra-live"
},
"values": [
[
"1725480921575063536",
"{\"action\":\"created\",\"deployment\":{\"created_at\":\"2024-09-04T20:13:31Z\",\"environment\":\"plan\",\"id\":1773487871,\"ref\":\"update-eks\",\"sha\":\"17c415117af88463129f3693d4a1ac900a143d53\",\"task\":\"deploy\",\"updated_at\":\"2024-09-04T20:15:20Z\",\"url\":\"https://api.github.com/repos/liatrio/k8s-platform-v3-infra-live/deployments/1773487871\"},\"deployment_status\":{\"environment\":\"plan\",\"state\":\"failure\",\"url\":\"https://api.github.com/repos/liatrio/k8s-platform-v3-infra-live/deployments/1773487871/statuses/4476258329\"},\"repository\":{\"custom_properties\":{},\"full_name\":\"liatrio/k8s-platform-v3-infra-live\",\"html_url\":\"https://github.com/liatrio/k8s-platform-v3-infra-live\",\"name\":\"k8s-platform-v3-infra-live\",\"owner\":{\"login\":\"liatrio\"}},\"workflow\":{\"name\":\"Terraform Plan\",\"path\":\".github/workflows/pr-plan.yaml\",\"url\":\"https://api.github.com/repos/liatrio/k8s-platform-v3-infra-live/actions/workflows/106129184\"}}"
]
]
},
{
"stream": {
"deployment_environment_name": "plan",
"deployment_id": "1759965707",
"deployment_status": "failure",
"environment_name": "dev",
"event_name": "deployment_created",
"loki_resource_labels": "service.name, service.namespace",
"receiver": "webhookevent",
"scope_name": "otlp/webhookevent",
"scope_version": "1.0.0",
"service_name": "k8s-platform-v3-infra-live",
"service_namespace": "github",
"source": "webhookevent",
"team_name": "liatrio",
"vcs_repository_name": "k8s-platform-v3-infra-live",
"vcs_repository_owner": "liatrio",
"vcs_repository_ref_revision": "1444a40c568dc4f79eb935f4b5519fac76b991c1",
"vcs_repository_url_full": "https://github.com/liatrio/k8s-platform-v3-infra-live"
},
"values": [
[
"1724972419716951854",
"{\"action\":\"created\",\"deployment\":{\"created_at\":\"2024-08-29T22:58:33Z\",\"environment\":\"plan\",\"id\":1759965707,\"ref\":\"renovate/mgmt-github.com-liatrio-k8s-platform-v3-infra-modules-0.x\",\"sha\":\"1444a40c568dc4f79eb935f4b5519fac76b991c1\",\"task\":\"deploy\",\"updated_at\":\"2024-08-29T23:00:18Z\",\"url\":\"https://api.github.com/repos/liatrio/k8s-platform-v3-infra-live/deployments/1759965707\"},\"deployment_status\":{\"environment\":\"plan\",\"state\":\"failure\",\"url\":\"https://api.github.com/repos/liatrio/k8s-platform-v3-infra-live/deployments/1759965707/statuses/4435321491\"},\"repository\":{\"custom_properties\":{},\"full_name\":\"liatrio/k8s-platform-v3-infra-live\",\"html_url\":\"https://github.com/liatrio/k8s-platform-v3-infra-live\",\"name\":\"k8s-platform-v3-infra-live\",\"owner\":{\"login\":\"liatrio\"}},\"workflow\":{\"name\":\"Terraform Plan\",\"path\":\".github/workflows/pr-plan.yaml\",\"url\":\"https://api.github.com/repos/liatrio/k8s-platform-v3-infra-live/actions/workflows/106129184\"}}"
]
]
},
{
"stream": {
"deployment_environment_name": "nonprod",
"deployment_id": "1796905824",
"deployment_status": "success",
"environment_name": "dev",
"event_name": "deployment_created",
"loki_resource_labels": "service.name, service.namespace",
"receiver": "webhookevent",
"scope_name": "otlp/webhookevent",
"scope_version": "1.0.0",
"service_name": "gratibot",
"service_namespace": "github",
"source": "webhookevent",
"team_name": "liatrio",
"vcs_repository_name": "gratibot",
"vcs_repository_owner": "liatrio",
"vcs_repository_ref_revision": "7a8a4082af95a33b837b9d39536ea2984a324c5a",
"vcs_repository_url_full": "https://github.com/liatrio/gratibot"
},
"values": [
[
"1726239793531190790",
"{\"action\":\"created\",\"deployment\":{\"created_at\":\"2024-09-13T15:01:31Z\",\"environment\":\"nonprod\",\"id\":1796905824,\"ref\":\"main\",\"sha\":\"7a8a4082af95a33b837b9d39536ea2984a324c5a\",\"task\":\"deploy\",\"updated_at\":\"2024-09-13T15:03:11Z\",\"url\":\"https://api.github.com/repos/liatrio/gratibot/deployments/1796905824\"},\"deployment_status\":{\"environment\":\"nonprod\",\"state\":\"success\",\"url\":\"https://api.github.com/repos/liatrio/gratibot/deployments/1796905824/statuses/4547334612\"},\"repository\":{\"custom_properties\":{},\"full_name\":\"liatrio/gratibot\",\"html_url\":\"https://github.com/liatrio/gratibot\",\"name\":\"gratibot\",\"owner\":{\"login\":\"liatrio\"}},\"workflow\":{\"name\":\"Release\",\"path\":\".github/workflows/release.yml\",\"url\":\"https://api.github.com/repos/liatrio/gratibot/actions/workflows/56848130\"},\"workflow_run\":{\"display_title\":\"chore(deps): bump path-to-regexp and express (#602)\",\"head_branch\":\"main\",\"head_sha\":\"7a8a4082af95a33b837b9d39536ea2984a324c5a\",\"run_number\":193,\"status\":\"queued\",\"workflow_id\":56848130}}"
]
]
},
{
"stream": {
"deployment_environment_name": "nonprod",
"deployment_id": "1787387517",
"deployment_status": "success",
"environment_name": "dev",
"event_name": "deployment_created",
"loki_resource_labels": "service.name, service.namespace",
"receiver": "webhookevent",
"scope_name": "otlp/webhookevent",
"scope_version": "1.0.0",
"service_name": "gratibot",
"service_namespace": "github",
"source": "webhookevent",
"team_name": "liatrio",
"vcs_repository_name": "gratibot",
"vcs_repository_owner": "liatrio",
"vcs_repository_ref_revision": "48ffe94044b6971f3dfcb78bf5010764a1bb60bb",
"vcs_repository_url_full": "https://github.com/liatrio/gratibot"
},
"values": [
[
"1725981029050373793",
"{\"action\":\"created\",\"deployment\":{\"created_at\":\"2024-09-10T15:09:01Z\",\"environment\":\"nonprod\",\"id\":1787387517,\"ref\":\"main\",\"sha\":\"48ffe94044b6971f3dfcb78bf5010764a1bb60bb\",\"task\":\"deploy\",\"updated_at\":\"2024-09-10T15:10:26Z\",\"url\":\"https://api.github.com/repos/liatrio/gratibot/deployments/1787387517\"},\"deployment_status\":{\"environment\":\"nonprod\",\"state\":\"success\",\"url\":\"https://api.github.com/repos/liatrio/gratibot/deployments/1787387517/statuses/4518498182\"},\"repository\":{\"custom_properties\":{},\"full_name\":\"liatrio/gratibot\",\"html_url\":\"https://github.com/liatrio/gratibot\",\"name\":\"gratibot\",\"owner\":{\"login\":\"liatrio\"}},\"workflow\":{\"name\":\"Release\",\"path\":\".github/workflows/release.yml\",\"url\":\"https://api.github.com/repos/liatrio/gratibot/actions/workflows/56848130\"}}"
]
]
},
{
"stream": {
"deployment_environment_name": "nonprod",
"deployment_id": "1787365714",
"deployment_status": "success",
"environment_name": "dev",
"event_name": "deployment_created",
"loki_resource_labels": "service.name, service.namespace",
"receiver": "webhookevent",
"scope_name": "otlp/webhookevent",
"scope_version": "1.0.0",
"service_name": "gratibot",
"service_namespace": "github",
"source": "webhookevent",
"team_name": "liatrio",
"vcs_repository_name": "gratibot",
"vcs_repository_owner": "liatrio",
"vcs_repository_ref_revision": "e2ba1c4a892c938d404b5889e2dd78fa5b94d520",
"vcs_repository_url_full": "https://github.com/liatrio/gratibot"
},
"values": [
[
"1725980675165676554",
"{\"action\":\"created\",\"deployment\":{\"created_at\":\"2024-09-10T15:03:13Z\",\"environment\":\"nonprod\",\"id\":1787365714,\"ref\":\"main\",\"sha\":\"e2ba1c4a892c938d404b5889e2dd78fa5b94d520\",\"task\":\"deploy\",\"updated_at\":\"2024-09-10T15:04:33Z\",\"url\":\"https://api.github.com/repos/liatrio/gratibot/deployments/1787365714\"},\"deployment_status\":{\"environment\":\"nonprod\",\"state\":\"success\",\"url\":\"https://api.github.com/repos/liatrio/gratibot/deployments/1787365714/statuses/4518434758\"},\"repository\":{\"custom_properties\":{},\"full_name\":\"liatrio/gratibot\",\"html_url\":\"https://github.com/liatrio/gratibot\",\"name\":\"gratibot\",\"owner\":{\"login\":\"liatrio\"}},\"workflow\":{\"name\":\"Release\",\"path\":\".github/workflows/release.yml\",\"url\":\"https://api.github.com/repos/liatrio/gratibot/actions/workflows/56848130\"}}"
]
]
},
{
"stream": {
"deployment_environment_name": "nonprod",
"deployment_id": "1787341778",
"deployment_status": "success",
"environment_name": "dev",
"event_name": "deployment_created",
"loki_resource_labels": "service.name, service.namespace",
"receiver": "webhookevent",
"scope_name": "otlp/webhookevent",
"scope_version": "1.0.0",
"service_name": "gratibot",
"service_namespace": "github",
"source": "webhookevent",
"team_name": "liatrio",
"vcs_repository_name": "gratibot",
"vcs_repository_owner": "liatrio",
"vcs_repository_ref_revision": "2352a8193c8a8be399e7705edf5d89786147b476",
"vcs_repository_url_full": "https://github.com/liatrio/gratibot"
},
"values": [
[
"1725980263361275630",