-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
go.mod
1079 lines (1053 loc) · 63 KB
/
go.mod
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
module github.com/DataDog/datadog-agent
go 1.22.1
toolchain go1.22.8
// v0.8.0 was tagged long ago, and appared on pkg.go.dev. We do not want any tagged version
// to appear there. The trick to accomplish this is to make a new version (in this case v0.9.0)
// that retracts itself and the previous version.
retract (
v0.9.0
v0.8.0
)
// NOTE: Prefer using simple `require` directives instead of using `replace` if possible.
// See https://github.com/DataDog/datadog-agent/blob/main/docs/dev/gomodreplace.md
// for more details.
// Internal deps fix version
replace (
github.com/cihub/seelog => github.com/cihub/seelog v0.0.0-20151216151435-d2c6e5aa9fbf // v2.6
github.com/coreos/go-systemd => github.com/coreos/go-systemd v0.0.0-20180202092358-40e2722dffea
github.com/spf13/cast => github.com/DataDog/cast v1.3.1-0.20190301154711-1ee8c8bd14a3
github.com/ugorji/go => github.com/ugorji/go v1.1.7
)
replace (
github.com/DataDog/datadog-agent/comp/api/api/def => ./comp/api/api/def/
github.com/DataDog/datadog-agent/comp/api/authtoken => ./comp/api/authtoken
github.com/DataDog/datadog-agent/comp/core/config => ./comp/core/config/
github.com/DataDog/datadog-agent/comp/core/flare/builder => ./comp/core/flare/builder
github.com/DataDog/datadog-agent/comp/core/flare/types => ./comp/core/flare/types
github.com/DataDog/datadog-agent/comp/core/hostname/hostnameinterface => ./comp/core/hostname/hostnameinterface
github.com/DataDog/datadog-agent/comp/core/log/def => ./comp/core/log/def
github.com/DataDog/datadog-agent/comp/core/log/impl => ./comp/core/log/impl
github.com/DataDog/datadog-agent/comp/core/log/impl-trace => ./comp/core/log/impl-trace
github.com/DataDog/datadog-agent/comp/core/log/mock => ./comp/core/log/mock
github.com/DataDog/datadog-agent/comp/core/secrets => ./comp/core/secrets
github.com/DataDog/datadog-agent/comp/core/status => ./comp/core/status
github.com/DataDog/datadog-agent/comp/core/status/statusimpl => ./comp/core/status/statusimpl
github.com/DataDog/datadog-agent/comp/core/tagger/types => ./comp/core/tagger/types
github.com/DataDog/datadog-agent/comp/core/tagger/utils => ./comp/core/tagger/utils
github.com/DataDog/datadog-agent/comp/core/telemetry => ./comp/core/telemetry/
github.com/DataDog/datadog-agent/comp/def => ./comp/def/
github.com/DataDog/datadog-agent/comp/forwarder/defaultforwarder => ./comp/forwarder/defaultforwarder
github.com/DataDog/datadog-agent/comp/forwarder/orchestrator/orchestratorinterface => ./comp/forwarder/orchestrator/orchestratorinterface
github.com/DataDog/datadog-agent/comp/logs/agent/config => ./comp/logs/agent/config
github.com/DataDog/datadog-agent/comp/netflow/payload => ./comp/netflow/payload
github.com/DataDog/datadog-agent/comp/otelcol/collector-contrib/def => ./comp/otelcol/collector-contrib/def
github.com/DataDog/datadog-agent/comp/otelcol/collector-contrib/impl => ./comp/otelcol/collector-contrib/impl
github.com/DataDog/datadog-agent/comp/otelcol/converter/def => ./comp/otelcol/converter/def
github.com/DataDog/datadog-agent/comp/otelcol/converter/impl => ./comp/otelcol/converter/impl
github.com/DataDog/datadog-agent/comp/otelcol/ddflareextension/def => ./comp/otelcol/ddflareextension/def/
github.com/DataDog/datadog-agent/comp/otelcol/ddflareextension/impl => ./comp/otelcol/ddflareextension/impl/
github.com/DataDog/datadog-agent/comp/otelcol/logsagentpipeline => ./comp/otelcol/logsagentpipeline
github.com/DataDog/datadog-agent/comp/otelcol/logsagentpipeline/logsagentpipelineimpl => ./comp/otelcol/logsagentpipeline/logsagentpipelineimpl
github.com/DataDog/datadog-agent/comp/otelcol/otlp/components/exporter/datadogexporter => ./comp/otelcol/otlp/components/exporter/datadogexporter
github.com/DataDog/datadog-agent/comp/otelcol/otlp/components/exporter/logsagentexporter => ./comp/otelcol/otlp/components/exporter/logsagentexporter
github.com/DataDog/datadog-agent/comp/otelcol/otlp/components/exporter/serializerexporter => ./comp/otelcol/otlp/components/exporter/serializerexporter
github.com/DataDog/datadog-agent/comp/otelcol/otlp/components/metricsclient => ./comp/otelcol/otlp/components/metricsclient
github.com/DataDog/datadog-agent/comp/otelcol/otlp/components/processor/infraattributesprocessor => ./comp/otelcol/otlp/components/processor/infraattributesprocessor
github.com/DataDog/datadog-agent/comp/otelcol/otlp/components/statsprocessor => ./comp/otelcol/otlp/components/statsprocessor
github.com/DataDog/datadog-agent/comp/otelcol/otlp/testutil => ./comp/otelcol/otlp/testutil
github.com/DataDog/datadog-agent/comp/serializer/compression => ./comp/serializer/compression
github.com/DataDog/datadog-agent/comp/trace/agent/def => ./comp/trace/agent/def
github.com/DataDog/datadog-agent/comp/trace/compression/def => ./comp/trace/compression/def
github.com/DataDog/datadog-agent/comp/trace/compression/impl-gzip => ./comp/trace/compression/impl-gzip
github.com/DataDog/datadog-agent/comp/trace/compression/impl-zstd => ./comp/trace/compression/impl-zstd
github.com/DataDog/datadog-agent/pkg/aggregator/ckey => ./pkg/aggregator/ckey/
github.com/DataDog/datadog-agent/pkg/api => ./pkg/api
github.com/DataDog/datadog-agent/pkg/collector/check/defaults => ./pkg/collector/check/defaults
github.com/DataDog/datadog-agent/pkg/config/env => ./pkg/config/env
github.com/DataDog/datadog-agent/pkg/config/mock => ./pkg/config/mock/
github.com/DataDog/datadog-agent/pkg/config/model => ./pkg/config/model/
github.com/DataDog/datadog-agent/pkg/config/nodetreemodel => ./pkg/config/nodetreemodel
github.com/DataDog/datadog-agent/pkg/config/remote => ./pkg/config/remote/
github.com/DataDog/datadog-agent/pkg/config/setup => ./pkg/config/setup/
github.com/DataDog/datadog-agent/pkg/config/structure => ./pkg/config/structure/
github.com/DataDog/datadog-agent/pkg/config/teeconfig => ./pkg/config/teeconfig
github.com/DataDog/datadog-agent/pkg/config/utils => ./pkg/config/utils/
github.com/DataDog/datadog-agent/pkg/errors => ./pkg/errors
github.com/DataDog/datadog-agent/pkg/gohai => ./pkg/gohai
github.com/DataDog/datadog-agent/pkg/logs/auditor => ./pkg/logs/auditor
github.com/DataDog/datadog-agent/pkg/logs/client => ./pkg/logs/client
github.com/DataDog/datadog-agent/pkg/logs/diagnostic => ./pkg/logs/diagnostic
github.com/DataDog/datadog-agent/pkg/logs/message => ./pkg/logs/message
github.com/DataDog/datadog-agent/pkg/logs/metrics => ./pkg/logs/metrics
github.com/DataDog/datadog-agent/pkg/logs/pipeline => ./pkg/logs/pipeline
github.com/DataDog/datadog-agent/pkg/logs/processor => ./pkg/logs/processor
github.com/DataDog/datadog-agent/pkg/logs/sds => ./pkg/logs/sds
github.com/DataDog/datadog-agent/pkg/logs/sender => ./pkg/logs/sender
github.com/DataDog/datadog-agent/pkg/logs/sources => ./pkg/logs/sources
github.com/DataDog/datadog-agent/pkg/logs/status/statusinterface => ./pkg/logs/status/statusinterface
github.com/DataDog/datadog-agent/pkg/logs/status/utils => ./pkg/logs/status/utils
github.com/DataDog/datadog-agent/pkg/logs/util/testutils => ./pkg/logs/util/testutils
github.com/DataDog/datadog-agent/pkg/metrics => ./pkg/metrics/
github.com/DataDog/datadog-agent/pkg/networkdevice/profile => ./pkg/networkdevice/profile
github.com/DataDog/datadog-agent/pkg/obfuscate => ./pkg/obfuscate
github.com/DataDog/datadog-agent/pkg/orchestrator/model => ./pkg/orchestrator/model
github.com/DataDog/datadog-agent/pkg/process/util/api => ./pkg/process/util/api
github.com/DataDog/datadog-agent/pkg/proto => ./pkg/proto
github.com/DataDog/datadog-agent/pkg/remoteconfig/state => ./pkg/remoteconfig/state
github.com/DataDog/datadog-agent/pkg/security/secl => ./pkg/security/secl
github.com/DataDog/datadog-agent/pkg/security/seclwin => ./pkg/security/seclwin
github.com/DataDog/datadog-agent/pkg/serializer => ./pkg/serializer/
github.com/DataDog/datadog-agent/pkg/status/health => ./pkg/status/health
github.com/DataDog/datadog-agent/pkg/tagger/types => ./pkg/tagger/types
github.com/DataDog/datadog-agent/pkg/tagset => ./pkg/tagset/
github.com/DataDog/datadog-agent/pkg/telemetry => ./pkg/telemetry/
github.com/DataDog/datadog-agent/pkg/trace => ./pkg/trace
github.com/DataDog/datadog-agent/pkg/trace/stats/oteltest => ./pkg/trace/stats/oteltest
github.com/DataDog/datadog-agent/pkg/util/backoff => ./pkg/util/backoff
github.com/DataDog/datadog-agent/pkg/util/buf => ./pkg/util/buf/
github.com/DataDog/datadog-agent/pkg/util/cache => ./pkg/util/cache
github.com/DataDog/datadog-agent/pkg/util/cgroups => ./pkg/util/cgroups
github.com/DataDog/datadog-agent/pkg/util/common => ./pkg/util/common
github.com/DataDog/datadog-agent/pkg/util/containers/image => ./pkg/util/containers/image
github.com/DataDog/datadog-agent/pkg/util/defaultpaths => ./pkg/util/defaultpaths/
github.com/DataDog/datadog-agent/pkg/util/executable => ./pkg/util/executable
github.com/DataDog/datadog-agent/pkg/util/filesystem => ./pkg/util/filesystem
github.com/DataDog/datadog-agent/pkg/util/flavor => ./pkg/util/flavor
github.com/DataDog/datadog-agent/pkg/util/fxutil => ./pkg/util/fxutil/
github.com/DataDog/datadog-agent/pkg/util/grpc => ./pkg/util/grpc/
github.com/DataDog/datadog-agent/pkg/util/hostname/validate => ./pkg/util/hostname/validate/
github.com/DataDog/datadog-agent/pkg/util/http => ./pkg/util/http/
github.com/DataDog/datadog-agent/pkg/util/json => ./pkg/util/json
github.com/DataDog/datadog-agent/pkg/util/log => ./pkg/util/log
github.com/DataDog/datadog-agent/pkg/util/log/setup => ./pkg/util/log/setup
github.com/DataDog/datadog-agent/pkg/util/optional => ./pkg/util/optional
github.com/DataDog/datadog-agent/pkg/util/pointer => ./pkg/util/pointer
github.com/DataDog/datadog-agent/pkg/util/scrubber => ./pkg/util/scrubber
github.com/DataDog/datadog-agent/pkg/util/sort => ./pkg/util/sort/
github.com/DataDog/datadog-agent/pkg/util/startstop => ./pkg/util/startstop
github.com/DataDog/datadog-agent/pkg/util/statstracker => ./pkg/util/statstracker
github.com/DataDog/datadog-agent/pkg/util/system => ./pkg/util/system
github.com/DataDog/datadog-agent/pkg/util/system/socket => ./pkg/util/system/socket/
github.com/DataDog/datadog-agent/pkg/util/testutil => ./pkg/util/testutil
github.com/DataDog/datadog-agent/pkg/util/uuid => ./pkg/util/uuid
github.com/DataDog/datadog-agent/pkg/util/winutil => ./pkg/util/winutil/
github.com/DataDog/datadog-agent/pkg/version => ./pkg/version
)
require (
code.cloudfoundry.org/bbs v0.0.0-20200403215808-d7bc971db0db
code.cloudfoundry.org/garden v0.0.0-20210208153517-580cadd489d2
code.cloudfoundry.org/lager v2.0.0+incompatible
github.com/CycloneDX/cyclonedx-go v0.9.1
github.com/DataDog/appsec-internal-go v1.9.0
github.com/DataDog/datadog-agent/pkg/gohai v0.56.0-rc.3
github.com/DataDog/datadog-agent/pkg/obfuscate v0.59.0-rc.5
github.com/DataDog/datadog-agent/pkg/remoteconfig/state v0.59.0-rc.5
github.com/DataDog/datadog-agent/pkg/security/secl v0.56.0-rc.3
github.com/DataDog/datadog-agent/pkg/trace v0.59.0-devel.0.20240911192058-0c2181220f85
github.com/DataDog/datadog-agent/pkg/util/cgroups v0.57.1
github.com/DataDog/datadog-agent/pkg/util/log v0.59.0-rc.5
github.com/DataDog/datadog-agent/pkg/util/pointer v0.57.1
github.com/DataDog/datadog-agent/pkg/util/scrubber v0.59.0-rc.5
github.com/DataDog/datadog-go/v5 v5.5.0
github.com/DataDog/datadog-operator v0.7.1-0.20241024104907-734366f3c0d1
github.com/DataDog/ebpf-manager v0.7.4
github.com/DataDog/gopsutil v1.2.2
github.com/DataDog/nikos v1.12.7
github.com/DataDog/opentelemetry-mapping-go/pkg/otlp/attributes v0.21.0
github.com/DataDog/opentelemetry-mapping-go/pkg/otlp/metrics v0.21.0
github.com/DataDog/opentelemetry-mapping-go/pkg/quantile v0.21.0
github.com/DataDog/sketches-go v1.4.6
github.com/DataDog/viper v1.13.5
github.com/DataDog/watermarkpodautoscaler v0.5.3-0.20241023200123-ab786c1724cf
github.com/DataDog/zstd v1.5.6
github.com/DataDog/zstd_0 v0.0.0-20210310093942-586c1286621f // indirect
github.com/Masterminds/semver/v3 v3.3.0
github.com/Masterminds/sprig/v3 v3.3.0 // indirect
github.com/Microsoft/go-winio v0.6.2
github.com/Microsoft/hcsshim v0.12.8
github.com/acobaugh/osrelease v0.1.0
github.com/alecthomas/participle v0.7.1 // indirect
github.com/alecthomas/units v0.0.0-20240626203959-61d1e3462e30
github.com/aquasecurity/trivy-db v0.0.0-20231005141211-4fc651f7ac8d
github.com/avast/retry-go/v4 v4.6.0
github.com/aws/aws-lambda-go v1.37.0
github.com/aws/aws-sdk-go v1.55.5 // indirect
github.com/beevik/ntp v1.4.3
github.com/benbjohnson/clock v1.3.5
github.com/bhmj/jsonslice v0.0.0-20200323023432-92c3edaad8e2
github.com/blabber/go-freebsd-sysctl v0.0.0-20201130114544-503969f39d8f
github.com/cenkalti/backoff v2.2.1+incompatible
github.com/cenkalti/backoff/v4 v4.3.0
github.com/cihub/seelog v0.0.0-20170130134532-f561c5e57575
github.com/cilium/ebpf v0.16.0
github.com/clbanning/mxj v1.8.4
github.com/containerd/containerd v1.7.23
github.com/containernetworking/cni v1.2.3
github.com/coreos/go-semver v0.3.1
github.com/coreos/go-systemd v22.5.0+incompatible
github.com/cri-o/ocicni v0.4.3
github.com/cyphar/filepath-securejoin v0.3.4
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc
github.com/docker/docker v27.1.1+incompatible
github.com/docker/go-connections v0.5.0
github.com/dustin/go-humanize v1.0.1
github.com/elastic/go-libaudit/v2 v2.5.0
github.com/evanphx/json-patch v5.9.0+incompatible
github.com/fatih/color v1.18.0
github.com/freddierice/go-losetup v0.0.0-20220711213114-2a14873012db
github.com/fsnotify/fsnotify v1.8.0
github.com/go-delve/delve v1.23.1
github.com/go-ini/ini v1.67.0
github.com/go-ole/go-ole v1.3.0
github.com/go-sql-driver/mysql v1.8.1
github.com/gobwas/glob v0.2.3
github.com/gogo/protobuf v1.3.2
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da
github.com/golang/mock v1.6.0
github.com/golang/protobuf v1.5.4
github.com/google/go-cmp v0.6.0
github.com/google/go-containerregistry v0.20.2
github.com/google/gofuzz v1.2.0
github.com/google/gopacket v1.1.19
github.com/google/pprof v0.0.0-20240827171923-fa2c70bbbfe5
github.com/gorilla/mux v1.8.1
github.com/gosnmp/gosnmp v1.38.0
github.com/grpc-ecosystem/go-grpc-middleware v1.4.0
github.com/grpc-ecosystem/grpc-gateway v1.16.0
github.com/h2non/filetype v1.1.3
github.com/hashicorp/consul/api v1.29.4
github.com/hashicorp/go-multierror v1.1.1
github.com/hashicorp/golang-lru/v2 v2.0.7
github.com/hectane/go-acl v0.0.0-20190604041725-da78bae5fc95
github.com/iceber/iouring-go v0.0.0-20230403020409-002cfd2e2a90
github.com/imdario/mergo v0.3.16
github.com/invopop/jsonschema v0.12.0
github.com/itchyny/gojq v0.12.16
github.com/json-iterator/go v1.1.12
github.com/kardianos/osext v0.0.0-20190222173326-2bc1f35cddc0 // indirect
github.com/lxn/walk v0.0.0-20210112085537-c389da54e794
github.com/lxn/win v0.0.0-20210218163916-a377121e959e
github.com/mailru/easyjson v0.7.7
github.com/mdlayher/netlink v1.7.2
github.com/miekg/dns v1.1.62
github.com/mitchellh/mapstructure v1.5.1-0.20231216201459-8508981c8b6c
github.com/moby/sys/mountinfo v0.7.2
github.com/mohae/deepcopy v0.0.0-20170929034955-c48cc78d4826
github.com/netsampler/goflow2 v1.3.3
github.com/olekukonko/tablewriter v0.0.5
github.com/oliveagle/jsonpath v0.0.0-20180606110733-2e52cf6e6852
github.com/open-policy-agent/opa v0.70.0
github.com/open-telemetry/opentelemetry-collector-contrib/pkg/resourcetotelemetry v0.111.0 // indirect
github.com/opencontainers/go-digest v1.0.0
github.com/opencontainers/image-spec v1.1.0
github.com/opencontainers/runtime-spec v1.2.0
github.com/openshift/api v3.9.0+incompatible
github.com/pahanini/go-grpc-bidirectional-streaming-example v0.0.0-20211027164128-cc6111af44be
github.com/patrickmn/go-cache v2.1.0+incompatible
github.com/pkg/errors v0.9.1
github.com/prometheus/client_golang v1.20.5
github.com/prometheus/client_model v0.6.1
github.com/prometheus/procfs v0.15.1
github.com/redis/go-redis/v9 v9.1.0
github.com/richardartoul/molecule v1.0.1-0.20240531184615-7ca0df43c0b3 // indirect
github.com/robfig/cron/v3 v3.0.1
github.com/samber/lo v1.47.0
github.com/samuel/go-zookeeper v0.0.0-20190923202752-2cc03de413da
github.com/shirou/gopsutil/v3 v3.24.5
github.com/shirou/w32 v0.0.0-20160930032740-bb4de0191aa4
github.com/sirupsen/logrus v1.9.3
github.com/skydive-project/go-debouncer v1.0.0
github.com/smira/go-xz v0.1.0
github.com/spf13/afero v1.11.0
github.com/spf13/cast v1.7.0
github.com/spf13/cobra v1.8.1
github.com/spf13/pflag v1.0.5
github.com/streadway/amqp v1.1.0
github.com/stretchr/testify v1.9.0
github.com/syndtr/gocapability v0.0.0-20200815063812-42c35b437635
github.com/tinylib/msgp v1.2.3
github.com/twmb/murmur3 v1.1.8
github.com/uptrace/bun v1.2.5
github.com/uptrace/bun/dialect/pgdialect v1.2.5
github.com/uptrace/bun/driver/pgdriver v1.2.5
github.com/urfave/negroni v1.0.0
github.com/vishvananda/netlink v1.3.0
github.com/vishvananda/netns v0.0.4
github.com/vmihailenco/msgpack/v4 v4.3.13
github.com/wI2L/jsondiff v0.6.0
github.com/xeipuuv/gojsonschema v1.2.0
go.etcd.io/bbolt v1.3.11
go.etcd.io/etcd/client/v2 v2.306.0-alpha.0
go.mongodb.org/mongo-driver v1.15.1
go.opentelemetry.io/collector v0.111.0 // indirect
go.opentelemetry.io/collector/component v0.111.0
go.opentelemetry.io/collector/confmap v1.17.0
go.opentelemetry.io/collector/exporter v0.111.0
go.opentelemetry.io/collector/exporter/debugexporter v0.111.0
go.opentelemetry.io/collector/exporter/otlpexporter v0.111.0
go.opentelemetry.io/collector/pdata v1.17.0
go.opentelemetry.io/collector/processor/batchprocessor v0.111.0
go.opentelemetry.io/collector/receiver v0.111.0
go.opentelemetry.io/collector/receiver/otlpreceiver v0.111.0
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.55.0 // indirect
go.uber.org/atomic v1.11.0
go.uber.org/automaxprocs v1.6.0
go.uber.org/dig v1.18.0
go.uber.org/fx v1.23.0
go.uber.org/multierr v1.11.0
go.uber.org/zap v1.27.0
go4.org/netipx v0.0.0-20220812043211-3cc044ffd68d
golang.org/x/arch v0.11.0
golang.org/x/exp v0.0.0-20241004190924-225e2abe05e6
golang.org/x/net v0.30.0
golang.org/x/sync v0.8.0
golang.org/x/sys v0.26.0
golang.org/x/text v0.19.0
golang.org/x/time v0.7.0
golang.org/x/tools v0.26.0
golang.org/x/xerrors v0.0.0-20240903120638-7835f813f4da
google.golang.org/genproto v0.0.0-20240903143218-8af14fe29dc1 // indirect
google.golang.org/grpc v1.67.1
google.golang.org/grpc/examples v0.0.0-20221020162917-9127159caf5a
google.golang.org/protobuf v1.35.1
gopkg.in/DataDog/dd-trace-go.v1 v1.69.1
gopkg.in/yaml.v2 v2.4.0
gopkg.in/yaml.v3 v3.0.1
gopkg.in/zorkian/go-datadog-api.v2 v2.30.0
k8s.io/api v0.31.2
k8s.io/apiextensions-apiserver v0.31.2
k8s.io/apimachinery v0.31.2
k8s.io/apiserver v0.31.2 // indirect
k8s.io/autoscaler/vertical-pod-autoscaler v0.13.0
k8s.io/client-go v0.31.2
k8s.io/cri-api v0.31.2
k8s.io/klog v1.0.1-0.20200310124935-4ad0115ba9e4 // Min version that includes fix for Windows Nano
k8s.io/klog/v2 v2.130.1
k8s.io/kube-aggregator v0.31.2
k8s.io/kube-openapi v0.0.0-20240430033511-f0e62f92d13f // indirect
k8s.io/kube-state-metrics/v2 v2.13.1-0.20241025121156-110f03d7331f
k8s.io/kubelet v0.31.2
k8s.io/metrics v0.31.2
k8s.io/utils v0.0.0-20240821151609-f90d01438635
sigs.k8s.io/custom-metrics-apiserver v1.30.1-0.20241105195130-84dc8cfe2555
)
require (
cloud.google.com/go/compute/metadata v0.5.2 // indirect
code.cloudfoundry.org/cfhttp/v2 v2.0.0 // indirect
code.cloudfoundry.org/clock v1.0.0 // indirect
code.cloudfoundry.org/consuladapter v0.0.0-20200131002136-ac1daf48ba97 // indirect
code.cloudfoundry.org/diego-logging-client v0.0.0-20200130234554-60ef08820a45 // indirect
code.cloudfoundry.org/executor v0.0.0-20200218194701-024d0bdd52d4 // indirect
code.cloudfoundry.org/locket v0.0.0-20200131001124-67fd0a0fdf2d // indirect
code.cloudfoundry.org/rep v0.0.0-20200325195957-1404b978e31e // indirect
code.cloudfoundry.org/tlsconfig v0.0.0-20200131000646-bbe0f8da39b3 // indirect
github.com/AlekSi/pointer v1.2.0 // indirect
github.com/BurntSushi/toml v1.3.2 // indirect
github.com/DataDog/aptly v1.5.3 // indirect
github.com/DataDog/go-tuf v1.1.0-0.5.2
github.com/DataDog/gostackparse v0.7.0 // indirect
github.com/DataDog/mmh3 v0.0.0-20210722141835-012dc69a9e49 // indirect
github.com/DisposaBoy/JsonConfigReader v0.0.0-20201129172854-99cf318d67e7 // indirect
github.com/Masterminds/goutils v1.1.1 // indirect
github.com/Masterminds/semver v1.5.0
github.com/NYTimes/gziphandler v1.1.1 // indirect
github.com/OneOfOne/xxhash v1.2.8 // indirect
github.com/ProtonMail/go-crypto v1.1.0-alpha.0
github.com/StackExchange/wmi v1.2.1 // indirect
github.com/agnivade/levenshtein v1.2.0 // indirect
github.com/aquasecurity/go-gem-version v0.0.0-20201115065557-8eed6fe000ce // indirect
github.com/aquasecurity/go-npm-version v0.0.0-20201110091526-0b796d180798 // indirect
github.com/aquasecurity/go-pep440-version v0.0.0-20210121094942-22b2f8951d46 // indirect
github.com/aquasecurity/go-version v0.0.0-20210121072130-637058cfe492 // indirect
github.com/aquasecurity/table v1.8.0 // indirect
github.com/aquasecurity/tml v0.6.1 // indirect
github.com/armon/go-metrics v0.4.1 // indirect
github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2 // indirect
github.com/awalterschulze/gographviz v2.0.3+incompatible // indirect
github.com/aws/aws-sdk-go-v2 v1.32.3
github.com/aws/aws-sdk-go-v2/config v1.28.1
github.com/aws/aws-sdk-go-v2/credentials v1.17.42
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.18 // indirect
github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.22 // indirect
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.22 // indirect
github.com/aws/aws-sdk-go-v2/internal/ini v1.8.1 // indirect
github.com/aws/aws-sdk-go-v2/service/ebs v1.27.0 // indirect
github.com/aws/aws-sdk-go-v2/service/ec2 v1.187.0
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.12.3 // indirect
github.com/aws/aws-sdk-go-v2/service/sso v1.24.3 // indirect
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.28.3 // indirect
github.com/aws/aws-sdk-go-v2/service/sts v1.32.3 // indirect
github.com/aws/smithy-go v1.22.0 // indirect
github.com/beorn7/perks v1.0.1 // indirect
github.com/bmizerany/pat v0.0.0-20170815010413-6226ea591a40 // indirect
github.com/briandowns/spinner v1.23.0 // indirect
github.com/cavaliergopher/grab/v3 v3.0.1 // indirect
github.com/cespare/xxhash/v2 v2.3.0 // indirect
github.com/containerd/continuity v0.4.3 // indirect
github.com/containerd/fifo v1.1.0 // indirect
github.com/containerd/stargz-snapshotter/estargz v0.15.1 // indirect
github.com/containerd/ttrpc v1.2.5 // indirect
github.com/containernetworking/plugins v1.4.1 // indirect
github.com/coreos/go-systemd/v22 v22.5.0
github.com/coreos/pkg v0.0.0-20180928190104-399ea9e2e55f // indirect
github.com/dgryski/go-jump v0.0.0-20211018200510-ba001c3ffce0 // indirect
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
github.com/docker/cli v27.1.1+incompatible // indirect
github.com/docker/distribution v2.8.3+incompatible // indirect
github.com/docker/docker-credential-helpers v0.8.1 // indirect
github.com/docker/go-events v0.0.0-20190806004212-e31b211e4f1c // indirect
github.com/docker/go-units v0.5.0 // indirect
github.com/felixge/httpsnoop v1.0.4 // indirect
github.com/ghodss/yaml v1.0.0
github.com/go-git/go-billy/v5 v5.5.0 // indirect
github.com/go-git/go-git/v5 v5.11.0 // indirect
github.com/go-logfmt/logfmt v0.6.0 // indirect
github.com/go-logr/logr v1.4.2 // indirect
github.com/go-logr/stdr v1.2.2 // indirect
github.com/go-openapi/errors v0.22.0 // indirect
github.com/go-openapi/jsonpointer v0.20.2 // indirect
github.com/go-openapi/jsonreference v0.20.4 // indirect
github.com/go-openapi/runtime v0.27.1 // indirect
github.com/go-openapi/strfmt v0.23.0 // indirect
github.com/go-openapi/swag v0.22.9 // indirect
github.com/go-openapi/validate v0.23.0 // indirect
github.com/go-redis/redis/v8 v8.11.5 // indirect
github.com/godbus/dbus/v5 v5.1.0
github.com/golang/glog v1.2.2 // indirect
github.com/golang/snappy v0.0.5-0.20220116011046-fa5810519dcb // indirect
github.com/google/licenseclassifier/v2 v2.0.0 // indirect
github.com/google/uuid v1.6.0
github.com/google/wire v0.6.0 // indirect
github.com/googleapis/gax-go/v2 v2.13.0 // indirect
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0 // indirect
github.com/grpc-ecosystem/grpc-gateway/v2 v2.22.0 // indirect
github.com/hashicorp/errwrap v1.1.0 // indirect
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
github.com/hashicorp/go-hclog v1.6.3 // indirect
github.com/hashicorp/go-immutable-radix v1.3.1 // indirect
github.com/hashicorp/go-rootcerts v1.0.2 // indirect
github.com/hashicorp/go-version v1.7.0
github.com/hashicorp/golang-lru v1.0.2 // indirect
github.com/hashicorp/hcl v1.0.1-vault-5 // indirect
github.com/hashicorp/serf v0.10.1 // indirect
github.com/huandu/xstrings v1.5.0 // indirect
github.com/ianlancetaylor/demangle v0.0.0-20240312041847-bd984b5ce465 // indirect
github.com/in-toto/in-toto-golang v0.9.0 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/itchyny/timefmt-go v0.1.6 // indirect
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/jlaffaye/ftp v0.1.0 // indirect
github.com/jmespath/go-jmespath v0.4.0 // indirect
github.com/josharian/intern v1.0.0 // indirect
github.com/josharian/native v1.1.0 // indirect
github.com/justincormack/go-memfd v0.0.0-20170219213707-6e4af0518993
github.com/karrick/godirwalk v1.17.0 // indirect
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect
github.com/kjk/lzma v0.0.0-20161016003348-3fd93898850d // indirect
github.com/klauspost/compress v1.17.10 // indirect
github.com/klauspost/pgzip v1.2.5 // indirect
github.com/knadh/koanf v1.5.0 // indirect
github.com/knqyf263/go-apk-version v0.0.0-20200609155635-041fdbb8563f // indirect
github.com/knqyf263/go-deb-version v0.0.0-20230223133812-3ed183d23422 // indirect
github.com/knqyf263/go-rpm-version v0.0.0-20220614171824-631e686d1075 // indirect
github.com/knqyf263/go-rpmdb v0.1.1
github.com/knqyf263/nested v0.0.1 // indirect
github.com/liamg/jfather v0.0.7 // indirect
github.com/libp2p/go-reuseport v0.2.0 // indirect
github.com/lufia/plan9stats v0.0.0-20220913051719-115f729f3c8c // indirect
github.com/magiconair/properties v1.8.7 // indirect
github.com/masahiro331/go-disk v0.0.0-20220919035250-c8da316f91ac // indirect
github.com/masahiro331/go-ebs-file v0.0.0-20240112135404-d5fbb1d46323 // indirect
github.com/masahiro331/go-ext4-filesystem v0.0.0-20231208112839-4339555a0cd4 // indirect
github.com/masahiro331/go-mvn-version v0.0.0-20210429150710-d3157d602a08 // indirect
github.com/masahiro331/go-vmdk-parser v0.0.0-20221225061455-612096e4bbbd // indirect
github.com/masahiro331/go-xfs-filesystem v0.0.0-20230608043311-a335f4599b70 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/mattn/go-runewidth v0.0.15 // indirect
github.com/mdlayher/socket v0.5.0 // indirect
github.com/mitchellh/copystructure v1.2.0 // indirect
github.com/mitchellh/go-homedir v1.1.0 // indirect
github.com/mitchellh/hashstructure/v2 v2.0.2 // indirect
github.com/mitchellh/reflectwalk v1.0.2 // indirect
github.com/mkrautz/goar v0.0.0-20150919110319-282caa8bd9da // indirect
github.com/moby/buildkit v0.12.5 // indirect
github.com/moby/locker v1.0.1 // indirect
github.com/moby/sys/signal v0.7.0 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.2 // indirect
github.com/montanaflynn/stats v0.7.0 // indirect
github.com/mostynb/go-grpc-compression v1.2.3 // indirect
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f // indirect
github.com/nu7hatch/gouuid v0.0.0-20131221200532-179d4d0c4d8d // indirect
github.com/oklog/ulid v1.3.1 // indirect
github.com/opencontainers/selinux v1.11.0 // indirect
github.com/opentracing/opentracing-go v1.2.0 // indirect
github.com/outcaste-io/ristretto v0.2.3 // indirect
github.com/owenrumney/go-sarif/v2 v2.3.0 // indirect
github.com/package-url/packageurl-go v0.1.2 // indirect
github.com/pborman/uuid v1.2.1 // indirect
github.com/pelletier/go-toml v1.9.5 // indirect
github.com/philhofer/fwd v1.1.3-0.20240916144458-20a13a1f6b7c // indirect
github.com/pierrec/lz4/v4 v4.1.21
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
github.com/power-devops/perfstat v0.0.0-20220216144756-c35f1ee13d7c // indirect
github.com/prometheus/common v0.60.0
github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475 // indirect
github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect
github.com/rivo/uniseg v0.4.7 // indirect
github.com/rs/cors v1.11.1 // indirect
github.com/safchain/baloum v0.0.0-20221229104256-b1fc8f70a86b
github.com/saracen/walker v0.1.3 // indirect
github.com/sassoftware/go-rpmutils v0.3.0 // indirect
github.com/secure-systems-lab/go-securesystemslib v0.8.0 // indirect
github.com/sergi/go-diff v1.3.2-0.20230802210424-5b0b94c5c0d3 // indirect
github.com/shibumi/go-pathspec v1.3.0 // indirect
github.com/shopspring/decimal v1.4.0 // indirect
github.com/smira/go-ftp-protocol v0.0.0-20140829150050-066b75c2b70d // indirect
github.com/spdx/tools-golang v0.5.4-0.20231108154018-0c0f394b5e1a // indirect
github.com/spf13/jwalterweatherman v1.1.0 // indirect
github.com/stretchr/objx v0.5.2 // indirect
github.com/syndtr/goleveldb v1.0.1-0.20220721030215-126854af5e6d // indirect
github.com/tchap/go-patricia/v2 v2.3.1 // indirect
github.com/tedsuo/ifrit v0.0.0-20191009134036-9a97d0632f00 // indirect
github.com/tedsuo/rata v1.0.0 // indirect
github.com/tklauser/go-sysconf v0.3.14
github.com/tklauser/numcpus v0.8.0 // indirect
github.com/tmthrgd/go-hex v0.0.0-20190904060850-447a3041c3bc // indirect
github.com/twitchtv/twirp v8.1.3+incompatible // indirect
github.com/twmb/franz-go v1.17.0
github.com/twmb/franz-go/pkg/kadm v1.12.0
github.com/twmb/franz-go/pkg/kmsg v1.8.0
github.com/ugorji/go/codec v1.2.11 // indirect
github.com/ulikunitz/xz v0.5.11 // indirect
github.com/vbatts/tar-split v0.11.5 // indirect
github.com/vito/go-sse v1.0.0 // indirect
github.com/vmihailenco/msgpack/v5 v5.4.1
github.com/vmihailenco/tagparser v0.1.2 // indirect
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
github.com/xdg-go/pbkdf2 v1.0.0 // indirect
github.com/xdg-go/scram v1.1.2 // indirect
github.com/xdg-go/stringprep v1.0.4 // indirect
github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb // indirect
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect
github.com/xi2/xz v0.0.0-20171230120015-48954b6210f8
github.com/xlab/treeprint v1.2.0 // indirect
github.com/xor-gate/ar v0.0.0-20170530204233-5c72ae81e2b7 // indirect
github.com/yashtewari/glob-intersection v0.2.0 // indirect
github.com/youmark/pkcs8 v0.0.0-20181117223130-1be2e3e5546d // indirect
github.com/yusufpapurcu/wmi v1.2.4
go.etcd.io/etcd/api/v3 v3.6.0-alpha.0 // indirect
go.etcd.io/etcd/client/pkg/v3 v3.6.0-alpha.0.0.20220522111935-c3bc4116dcd1 // indirect
go.etcd.io/etcd/client/v3 v3.6.0-alpha.0 // indirect
go.etcd.io/etcd/server/v3 v3.6.0-alpha.0.0.20220522111935-c3bc4116dcd1 // indirect
go.opencensus.io v0.24.0 // indirect
go.opentelemetry.io/collector/consumer v0.111.0 // indirect
go.opentelemetry.io/collector/featuregate v1.17.0
go.opentelemetry.io/collector/semconv v0.111.0 // indirect
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.55.0 // indirect
go.opentelemetry.io/contrib/propagators/b3 v1.30.0 // indirect
go.opentelemetry.io/otel v1.31.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.31.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.31.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.31.0
go.opentelemetry.io/otel/exporters/prometheus v0.52.0 // indirect
go.opentelemetry.io/otel/metric v1.31.0 // indirect
go.opentelemetry.io/otel/sdk v1.31.0
go.opentelemetry.io/otel/sdk/metric v1.31.0 // indirect
go.opentelemetry.io/otel/trace v1.31.0
go.opentelemetry.io/proto/otlp v1.3.1 // indirect
golang.org/x/crypto v0.28.0 // indirect
golang.org/x/mod v0.21.0
golang.org/x/oauth2 v0.23.0 // indirect
golang.org/x/term v0.25.0 // indirect
gonum.org/v1/gonum v0.15.1 // indirect
google.golang.org/api v0.199.0 // indirect
google.golang.org/appengine v1.6.8 // indirect
gopkg.in/Knetic/govaluate.v3 v3.0.0 // indirect
gopkg.in/cheggaaa/pb.v1 v1.0.28 // indirect
gopkg.in/inf.v0 v0.9.1 // indirect
gopkg.in/natefinch/lumberjack.v2 v2.2.1 // indirect
k8s.io/component-base v0.31.2
mellium.im/sasl v0.3.2 // indirect
modernc.org/cc/v3 v3.41.0 // indirect
modernc.org/ccgo/v3 v3.16.15 // indirect
modernc.org/libc v1.41.0 // indirect
modernc.org/mathutil v1.6.0
modernc.org/memory v1.7.2 // indirect
modernc.org/opt v0.1.3 // indirect
modernc.org/sqlite v1.29.5
sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.30.3 // indirect
sigs.k8s.io/controller-runtime v0.19.0 // indirect
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect
sigs.k8s.io/yaml v1.4.0
)
require (
github.com/DataDog/datadog-agent/comp/api/authtoken v0.0.0-00010101000000-000000000000
github.com/DataDog/datadog-agent/comp/core/tagger/utils v0.56.2
github.com/DataDog/datadog-agent/comp/otelcol/ddflareextension/def v0.56.0-rc.3
github.com/DataDog/datadog-agent/comp/otelcol/ddflareextension/impl v0.0.0-00010101000000-000000000000
github.com/DataDog/datadog-agent/pkg/config/structure v0.60.0-devel
github.com/DataDog/datadog-agent/pkg/util/defaultpaths v0.0.0-00010101000000-000000000000
github.com/NVIDIA/go-nvml v0.12.4-0
github.com/containerd/containerd/api v1.7.19
github.com/containerd/errdefs v1.0.0
github.com/distribution/reference v0.6.0
github.com/go-viper/mapstructure/v2 v2.1.0
github.com/jellydator/ttlcache/v3 v3.3.0
github.com/kouhin/envflag v0.0.0-20150818174321-0e9a86061649
github.com/lorenzosaino/go-sysctl v0.3.1
go.opentelemetry.io/collector/config/configtelemetry v0.111.0
)
require (
github.com/DATA-DOG/go-sqlmock v1.5.2
github.com/DataDog/agent-payload/v5 v5.0.135
github.com/DataDog/datadog-agent/comp/api/api/def v0.56.0-rc.3
github.com/DataDog/datadog-agent/comp/core/config v0.57.1
github.com/DataDog/datadog-agent/comp/core/flare/types v0.57.1
github.com/DataDog/datadog-agent/comp/core/hostname/hostnameinterface v0.57.1
github.com/DataDog/datadog-agent/comp/core/log/def v0.58.0-devel
github.com/DataDog/datadog-agent/comp/core/log/impl v0.0.0-00010101000000-000000000000
github.com/DataDog/datadog-agent/comp/core/log/impl-trace v0.0.0-00010101000000-000000000000
github.com/DataDog/datadog-agent/comp/core/log/mock v0.58.0-devel
github.com/DataDog/datadog-agent/comp/core/secrets v0.57.1
github.com/DataDog/datadog-agent/comp/core/status v0.56.0-rc.3
github.com/DataDog/datadog-agent/comp/core/status/statusimpl v0.56.0-rc.3
github.com/DataDog/datadog-agent/comp/core/tagger/types v0.56.2
github.com/DataDog/datadog-agent/comp/core/telemetry v0.57.1
github.com/DataDog/datadog-agent/comp/def v0.57.1
github.com/DataDog/datadog-agent/comp/forwarder/defaultforwarder v0.56.0-rc.3
github.com/DataDog/datadog-agent/comp/forwarder/orchestrator/orchestratorinterface v0.56.0-rc.3
github.com/DataDog/datadog-agent/comp/logs/agent/config v0.57.1
github.com/DataDog/datadog-agent/comp/netflow/payload v0.56.0-rc.3
github.com/DataDog/datadog-agent/comp/otelcol/collector-contrib/def v0.56.0-rc.3
github.com/DataDog/datadog-agent/comp/otelcol/collector-contrib/impl v0.56.0-rc.3
github.com/DataDog/datadog-agent/comp/otelcol/converter/def v0.56.0-rc.3
github.com/DataDog/datadog-agent/comp/otelcol/converter/impl v0.56.0-rc.3
github.com/DataDog/datadog-agent/comp/otelcol/logsagentpipeline v0.57.1
github.com/DataDog/datadog-agent/comp/otelcol/logsagentpipeline/logsagentpipelineimpl v0.57.1
github.com/DataDog/datadog-agent/comp/otelcol/otlp/components/exporter/datadogexporter v0.56.0-rc.3
github.com/DataDog/datadog-agent/comp/otelcol/otlp/components/exporter/logsagentexporter v0.58.0-devel.0.20240905201012-b02662b2ba27
github.com/DataDog/datadog-agent/comp/otelcol/otlp/components/exporter/serializerexporter v0.56.0-rc.3
github.com/DataDog/datadog-agent/comp/otelcol/otlp/components/metricsclient v0.57.1
github.com/DataDog/datadog-agent/comp/otelcol/otlp/components/processor/infraattributesprocessor v0.56.0-rc.3
github.com/DataDog/datadog-agent/comp/otelcol/otlp/testutil v0.56.0-rc.3
github.com/DataDog/datadog-agent/comp/serializer/compression v0.56.0-rc.3
github.com/DataDog/datadog-agent/comp/trace/agent/def v0.56.0-rc.3
github.com/DataDog/datadog-agent/comp/trace/compression/def v0.57.1
github.com/DataDog/datadog-agent/comp/trace/compression/impl-gzip v0.57.1
github.com/DataDog/datadog-agent/comp/trace/compression/impl-zstd v0.56.0-rc.3
github.com/DataDog/datadog-agent/pkg/aggregator/ckey v0.56.0-rc.3
github.com/DataDog/datadog-agent/pkg/api v0.57.1
github.com/DataDog/datadog-agent/pkg/collector/check/defaults v0.57.1
github.com/DataDog/datadog-agent/pkg/config/env v0.57.1
github.com/DataDog/datadog-agent/pkg/config/mock v0.58.0-devel
github.com/DataDog/datadog-agent/pkg/config/model v0.59.0-rc.5
github.com/DataDog/datadog-agent/pkg/config/remote v0.59.0-rc.5
github.com/DataDog/datadog-agent/pkg/config/setup v0.57.1
github.com/DataDog/datadog-agent/pkg/config/utils v0.57.1
github.com/DataDog/datadog-agent/pkg/errors v0.56.0-rc.3
github.com/DataDog/datadog-agent/pkg/logs/auditor v0.57.1
github.com/DataDog/datadog-agent/pkg/logs/client v0.57.1
github.com/DataDog/datadog-agent/pkg/logs/diagnostic v0.57.1
github.com/DataDog/datadog-agent/pkg/logs/message v0.57.1
github.com/DataDog/datadog-agent/pkg/logs/metrics v0.57.1
github.com/DataDog/datadog-agent/pkg/logs/pipeline v0.57.1
github.com/DataDog/datadog-agent/pkg/logs/processor v0.57.1
github.com/DataDog/datadog-agent/pkg/logs/sds v0.57.1
github.com/DataDog/datadog-agent/pkg/logs/sender v0.57.1
github.com/DataDog/datadog-agent/pkg/logs/sources v0.57.1
github.com/DataDog/datadog-agent/pkg/logs/status/utils v0.57.1
github.com/DataDog/datadog-agent/pkg/logs/util/testutils v0.56.0-rc.3
github.com/DataDog/datadog-agent/pkg/metrics v0.56.0-rc.3
github.com/DataDog/datadog-agent/pkg/networkdevice/profile v0.56.0-rc.3
github.com/DataDog/datadog-agent/pkg/orchestrator/model v0.56.0-rc.3
github.com/DataDog/datadog-agent/pkg/process/util/api v0.56.0-rc.3
github.com/DataDog/datadog-agent/pkg/proto v0.59.0-rc.5
github.com/DataDog/datadog-agent/pkg/security/seclwin v0.56.0-rc.3
github.com/DataDog/datadog-agent/pkg/serializer v0.56.0-rc.3
github.com/DataDog/datadog-agent/pkg/status/health v0.57.1
github.com/DataDog/datadog-agent/pkg/tagger/types v0.56.0-rc.3
github.com/DataDog/datadog-agent/pkg/tagset v0.56.0-rc.3
github.com/DataDog/datadog-agent/pkg/telemetry v0.57.1
github.com/DataDog/datadog-agent/pkg/util/backoff v0.59.0-rc.5
github.com/DataDog/datadog-agent/pkg/util/cache v0.59.0-rc.5
github.com/DataDog/datadog-agent/pkg/util/common v0.56.0-rc.3
github.com/DataDog/datadog-agent/pkg/util/containers/image v0.56.2
github.com/DataDog/datadog-agent/pkg/util/executable v0.57.1
github.com/DataDog/datadog-agent/pkg/util/filesystem v0.57.1
github.com/DataDog/datadog-agent/pkg/util/flavor v0.56.0-rc.3
github.com/DataDog/datadog-agent/pkg/util/fxutil v0.57.1
github.com/DataDog/datadog-agent/pkg/util/grpc v0.59.0-rc.5
github.com/DataDog/datadog-agent/pkg/util/hostname/validate v0.57.1
github.com/DataDog/datadog-agent/pkg/util/http v0.59.0-rc.5
github.com/DataDog/datadog-agent/pkg/util/json v0.56.0-rc.3
github.com/DataDog/datadog-agent/pkg/util/log/setup v1.0.0
github.com/DataDog/datadog-agent/pkg/util/optional v0.57.1
github.com/DataDog/datadog-agent/pkg/util/sort v0.56.0-rc.3
github.com/DataDog/datadog-agent/pkg/util/startstop v0.57.1
github.com/DataDog/datadog-agent/pkg/util/system v0.57.1
github.com/DataDog/datadog-agent/pkg/util/testutil v0.56.0-rc.3
github.com/DataDog/datadog-agent/pkg/util/uuid v0.59.0-rc.5
github.com/DataDog/datadog-agent/pkg/util/winutil v0.57.1
github.com/DataDog/datadog-agent/pkg/version v0.57.1
github.com/DataDog/go-libddwaf/v3 v3.5.1
github.com/DataDog/go-sqllexer v0.0.16
github.com/Datadog/dublin-traceroute v0.0.2
github.com/aquasecurity/trivy v0.49.2-0.20240227072422-e1ea02c7b80d
github.com/aws/aws-sdk-go-v2/service/kms v1.37.3
github.com/aws/aws-sdk-go-v2/service/rds v1.89.0
github.com/aws/aws-sdk-go-v2/service/secretsmanager v1.34.3
github.com/awslabs/amazon-ecr-credential-helper/ecr-login v0.0.0-20240409155312-26d1ea377073
github.com/cloudfoundry-community/go-cfclient/v2 v2.0.1-0.20230503155151-3d15366c5820
github.com/containerd/cgroups/v3 v3.0.3
github.com/containerd/typeurl/v2 v2.2.0
github.com/dvsekhvalnov/jose2go v1.7.0
github.com/elastic/go-seccomp-bpf v1.4.0
github.com/fatih/structtag v1.2.0
github.com/glaslos/ssdeep v0.4.0
github.com/gocomply/scap v0.1.2-0.20230531064509-55a00f73e8d6
github.com/godror/godror v0.37.0
github.com/jackc/pgx/v5 v5.6.0
github.com/jmoiron/sqlx v1.4.0
github.com/judwhite/go-svc v1.2.1
github.com/kr/pretty v0.3.1
// todo: update datadog connector with breaking changes from https://github.com/DataDog/datadog-agent/pull/26347.
github.com/open-telemetry/opentelemetry-collector-contrib/connector/datadogconnector v0.111.0
github.com/planetscale/vtprotobuf v0.6.1-0.20240319094008-0393e58bdf10
github.com/prometheus-community/pro-bing v0.4.1
github.com/rickar/props v1.0.0
github.com/sijms/go-ora/v2 v2.8.19
github.com/swaggest/jsonschema-go v0.3.70
github.com/valyala/fastjson v1.6.4
github.com/vibrantbyte/go-antpath v1.1.1
go.opentelemetry.io/collector/confmap/provider/envprovider v1.17.0
go.opentelemetry.io/collector/confmap/provider/fileprovider v1.17.0
go.opentelemetry.io/collector/confmap/provider/httpprovider v1.17.0
go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.111.0
go.opentelemetry.io/collector/confmap/provider/yamlprovider v1.17.0
go.opentelemetry.io/collector/extension v0.111.0
go.opentelemetry.io/collector/otelcol v0.111.0
go.opentelemetry.io/collector/processor v0.111.0
go.opentelemetry.io/collector/service v0.111.0
go4.org/intern v0.0.0-20230525184215-6c62f75575cb
go4.org/mem v0.0.0-20220726221520-4f986261bf13
k8s.io/cli-runtime v0.31.2
k8s.io/kubectl v0.31.2
)
require (
cloud.google.com/go/auth v0.9.5 // indirect
cloud.google.com/go/auth/oauth2adapt v0.2.4 // indirect
code.cloudfoundry.org/go-diodes v0.0.0-20240604201846-c756bfed2ed3 // indirect
code.cloudfoundry.org/go-loggregator v7.4.0+incompatible // indirect
code.cloudfoundry.org/rfc5424 v0.0.0-20201103192249-000122071b78 // indirect
dario.cat/mergo v1.0.1 // indirect
filippo.io/edwards25519 v1.1.0 // indirect
github.com/AdaLogics/go-fuzz-headers v0.0.0-20230811130428-ced1acdcaa24 // indirect
github.com/AdamKorcz/go-118-fuzz-build v0.0.0-20230306123547-8075edf89bb0 // indirect
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.13.0 // indirect
github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.7.0 // indirect
github.com/Azure/azure-sdk-for-go/sdk/internal v1.10.0 // indirect
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/compute/armcompute/v5 v5.7.0 // indirect
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/network/armnetwork/v4 v4.3.0 // indirect
github.com/AzureAD/microsoft-authentication-library-for-go v1.2.2 // indirect
github.com/Code-Hex/go-generics-cache v1.5.1 // indirect
github.com/DataDog/datadog-agent/comp/core/flare/builder v0.57.1 // indirect
github.com/DataDog/datadog-agent/comp/otelcol/otlp/components/statsprocessor v0.57.1 // indirect
github.com/DataDog/datadog-agent/pkg/config/nodetreemodel v0.60.0-devel // indirect
github.com/DataDog/datadog-agent/pkg/config/teeconfig v0.60.0-devel // indirect
github.com/DataDog/datadog-agent/pkg/logs/status/statusinterface v0.57.1 // indirect
github.com/DataDog/datadog-agent/pkg/util/buf v0.56.0-rc.3 // indirect
github.com/DataDog/datadog-agent/pkg/util/statstracker v0.57.1 // indirect
github.com/DataDog/datadog-agent/pkg/util/system/socket v0.57.1 // indirect
github.com/DataDog/datadog-api-client-go/v2 v2.30.0 // indirect
github.com/DataDog/dd-sensitive-data-scanner/sds-go/go v0.0.0-20240816154533-f7f9beb53a42 // indirect
github.com/DataDog/opentelemetry-mapping-go/pkg/inframetadata v0.21.0 // indirect
github.com/DataDog/opentelemetry-mapping-go/pkg/otlp/logs v0.21.0 // indirect
github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp v1.24.1 // indirect
github.com/Intevation/gval v1.3.0 // indirect
github.com/Intevation/jsonpath v0.2.1 // indirect
github.com/Showmax/go-fqdn v1.0.0 // indirect
github.com/VividCortex/ewma v1.2.0 // indirect
github.com/agext/levenshtein v1.2.3 // indirect
github.com/alecthomas/participle/v2 v2.1.1 // indirect
github.com/anchore/go-struct-converter v0.0.0-20221118182256-c68fdcfa2092 // indirect
github.com/antchfx/xmlquery v1.4.1 // indirect
github.com/antchfx/xpath v1.3.1 // indirect
github.com/antlr4-go/antlr/v4 v4.13.0 // indirect
github.com/apache/thrift v0.21.0 // indirect
github.com/aquasecurity/trivy-java-db v0.0.0-20240109071736-184bd7481d48 // indirect
github.com/aws/aws-sdk-go-v2/service/ecr v1.36.0 // indirect
github.com/aws/aws-sdk-go-v2/service/ecrpublic v1.27.0 // indirect
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.12.0 // indirect
github.com/bahlo/generic-list-go v0.2.0 // indirect
github.com/bitnami/go-version v0.0.0-20231130084017-bb00604d650c // indirect
github.com/blang/semver/v4 v4.0.0 // indirect
github.com/bmatcuk/doublestar/v4 v4.6.1 // indirect
github.com/buger/jsonparser v1.1.1 // indirect
github.com/cheggaaa/pb/v3 v3.1.4 // indirect
github.com/chrusty/protoc-gen-jsonschema v0.0.0-20240212064413-73d5723042b8 // indirect
github.com/cloudflare/circl v1.3.7 // indirect
github.com/cncf/xds/go v0.0.0-20240905190251-b4127c9b8d78 // indirect
github.com/containerd/log v0.1.0 // indirect
github.com/containerd/platforms v0.2.1 // indirect
github.com/csaf-poc/csaf_distribution/v3 v3.0.0 // indirect
github.com/dennwc/varint v1.0.0 // indirect
github.com/digitalocean/godo v1.118.0 // indirect
github.com/eapache/queue/v2 v2.0.0-20230407133247-75960ed334e4 // indirect
github.com/ebitengine/purego v0.8.0 // indirect
github.com/elastic/go-grok v0.3.1 // indirect
github.com/elastic/go-licenser v0.4.2 // indirect
github.com/elastic/lunes v0.1.0 // indirect
github.com/emicklei/go-restful/v3 v3.12.1 // indirect
github.com/emirpasic/gods v1.18.1 // indirect
github.com/envoyproxy/go-control-plane v0.13.0 // indirect
github.com/envoyproxy/protoc-gen-validate v1.1.0 // indirect
github.com/expr-lang/expr v1.16.9 // indirect
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 // indirect
github.com/go-kit/log v0.2.1 // indirect
github.com/go-openapi/analysis v0.22.2 // indirect
github.com/go-openapi/loads v0.21.5 // indirect
github.com/go-openapi/spec v0.20.14 // indirect
github.com/go-resty/resty/v2 v2.13.1 // indirect
github.com/go-test/deep v1.1.0 // indirect
github.com/go-zookeeper/zk v1.0.3 // indirect
github.com/goccy/go-json v0.10.3 // indirect
github.com/goccy/go-yaml v1.11.0 // indirect
github.com/godror/knownpb v0.1.0 // indirect
github.com/gogo/googleapis v1.4.1 // indirect
github.com/golang-jwt/jwt/v5 v5.2.1 // indirect
github.com/google/cel-go v0.20.1 // indirect
github.com/google/flatbuffers v24.3.25+incompatible // indirect
github.com/google/gnostic-models v0.6.8 // indirect
github.com/google/go-querystring v1.1.0 // indirect
github.com/google/s2a-go v0.1.8 // indirect
github.com/googleapis/enterprise-certificate-proxy v0.3.4 // indirect
github.com/gophercloud/gophercloud v1.13.0 // indirect
github.com/gopherjs/gopherjs v0.0.0-20200217142428-fce0ec30dd00 // indirect
github.com/gorilla/websocket v1.5.1 // indirect
github.com/grafana/regexp v0.0.0-20240518133315-a468a5bfb3bc // indirect
github.com/hashicorp/cronexpr v1.1.2 // indirect
github.com/hashicorp/go-retryablehttp v0.7.7 // indirect
github.com/hashicorp/go-secure-stdlib/parseutil v0.1.7 // indirect
github.com/hashicorp/go-secure-stdlib/strutil v0.1.2 // indirect
github.com/hashicorp/go-sockaddr v1.0.6 // indirect
github.com/hashicorp/nomad/api v0.0.0-20240717122358-3d93bd3778f3 // indirect
github.com/hetznercloud/hcloud-go/v2 v2.10.2 // indirect
github.com/iancoleman/strcase v0.3.0 // indirect
github.com/ionos-cloud/sdk-go/v6 v6.1.11 // indirect
github.com/jackc/pgpassfile v1.0.0 // indirect
github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect
github.com/jackc/puddle/v2 v2.2.1 // indirect
github.com/jaegertracing/jaeger v1.61.0 // indirect
github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect
github.com/jonboulle/clockwork v0.4.0 // indirect
github.com/jpillora/backoff v1.0.0 // indirect
github.com/kevinburke/ssh_config v1.2.0 // indirect
github.com/knadh/koanf/v2 v2.1.1 // indirect
github.com/kolo/xmlrpc v0.0.0-20220921171641-a4b6fa1dd06b // indirect
github.com/kr/text v0.2.0 // indirect
github.com/kylelemons/godebug v1.1.0 // indirect
github.com/leodido/go-syslog/v4 v4.2.0 // indirect
github.com/leodido/ragel-machinery v0.0.0-20190525184631-5f46317e436b // indirect
github.com/lightstep/go-expohisto v1.0.0 // indirect
github.com/linode/linodego v1.37.0 // indirect
github.com/lunixbochs/struc v0.0.0-20200707160740-784aaebc1d40 // indirect
github.com/magefile/mage v1.15.0 // indirect
github.com/mattn/go-shellwords v1.0.12 // indirect
github.com/microsoft/go-rustaudit v0.0.0-20220808201409-204dfee52032 // indirect
github.com/moby/docker-image-spec v1.3.1 // indirect
github.com/moby/spdystream v0.4.0 // indirect
github.com/moby/sys/sequential v0.5.0 // indirect
github.com/moby/sys/user v0.3.0 // indirect
github.com/moby/sys/userns v0.1.0 // indirect
github.com/mwitkow/go-conntrack v0.0.0-20190716064945-2f068394615f // indirect
github.com/ncruces/go-strftime v0.1.9 // indirect
github.com/open-telemetry/opentelemetry-collector-contrib/connector/spanmetricsconnector v0.111.0 // indirect
github.com/open-telemetry/opentelemetry-collector-contrib/exporter/sapmexporter v0.111.0 // indirect
github.com/open-telemetry/opentelemetry-collector-contrib/extension/healthcheckextension v0.111.0 // indirect
github.com/open-telemetry/opentelemetry-collector-contrib/extension/observer v0.111.0 // indirect
github.com/open-telemetry/opentelemetry-collector-contrib/extension/observer/dockerobserver v0.111.0 // indirect
github.com/open-telemetry/opentelemetry-collector-contrib/extension/observer/ecsobserver v0.111.0 // indirect
github.com/open-telemetry/opentelemetry-collector-contrib/extension/observer/ecstaskobserver v0.111.0 // indirect
github.com/open-telemetry/opentelemetry-collector-contrib/extension/observer/hostobserver v0.111.0 // indirect
github.com/open-telemetry/opentelemetry-collector-contrib/extension/observer/k8sobserver v0.111.0 // indirect
github.com/open-telemetry/opentelemetry-collector-contrib/extension/pprofextension v0.111.0 // indirect
github.com/open-telemetry/opentelemetry-collector-contrib/internal/aws/ecsutil v0.111.0 // indirect
github.com/open-telemetry/opentelemetry-collector-contrib/internal/common v0.111.0 // indirect
github.com/open-telemetry/opentelemetry-collector-contrib/internal/coreinternal v0.111.0 // indirect
github.com/open-telemetry/opentelemetry-collector-contrib/internal/docker v0.111.0 // indirect
github.com/open-telemetry/opentelemetry-collector-contrib/internal/filter v0.111.0 // indirect
github.com/open-telemetry/opentelemetry-collector-contrib/internal/k8sconfig v0.111.0 // indirect
github.com/open-telemetry/opentelemetry-collector-contrib/internal/metadataproviders v0.111.0 // indirect
github.com/open-telemetry/opentelemetry-collector-contrib/internal/pdatautil v0.111.0 // indirect
github.com/open-telemetry/opentelemetry-collector-contrib/internal/sharedcomponent v0.111.0 // indirect
github.com/open-telemetry/opentelemetry-collector-contrib/internal/splunk v0.111.0 // indirect
github.com/open-telemetry/opentelemetry-collector-contrib/pkg/batchperresourceattr v0.111.0 // indirect
github.com/open-telemetry/opentelemetry-collector-contrib/pkg/datadog v0.111.0 // indirect
github.com/open-telemetry/opentelemetry-collector-contrib/pkg/experimentalmetricmetadata v0.111.0 // indirect
github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl v0.111.0 // indirect
github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatautil v0.111.0 // indirect
github.com/open-telemetry/opentelemetry-collector-contrib/pkg/sampling v0.111.0 // indirect
github.com/open-telemetry/opentelemetry-collector-contrib/pkg/stanza v0.111.0 // indirect
github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/jaeger v0.111.0 // indirect
github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/prometheus v0.111.0 // indirect
github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/zipkin v0.111.0 // indirect
github.com/open-telemetry/opentelemetry-collector-contrib/processor/attributesprocessor v0.111.0 // indirect
github.com/open-telemetry/opentelemetry-collector-contrib/processor/cumulativetodeltaprocessor v0.111.0 // indirect
github.com/open-telemetry/opentelemetry-collector-contrib/processor/filterprocessor v0.111.0 // indirect
github.com/open-telemetry/opentelemetry-collector-contrib/processor/groupbyattrsprocessor v0.111.0 // indirect
github.com/open-telemetry/opentelemetry-collector-contrib/processor/k8sattributesprocessor v0.111.0 // indirect
github.com/open-telemetry/opentelemetry-collector-contrib/processor/probabilisticsamplerprocessor v0.111.0 // indirect
github.com/open-telemetry/opentelemetry-collector-contrib/processor/resourcedetectionprocessor v0.111.0 // indirect
github.com/open-telemetry/opentelemetry-collector-contrib/processor/resourceprocessor v0.111.0 // indirect
github.com/open-telemetry/opentelemetry-collector-contrib/processor/routingprocessor v0.111.0 // indirect
github.com/open-telemetry/opentelemetry-collector-contrib/processor/tailsamplingprocessor v0.111.0 // indirect
github.com/open-telemetry/opentelemetry-collector-contrib/processor/transformprocessor v0.111.0 // indirect
github.com/open-telemetry/opentelemetry-collector-contrib/receiver/filelogreceiver v0.111.0 // indirect
github.com/open-telemetry/opentelemetry-collector-contrib/receiver/fluentforwardreceiver v0.111.0 // indirect
github.com/open-telemetry/opentelemetry-collector-contrib/receiver/hostmetricsreceiver v0.111.0 // indirect
github.com/open-telemetry/opentelemetry-collector-contrib/receiver/jaegerreceiver v0.111.0 // indirect
github.com/open-telemetry/opentelemetry-collector-contrib/receiver/prometheusreceiver v0.111.0 // indirect
github.com/open-telemetry/opentelemetry-collector-contrib/receiver/receivercreator v0.111.0 // indirect
github.com/open-telemetry/opentelemetry-collector-contrib/receiver/zipkinreceiver v0.111.0 // indirect
github.com/openshift/client-go v0.0.0-20210521082421-73d9475a9142 // indirect
github.com/openvex/go-vex v0.2.5 // indirect
github.com/openzipkin/zipkin-go v0.4.3 // indirect
github.com/ovh/go-ovh v1.6.0 // indirect
github.com/pelletier/go-toml/v2 v2.2.2 // indirect
github.com/pjbgf/sha1cd v0.3.0 // indirect
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c // indirect
github.com/prometheus-community/windows_exporter v0.27.2 // indirect
github.com/prometheus/common/sigv4 v0.1.0 // indirect
github.com/prometheus/prometheus v0.54.1 // indirect
github.com/puzpuzpuz/xsync/v3 v3.4.0 // indirect
github.com/rogpeppe/go-internal v1.13.1 // indirect
github.com/rs/zerolog v1.33.0 // indirect
github.com/ryanuber/go-glob v1.0.0 // indirect
github.com/sagikazarmark/locafero v0.4.0 // indirect
github.com/sagikazarmark/slog-shim v0.1.0 // indirect
github.com/santhosh-tekuri/jsonschema/v5 v5.3.1 // indirect
github.com/scaleway/scaleway-sdk-go v1.0.0-beta.29 // indirect
github.com/shirou/gopsutil/v4 v4.24.9 // indirect
github.com/shoenig/go-m1cpu v0.1.6 // indirect
github.com/signalfx/sapm-proto v0.14.0 // indirect
github.com/sigstore/rekor v1.2.2 // indirect
github.com/skeema/knownhosts v1.2.1 // indirect
github.com/smartystreets/assertions v1.1.0 // indirect
github.com/sourcegraph/conc v0.3.0 // indirect
github.com/spaolacci/murmur3 v1.1.0 // indirect
github.com/spf13/viper v1.19.0 // indirect
github.com/stoewer/go-strcase v1.3.0 // indirect
github.com/stormcat24/protodep v0.1.8 // indirect
github.com/subosito/gotenv v1.6.0 // indirect
github.com/swaggest/refl v1.3.0 // indirect
github.com/tetratelabs/wazero v1.7.0 // indirect
github.com/tidwall/gjson v1.17.1 // indirect
github.com/tidwall/match v1.1.1 // indirect
github.com/tidwall/pretty v1.2.1 // indirect
github.com/tidwall/sjson v1.2.5 // indirect
github.com/ua-parser/uap-go v0.0.0-20240611065828-3a4781585db6 // indirect
github.com/vultr/govultr/v2 v2.17.2 // indirect
github.com/wk8/go-ordered-map/v2 v2.1.8 // indirect
github.com/x448/float16 v0.8.4 // indirect
github.com/xanzy/ssh-agent v0.3.3 // indirect
go.opentelemetry.io/collector/client v1.17.0 // indirect
go.opentelemetry.io/collector/component/componentprofiles v0.111.0 // indirect
go.opentelemetry.io/collector/component/componentstatus v0.111.0 // indirect
go.opentelemetry.io/collector/config/configauth v0.111.0 // indirect
go.opentelemetry.io/collector/config/configcompression v1.17.0 // indirect
go.opentelemetry.io/collector/config/configgrpc v0.111.0 // indirect
go.opentelemetry.io/collector/config/confighttp v0.111.0 // indirect
go.opentelemetry.io/collector/config/confignet v1.17.0 // indirect
go.opentelemetry.io/collector/config/configopaque v1.17.0 // indirect
go.opentelemetry.io/collector/config/configretry v1.17.0 // indirect
go.opentelemetry.io/collector/config/configtls v1.17.0 // indirect
go.opentelemetry.io/collector/config/internal v0.111.0 // indirect
go.opentelemetry.io/collector/connector v0.111.0 // indirect
go.opentelemetry.io/collector/connector/connectorprofiles v0.111.0 // indirect
go.opentelemetry.io/collector/consumer/consumerprofiles v0.111.0 // indirect
go.opentelemetry.io/collector/consumer/consumertest v0.111.0 // indirect
go.opentelemetry.io/collector/exporter/exporterprofiles v0.111.0 // indirect
go.opentelemetry.io/collector/exporter/nopexporter v0.111.0 // indirect
go.opentelemetry.io/collector/exporter/otlphttpexporter v0.111.0 // indirect
go.opentelemetry.io/collector/extension/auth v0.111.0 // indirect
go.opentelemetry.io/collector/extension/experimental/storage v0.111.0 // indirect
go.opentelemetry.io/collector/extension/extensioncapabilities v0.111.0 // indirect
go.opentelemetry.io/collector/extension/zpagesextension v0.111.0 // indirect
go.opentelemetry.io/collector/filter v0.111.0 // indirect
go.opentelemetry.io/collector/internal/globalgates v0.111.0 // indirect
go.opentelemetry.io/collector/internal/globalsignal v0.111.0 // indirect
go.opentelemetry.io/collector/pdata/pprofile v0.111.0 // indirect
go.opentelemetry.io/collector/pdata/testdata v0.111.0 // indirect
go.opentelemetry.io/collector/pipeline v0.111.0 // indirect
go.opentelemetry.io/collector/processor/memorylimiterprocessor v0.111.0 // indirect