-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy pathmembers.yaml
More file actions
3260 lines (3260 loc) · 111 KB
/
members.yaml
File metadata and controls
3260 lines (3260 loc) · 111 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
governance-committee:
- name: alolita
html_url: https://github.com/alolita
avatar_url: https://avatars.githubusercontent.com/u/1942529?v=4
- name: austinlparker
html_url: https://github.com/austinlparker
avatar_url: https://avatars.githubusercontent.com/u/4140740?v=4
- name: jpkrohling
html_url: https://github.com/jpkrohling
avatar_url: https://avatars.githubusercontent.com/u/13387?v=4
- name: maryliag
html_url: https://github.com/maryliag
avatar_url: https://avatars.githubusercontent.com/u/1017486?v=4
- name: mtwo
html_url: https://github.com/mtwo
avatar_url: https://avatars.githubusercontent.com/u/1144235?v=4
- name: mx-psi
html_url: https://github.com/mx-psi
avatar_url: https://avatars.githubusercontent.com/u/5502710?v=4
- name: svrnm
html_url: https://github.com/svrnm
avatar_url: https://avatars.githubusercontent.com/u/1519757?v=4
- name: tedsuo
html_url: https://github.com/tedsuo
avatar_url: https://avatars.githubusercontent.com/u/24074?v=4
- name: trask
html_url: https://github.com/trask
avatar_url: https://avatars.githubusercontent.com/u/218610?v=4
spec-sponsors:
- name: cijothomas
html_url: https://github.com/cijothomas
avatar_url: https://avatars.githubusercontent.com/u/5232798?v=4
- name: codeboten
html_url: https://github.com/codeboten
avatar_url: https://avatars.githubusercontent.com/u/223565?v=4
- name: dyladan
html_url: https://github.com/dyladan
avatar_url: https://avatars.githubusercontent.com/u/1612643?v=4
- name: jpkrohling
html_url: https://github.com/jpkrohling
avatar_url: https://avatars.githubusercontent.com/u/13387?v=4
- name: lzchen
html_url: https://github.com/lzchen
avatar_url: https://avatars.githubusercontent.com/u/11580155?v=4
- name: marcalff
html_url: https://github.com/marcalff
avatar_url: https://avatars.githubusercontent.com/u/17238896?v=4
- name: MrAlias
html_url: https://github.com/MrAlias
avatar_url: https://avatars.githubusercontent.com/u/5543599?v=4
- name: Oberon00
html_url: https://github.com/Oberon00
avatar_url: https://avatars.githubusercontent.com/u/849039?v=4
- name: pellared
html_url: https://github.com/pellared
avatar_url: https://avatars.githubusercontent.com/u/5067549?v=4
- name: svrnm
html_url: https://github.com/svrnm
avatar_url: https://avatars.githubusercontent.com/u/1519757?v=4
- name: tedsuo
html_url: https://github.com/tedsuo
avatar_url: https://avatars.githubusercontent.com/u/24074?v=4
- name: tsloughter
html_url: https://github.com/tsloughter
avatar_url: https://avatars.githubusercontent.com/u/36227?v=4
technical-committee:
- name: arminru
html_url: https://github.com/arminru
avatar_url: https://avatars.githubusercontent.com/u/7052238?v=4
- name: bogdandrutu
html_url: https://github.com/bogdandrutu
avatar_url: https://avatars.githubusercontent.com/u/1373887?v=4
- name: carlosalberto
html_url: https://github.com/carlosalberto
avatar_url: https://avatars.githubusercontent.com/u/260065?v=4
- name: dashpole
html_url: https://github.com/dashpole
avatar_url: https://avatars.githubusercontent.com/u/3262098?v=4
- name: jack-berg
html_url: https://github.com/jack-berg
avatar_url: https://avatars.githubusercontent.com/u/34418638?v=4
- name: jmacd
html_url: https://github.com/jmacd
avatar_url: https://avatars.githubusercontent.com/u/3629705?v=4
- name: jsuereth
html_url: https://github.com/jsuereth
avatar_url: https://avatars.githubusercontent.com/u/29006?v=4
- name: lmolkova
html_url: https://github.com/lmolkova
avatar_url: https://avatars.githubusercontent.com/u/2347409?v=4
- name: reyang
html_url: https://github.com/reyang
avatar_url: https://avatars.githubusercontent.com/u/17327289?v=4
- name: tigrannajaryan
html_url: https://github.com/tigrannajaryan
avatar_url: https://avatars.githubusercontent.com/u/4194920?v=4
maintainers:
- name: 123liuziming
teams:
- go-compile-instrumentation-approvers
- go-compile-instrumentation-maintainers
- go-compile-instrumentation-triagers
html_url: https://github.com/123liuziming
avatar_url: https://avatars.githubusercontent.com/u/32130965?v=4
- name: aabmass
teams:
- javascript-contrib-triagers
- opentelemetry-python-contrib-approvers
- opentelemetry-python-contrib-maintainers
- python-approvers
- python-maintainers
- semconv-genai-approvers
- sqlcommenter-approvers
- sqlcommenter-maintainers
html_url: https://github.com/aabmass
avatar_url: https://avatars.githubusercontent.com/u/1510004?v=4
- name: ahayworth
teams:
- ruby-approvers
- ruby-contrib-approvers
- ruby-contrib-maintainers
- ruby-contrib-triagers
html_url: https://github.com/ahayworth
avatar_url: https://avatars.githubusercontent.com/u/1781907?v=4
- name: alanwest
teams:
- dotnet-approvers
- dotnet-contrib-approvers
- dotnet-contrib-maintainers
- dotnet-contrib-triagers
- dotnet-maintainers
- dotnet-triagers
- semconv-db-approvers
html_url: https://github.com/alanwest
avatar_url: https://avatars.githubusercontent.com/u/3676547?v=4
- name: albertlockett
teams:
- arrow-approvers
- arrow-maintainers
- arrow-triagers
html_url: https://github.com/albertlockett
avatar_url: https://avatars.githubusercontent.com/u/5846846?v=4
- name: AlexanderWert
teams:
- semconv-sdk-health-approvers
- specs-semconv-approvers
- specs-semconv-maintainers
html_url: https://github.com/AlexanderWert
avatar_url: https://avatars.githubusercontent.com/u/866830?v=4
- name: amy-super
teams:
- sig-contributor-experience-approvers
- sig-contributor-experience-maintainers
html_url: https://github.com/amy-super
avatar_url: https://avatars.githubusercontent.com/u/87499219?v=4
- name: AndrejKiri
teams:
- sig-end-user-approvers
- sig-end-user-maintainers
- sig-end-user-triagers
html_url: https://github.com/AndrejKiri
avatar_url: https://avatars.githubusercontent.com/u/4126171?v=4
- name: andrzej-stencel
teams:
- collector-contrib-approvers
- collector-contrib-maintainers
- collector-contrib-triagers
- collector-releases-approvers
- collector-releases-maintainers
- collector-triagers
- docs-pl-approvers
html_url: https://github.com/andrzej-stencel
avatar_url: https://avatars.githubusercontent.com/u/70892616?v=4
- name: andykellr
teams:
- opamp-go-approvers
- opamp-go-maintainers
- opamp-spec-approvers
- opamp-spec-maintainers
html_url: https://github.com/andykellr
avatar_url: https://avatars.githubusercontent.com/u/2660251?v=4
- name: ArielDemarco
teams:
- swift-approvers
- swift-core-approvers
- swift-core-maintainers
- swift-core-triagers
- swift-maintainers
- swift-triagers
html_url: https://github.com/ArielDemarco
avatar_url: https://avatars.githubusercontent.com/u/25651947?v=4
- name: arielvalentin
teams:
- ruby-approvers
- ruby-contrib-approvers
- ruby-contrib-maintainers
- ruby-contrib-triagers
html_url: https://github.com/arielvalentin
avatar_url: https://avatars.githubusercontent.com/u/82798?v=4
- name: arminru
teams:
- proto-approvers
- proto-maintainers
- proto-triagers
- specs-approvers
- specs-maintainers
- specs-semconv-approvers
- specs-semconv-maintainers
- specs-triagers
html_url: https://github.com/arminru
avatar_url: https://avatars.githubusercontent.com/u/7052238?v=4
- name: atoulme
teams:
- collector-approvers
- collector-contrib-approvers
- collector-contrib-maintainers
- collector-contrib-triagers
- collector-releases-approvers
- collector-releases-maintainers
- collector-triagers
- injector-approvers
- injector-maintainers
- network-triagers
- operator-approvers
- operator-triagers
html_url: https://github.com/atoulme
avatar_url: https://avatars.githubusercontent.com/u/16758?v=4
- name: austinlparker
teams:
- docs-approvers
- docs-bn-approvers
- docs-bn-maintainers
- docs-es-approvers
- docs-es-maintainers
- docs-fr-approvers
- docs-fr-maintainers
- docs-maintainers
- docs-pl-approvers
- docs-pl-maintainers
- docs-pt-approvers
- docs-pt-maintainers
- docs-ro-approvers
- docs-ro-maintainers
- docs-triagers
- docs-uk-approvers
- docs-uk-maintainers
- semconv-log-approvers
- sig-developer-experience-approvers
- sig-developer-experience-maintainers
- sig-project-infra-approvers
- sig-project-infra-maintainers
- social-media-approvers
- specs-triagers
html_url: https://github.com/austinlparker
avatar_url: https://avatars.githubusercontent.com/u/4140740?v=4
- name: avillela
teams:
- sig-end-user-approvers
- sig-end-user-maintainers
- sig-end-user-triagers
- social-media-approvers
html_url: https://github.com/avillela
avatar_url: https://avatars.githubusercontent.com/u/50256412?v=4
- name: basti1302
teams:
- injector-approvers
- injector-maintainers
html_url: https://github.com/basti1302
avatar_url: https://avatars.githubusercontent.com/u/73801?v=4
- name: bjandras
teams:
- network-approvers
- network-maintainers
- network-triagers
html_url: https://github.com/bjandras
avatar_url: https://avatars.githubusercontent.com/u/1910782?v=4
- name: bobstrecansky
teams:
- php-approvers
- php-distro-approvers
- php-distro-maintainers
- php-maintainers
- php-triagers
html_url: https://github.com/bobstrecansky
avatar_url: https://avatars.githubusercontent.com/u/4099109?v=4
- name: bogdandrutu
teams:
- collector-approvers
- collector-contrib-approvers
- collector-contrib-maintainers
- collector-contrib-triagers
- collector-maintainers
- collector-releases-approvers
- collector-releases-maintainers
- collector-triagers
- proto-approvers
- proto-maintainers
- proto-triagers
- specs-approvers
- specs-maintainers
- specs-triagers
html_url: https://github.com/bogdandrutu
avatar_url: https://avatars.githubusercontent.com/u/1373887?v=4
- name: breedx-splk
teams:
- android-approvers
- android-maintainers
- android-triagers
- java-approvers
- java-contrib-approvers
- java-contrib-maintainers
- java-instrumentation-approvers
- java-instrumentation-triagers
- java-triagers
- kotlin-approvers
- kotlin-maintainers
- semconv-android-approvers
- semconv-client-approvers
- semconv-log-approvers
- semconv-mobile-approvers
html_url: https://github.com/breedx-splk
avatar_url: https://avatars.githubusercontent.com/u/75337021?v=4
- name: brettmc
teams:
- configuration-approvers
- php-approvers
- php-distro-approvers
- php-distro-maintainers
- php-maintainers
- php-triagers
html_url: https://github.com/brettmc
avatar_url: https://avatars.githubusercontent.com/u/4978962?v=4
- name: bryannaegele
teams:
- erlang-approvers
- erlang-contrib-approvers
- erlang-contrib-maintainers
- erlang-maintainers
html_url: https://github.com/bryannaegele
avatar_url: https://avatars.githubusercontent.com/u/5731285?v=4
- name: bryce-b
teams:
- semconv-client-approvers
- semconv-ios-approvers
- semconv-mobile-approvers
- swift-approvers
- swift-core-approvers
- swift-core-maintainers
- swift-core-triagers
- swift-maintainers
- swift-triagers
html_url: https://github.com/bryce-b
avatar_url: https://avatars.githubusercontent.com/u/75274611?v=4
- name: carlosalberto
teams:
- proto-approvers
- proto-maintainers
- proto-triagers
- semconv-cicd-approvers
- semconv-messaging-approvers
- specs-approvers
- specs-maintainers
- specs-triagers
html_url: https://github.com/carlosalberto
avatar_url: https://avatars.githubusercontent.com/u/260065?v=4
- name: cartermp
teams:
- docs-approvers
- docs-bn-approvers
- docs-bn-maintainers
- docs-es-approvers
- docs-es-maintainers
- docs-fr-approvers
- docs-fr-maintainers
- docs-ja-approvers
- docs-ja-maintainers
- docs-maintainers
- docs-pl-approvers
- docs-pl-maintainers
- docs-pt-approvers
- docs-pt-maintainers
- docs-ro-approvers
- docs-ro-maintainers
- docs-triagers
- docs-uk-approvers
- docs-uk-maintainers
- docs-zh-approvers
- docs-zh-maintainers
- social-media-approvers
html_url: https://github.com/cartermp
avatar_url: https://avatars.githubusercontent.com/u/6309070?v=4
- name: chalin
teams:
- docs-approvers
- docs-bn-approvers
- docs-bn-maintainers
- docs-es-approvers
- docs-es-maintainers
- docs-fr-approvers
- docs-fr-maintainers
- docs-ja-approvers
- docs-ja-maintainers
- docs-maintainers
- docs-pl-approvers
- docs-pl-maintainers
- docs-pt-approvers
- docs-pt-maintainers
- docs-ro-approvers
- docs-ro-maintainers
- docs-triagers
- docs-uk-approvers
- docs-uk-maintainers
- docs-zh-approvers
- docs-zh-maintainers
- social-media-approvers
html_url: https://github.com/chalin
avatar_url: https://avatars.githubusercontent.com/u/4140793?v=4
- name: christos68k
teams:
- ebpf-profiler-approvers
- ebpf-profiler-maintainers
- profiling-approvers
- profiling-maintainers
- profiling-triagers
- proto-approvers
- proto-triagers
html_url: https://github.com/christos68k
avatar_url: https://avatars.githubusercontent.com/u/77498532?v=4
- name: ChrsMark
teams:
- collector-contrib-approvers
- collector-contrib-maintainers
- collector-contrib-triagers
- collector-releases-approvers
- semconv-k8s-approvers
- semconv-system-approvers
html_url: https://github.com/ChrsMark
avatar_url: https://avatars.githubusercontent.com/u/11754898?v=4
- name: cijothomas
teams:
- arrow-approvers
- arrow-triagers
- dotnet-approvers
- dotnet-triagers
- proto-approvers
- proto-triagers
- rust-approvers
- rust-maintainers
- specs-approvers
- specs-metrics-approvers
- specs-triagers
html_url: https://github.com/cijothomas
avatar_url: https://avatars.githubusercontent.com/u/5232798?v=4
- name: codeboten
teams:
- collector-approvers
- collector-contrib-approvers
- collector-contrib-maintainers
- collector-contrib-triagers
- collector-maintainers
- collector-releases-approvers
- collector-releases-maintainers
- collector-triagers
- configuration-approvers
- configuration-maintainers
- docs-fr-approvers
- docs-fr-maintainers
- proto-approvers
- proto-triagers
- specs-approvers
- specs-triagers
html_url: https://github.com/codeboten
avatar_url: https://avatars.githubusercontent.com/u/223565?v=4
- name: cyrille-leclerc
teams:
- demo-approvers
- demo-maintainers
html_url: https://github.com/cyrille-leclerc
avatar_url: https://avatars.githubusercontent.com/u/459691?v=4
- name: damemi
teams:
- ebpf-instrumentation-approvers
- ebpf-instrumentation-maintainers
- go-instrumentation-approvers
- go-instrumentation-maintainers
- go-instrumentation-triagers
html_url: https://github.com/damemi
avatar_url: https://avatars.githubusercontent.com/u/1839101?v=4
- name: danielgblanco
teams:
- sig-end-user-approvers
- sig-end-user-maintainers
- sig-end-user-triagers
- social-media-approvers
- specs-triagers
html_url: https://github.com/danielgblanco
avatar_url: https://avatars.githubusercontent.com/u/4158734?v=4
- name: dashpole
teams:
- collector-contrib-approvers
- collector-contrib-triagers
- collector-releases-approvers
- go-approvers
- go-maintainers
- go-triagers
- javascript-contrib-triagers
- proto-approvers
- proto-triagers
- semconv-k8s-approvers
- semconv-oracle-cloud-approvers
- specs-approvers
- specs-triagers
html_url: https://github.com/dashpole
avatar_url: https://avatars.githubusercontent.com/u/3262098?v=4
- name: david-luna
teams:
- browser-approvers
- browser-maintainers
- javascript-approvers
- javascript-contrib-triagers
- javascript-maintainers
- javascript-triagers
html_url: https://github.com/david-luna
avatar_url: https://avatars.githubusercontent.com/u/999029?v=4
- name: dazuma
teams:
- ruby-approvers
- ruby-contrib-approvers
- ruby-contrib-maintainers
- ruby-contrib-triagers
- ruby-maintainers
html_url: https://github.com/dazuma
avatar_url: https://avatars.githubusercontent.com/u/8911?v=4
- name: dbarker
teams:
- cpp-approvers
- cpp-contrib-approvers
- cpp-contrib-maintainers
- cpp-maintainers
html_url: https://github.com/dbarker
avatar_url: https://avatars.githubusercontent.com/u/3782873?v=4
- name: dineshg13
teams:
- go-compile-instrumentation-approvers
- go-compile-instrumentation-maintainers
- go-compile-instrumentation-triagers
html_url: https://github.com/dineshg13
avatar_url: https://avatars.githubusercontent.com/u/2471669?v=4
- name: dmathieu
teams:
- collector-approvers
- collector-releases-approvers
- collector-releases-maintainers
- collector-triagers
- docs-fr-approvers
- docs-fr-maintainers
- ebpf-profiler-approvers
- go-approvers
- go-maintainers
- go-triagers
- sig-developer-experience-approvers
- sig-developer-experience-maintainers
html_url: https://github.com/dmathieu
avatar_url: https://avatars.githubusercontent.com/u/9347?v=4
- name: dmitryax
teams:
- collector-approvers
- collector-contrib-approvers
- collector-contrib-maintainers
- collector-contrib-triagers
- collector-maintainers
- collector-releases-approvers
- collector-releases-maintainers
- collector-triagers
- helm-approvers
- helm-maintainers
- helm-triagers
- semconv-k8s-approvers
- semconv-system-approvers
- specs-entities-approvers
html_url: https://github.com/dmitryax
avatar_url: https://avatars.githubusercontent.com/u/6628631?v=4
- name: drewrelmas
teams:
- arrow-approvers
- arrow-maintainers
- arrow-triagers
html_url: https://github.com/drewrelmas
avatar_url: https://avatars.githubusercontent.com/u/13971805?v=4
- name: dyladan
teams:
- javascript-approvers
- javascript-contrib-triagers
- javascript-maintainers
- javascript-triagers
- proto-approvers
- proto-triagers
- semconv-feature-flag-approvers
- specs-approvers
- specs-entities-approvers
- specs-semconv-approvers
- specs-triagers
html_url: https://github.com/dyladan
avatar_url: https://avatars.githubusercontent.com/u/1612643?v=4
- name: edeNFed
teams:
- go-instrumentation-approvers
- go-instrumentation-maintainers
- go-instrumentation-triagers
html_url: https://github.com/edeNFed
avatar_url: https://avatars.githubusercontent.com/u/5587419?v=4
- name: edmocosta
teams:
- collector-contrib-approvers
- collector-contrib-maintainers
- collector-contrib-triagers
- collector-releases-approvers
- collector-releases-maintainers
html_url: https://github.com/edmocosta
avatar_url: https://avatars.githubusercontent.com/u/11836452?v=4
- name: emdneto
teams:
- docs-pt-approvers
- docs-pt-maintainers
- docs-triagers
- opentelemetry-python-contrib-approvers
- python-approvers
html_url: https://github.com/emdneto
avatar_url: https://avatars.githubusercontent.com/u/9735060?v=4
- name: ericmustin
teams:
- ruby-approvers
- ruby-contrib-approvers
- ruby-contrib-maintainers
- ruby-contrib-triagers
html_url: https://github.com/ericmustin
avatar_url: https://avatars.githubusercontent.com/u/14250318?v=4
- name: esigo
teams:
- cpp-approvers
- cpp-contrib-approvers
- cpp-contrib-maintainers
- cpp-maintainers
html_url: https://github.com/esigo
avatar_url: https://avatars.githubusercontent.com/u/71217171?v=4
- name: evan-bradley
teams:
- collector-approvers
- collector-contrib-approvers
- collector-contrib-maintainers
- collector-contrib-triagers
- collector-releases-approvers
- collector-releases-maintainers
- collector-triagers
- opamp-go-approvers
- opamp-spec-approvers
html_url: https://github.com/evan-bradley
avatar_url: https://avatars.githubusercontent.com/u/11745660?v=4
- name: EzzioMoreira
teams:
- docs-pt-approvers
- docs-pt-maintainers
- docs-triagers
html_url: https://github.com/EzzioMoreira
avatar_url: https://avatars.githubusercontent.com/u/18507157?v=4
- name: fabled
teams:
- ebpf-profiler-approvers
- ebpf-profiler-maintainers
html_url: https://github.com/fabled
avatar_url: https://avatars.githubusercontent.com/u/389042?v=4
- name: fbogsany
teams:
- ruby-approvers
- ruby-contrib-approvers
- ruby-contrib-maintainers
- ruby-contrib-triagers
- ruby-maintainers
html_url: https://github.com/fbogsany
avatar_url: https://avatars.githubusercontent.com/u/1551119?v=4
- name: felixge
teams:
- ebpf-profiler-approvers
- ebpf-profiler-maintainers
- profiling-approvers
- profiling-maintainers
- profiling-triagers
- proto-approvers
- proto-triagers
html_url: https://github.com/felixge
avatar_url: https://avatars.githubusercontent.com/u/15000?v=4
- name: fractalwrench
teams:
- android-approvers
- android-maintainers
- android-triagers
- kotlin-approvers
- kotlin-maintainers
html_url: https://github.com/fractalwrench
avatar_url: https://avatars.githubusercontent.com/u/11800640?v=4
- name: frzifus
teams:
- collector-contrib-triagers
- operator-approvers
- operator-maintainers
- operator-triagers
- semconv-k8s-approvers
- semconv-system-approvers
html_url: https://github.com/frzifus
avatar_url: https://avatars.githubusercontent.com/u/10403402?v=4
- name: grcevski
teams:
- ebpf-instrumentation-approvers
- ebpf-instrumentation-maintainers
- go-instrumentation-approvers
- go-instrumentation-triagers
- injector-approvers
- injector-maintainers
html_url: https://github.com/grcevski
avatar_url: https://avatars.githubusercontent.com/u/6207777?v=4
- name: gshriver
teams:
- sig-mainframe-approvers
- sig-mainframe-maintainers
- sig-mainframe-triagers
html_url: https://github.com/gshriver
avatar_url: https://avatars.githubusercontent.com/u/5203552?v=4
- name: hdost
teams:
- rust-approvers
- rust-maintainers
html_url: https://github.com/hdost
avatar_url: https://avatars.githubusercontent.com/u/643846?v=4
- name: intuibase
teams:
- php-distro-approvers
- php-distro-maintainers
html_url: https://github.com/intuibase
avatar_url: https://avatars.githubusercontent.com/u/9551626?v=4
- name: jack-berg
teams:
- configuration-approvers
- configuration-maintainers
- injector-approvers
- injector-maintainers
- java-approvers
- java-contrib-approvers
- java-contrib-maintainers
- java-instrumentation-approvers
- java-instrumentation-triagers
- java-maintainers
- java-triagers
- proto-approvers
- proto-maintainers
- proto-triagers
- semconv-db-approvers
- semconv-jvm-approvers
- specs-approvers
- specs-maintainers
- specs-triagers
html_url: https://github.com/jack-berg
avatar_url: https://avatars.githubusercontent.com/u/34418638?v=4
- name: JamieDanielson
teams:
- javascript-approvers
- javascript-contrib-triagers
- javascript-maintainers
- javascript-triagers
html_url: https://github.com/JamieDanielson
avatar_url: https://avatars.githubusercontent.com/u/29520003?v=4
- name: jaronoff97
teams:
- helm-approvers
- helm-maintainers
- helm-triagers
- injector-approvers
- injector-maintainers
- operator-approvers
- operator-maintainers
- operator-triagers
- sig-project-infra-approvers
html_url: https://github.com/jaronoff97
avatar_url: https://avatars.githubusercontent.com/u/10070047?v=4
- name: jaydeluca
teams:
- docs-approvers
- docs-triagers
- ecosystem-explorer-approvers
- ecosystem-explorer-maintainers
- java-contrib-approvers
- java-contrib-maintainers
- java-instrumentation-approvers
- java-instrumentation-triagers
html_url: https://github.com/jaydeluca
avatar_url: https://avatars.githubusercontent.com/u/7630696?v=4
- name: jerbly
teams:
- weaver-approvers
- weaver-maintainers
- weaver-package-approvers
- weaver-package-maintainers
- weaver-package-triagers
html_url: https://github.com/jerbly
avatar_url: https://avatars.githubusercontent.com/u/1909032?v=4
- name: jhalliday
teams:
- profiling-approvers
- profiling-maintainers
- profiling-triagers
- proto-approvers
- proto-triagers
html_url: https://github.com/jhalliday
avatar_url: https://avatars.githubusercontent.com/u/699246?v=4
- name: jkwatson
teams:
- java-approvers
- java-contrib-approvers
- java-instrumentation-approvers
- java-instrumentation-triagers
- java-maintainers
- java-triagers
html_url: https://github.com/jkwatson
avatar_url: https://avatars.githubusercontent.com/u/858731?v=4
- name: jmacd
teams:
- arrow-approvers
- arrow-maintainers
- arrow-triagers
- collector-approvers
- collector-contrib-approvers
- collector-contrib-triagers
- collector-triagers
- proto-approvers
- proto-triagers
- specs-approvers
- specs-triagers
html_url: https://github.com/jmacd
avatar_url: https://avatars.githubusercontent.com/u/3629705?v=4
- name: jmw51798
teams:
- network-approvers
- network-maintainers
- network-triagers
html_url: https://github.com/jmw51798
avatar_url: https://avatars.githubusercontent.com/u/86026167?v=4
- name: joaopgrassi
teams:
- docs-pt-approvers
- semconv-messaging-approvers
- specs-semconv-approvers
- specs-semconv-maintainers
html_url: https://github.com/joaopgrassi
avatar_url: https://avatars.githubusercontent.com/u/5938087?v=4
- name: joaquin-diaz
teams:
- browser-approvers
- browser-maintainers
html_url: https://github.com/joaquin-diaz
avatar_url: https://avatars.githubusercontent.com/u/32420835?v=4
- name: jpkrohling
teams:
- docs-pt-approvers
- docs-pt-maintainers
- proto-approvers
- proto-triagers
- specs-approvers
- specs-triagers
html_url: https://github.com/jpkrohling
avatar_url: https://avatars.githubusercontent.com/u/13387?v=4
- name: jsuereth
teams:
- cpp-approvers
- cpp-contrib-approvers
- entities-maintainers
- java-approvers
- java-triagers
- proto-approvers
- proto-maintainers
- proto-triagers
- semconv-cicd-approvers
- semconv-gcp-approvers
- semconv-security-approvers
- semconv-service-and-deployment-approvers
- specs-approvers
- specs-entities-approvers
- specs-maintainers
- specs-semconv-approvers
- specs-semconv-maintainers
- specs-triagers
- sqlcommenter-approvers
- weaver-approvers
- weaver-maintainers
- weaver-package-approvers
- weaver-package-maintainers
- weaver-package-triagers
html_url: https://github.com/jsuereth
avatar_url: https://avatars.githubusercontent.com/u/29006?v=4
- name: julianocosta89
teams:
- demo-approvers
- demo-maintainers
- helm-approvers
- helm-triagers
- sig-developer-experience-approvers
- sig-developer-experience-maintainers
html_url: https://github.com/julianocosta89
avatar_url: https://avatars.githubusercontent.com/u/15364991?v=4
- name: kakkoyun
teams:
- go-compile-instrumentation-approvers
- go-compile-instrumentation-maintainers
- go-compile-instrumentation-triagers
html_url: https://github.com/kakkoyun
avatar_url: https://avatars.githubusercontent.com/u/536449?v=4
- name: katzchang
teams:
- docs-ja-approvers
- docs-ja-maintainers
html_url: https://github.com/katzchang
avatar_url: https://avatars.githubusercontent.com/u/70050?v=4
- name: kaylareopelle
teams:
- ruby-approvers
- ruby-contrib-approvers
- ruby-contrib-maintainers
- ruby-contrib-triagers
- ruby-maintainers
- sig-contributor-experience-approvers
- sig-contributor-experience-maintainers
html_url: https://github.com/kaylareopelle
avatar_url: https://avatars.githubusercontent.com/u/87386821?v=4
- name: Kielek
teams:
- demo-approvers
- docs-pl-approvers
- dotnet-approvers
- dotnet-contrib-approvers
- dotnet-contrib-maintainers
- dotnet-contrib-triagers
- dotnet-instrumentation-approvers
- dotnet-instrumentation-maintainers
- dotnet-instrumentation-triagers
- dotnet-maintainers
- dotnet-triagers
html_url: https://github.com/Kielek
avatar_url: https://avatars.githubusercontent.com/u/5972917?v=4
- name: lalitb
teams:
- arrow-approvers
- arrow-triagers
- cpp-approvers
- cpp-contrib-approvers
- cpp-contrib-maintainers
- cpp-maintainers
- rust-approvers
- rust-maintainers
html_url: https://github.com/lalitb
avatar_url: https://avatars.githubusercontent.com/u/1196320?v=4
- name: laurit
teams:
- java-approvers
- java-contrib-approvers
- java-contrib-maintainers
- java-instrumentation-approvers
- java-instrumentation-maintainers
- java-instrumentation-triagers
- java-triagers
html_url: https://github.com/laurit
avatar_url: https://avatars.githubusercontent.com/u/1997823?v=4
- name: legendecas
teams:
- javascript-approvers
- javascript-contrib-triagers
- javascript-maintainers
- javascript-triagers
html_url: https://github.com/legendecas
avatar_url: https://avatars.githubusercontent.com/u/8500303?v=4
- name: LikeTheSalad
teams:
- android-approvers
- android-maintainers
- android-triagers
- semconv-android-approvers
- semconv-client-approvers
- semconv-mobile-approvers
html_url: https://github.com/LikeTheSalad
avatar_url: https://avatars.githubusercontent.com/u/56847527?v=4
- name: lmolkova
teams:
- opentelemetry-python-contrib-approvers
- proto-approvers
- proto-maintainers
- proto-triagers
- python-approvers
- semconv-db-approvers
- semconv-genai-approvers
- semconv-http-approvers
- semconv-log-approvers
- semconv-messaging-approvers
- semconv-rpc-approvers