forked from CiscoDevNet/appdynamics-charts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.yaml
999 lines (999 loc) · 34.7 KB
/
index.yaml
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
apiVersion: v1
entries:
cluster-agent:
- apiVersion: v2
appVersion: 22.4.0
created: "2022-05-26T07:13:40.025668154Z"
dependencies:
- condition: install.metrics-server
name: metrics-server
repository: https://kubernetes-sigs.github.io/metrics-server/
version: 3.7.0
description: Sophisticated helm chart to deploy cluster agent and machine agent
in addition with advanced features like multiple cluster agent deployments,
Granular control over config with intuitive boolean switches
digest: bef6e0b876a50be47e003066dbb37bfa9f19eb403f83152b5e1d4ab71b642868
home: https://appdynamics.com
icon: https://raw.githubusercontent.com/CiscoDevNet/appdynamics-charts/master/logo.png
keywords:
- appdynamics
- cluster
- kubernetes
- openshift
- monitoring
- pod
- deployment
maintainers:
- email: [email protected]
name: AppDynamics
name: cluster-agent
urls:
- https://ciscodevnet.github.io/appdynamics-charts/cluster-agent-1.3.0.tgz
version: 1.3.0
- apiVersion: v2
appVersion: 22.1.0
created: "2022-05-26T07:13:40.023975118Z"
dependencies:
- condition: install.metrics-server
name: metrics-server
repository: https://charts.helm.sh/stable/
version: 2.11.4
description: Sophisticated helm chart to deploy cluster agent and machine agent
in addition with advanced features like multiple cluster agent deployments,
Granular control over config with intuitive boolean switches
digest: 96de2c7a9672c05de1edfc2e7ab999ae76ad242222920ea1d43dddb4066fd034
home: https://appdynamics.com
icon: https://raw.githubusercontent.com/CiscoDevNet/appdynamics-charts/master/logo.png
keywords:
- appdynamics
- cluster
- kubernetes
- openshift
- monitoring
- pod
- deployment
maintainers:
- email: [email protected]
name: AppDynamics
name: cluster-agent
urls:
- https://ciscodevnet.github.io/appdynamics-charts/cluster-agent-1.2.0.tgz
version: 1.2.0
- apiVersion: v2
appVersion: 21.12.0
created: "2022-05-26T07:13:40.021655364Z"
dependencies:
- condition: install.metrics-server
name: metrics-server
repository: https://charts.helm.sh/stable/
version: 2.11.4
description: Sophisticated helm chart to deploy cluster agent and machine agent
in addition with advanced features like multiple cluster agent deployments,
Granular control over config with intuitive boolean switches
digest: b9548f70f2f4653a282d786d111f098c98918d906474c1ef4825993589a1f72b
home: https://appdynamics.com
icon: https://raw.githubusercontent.com/CiscoDevNet/appdynamics-charts/master/logo.png
keywords:
- appdynamics
- cluster
- kubernetes
- openshift
- monitoring
- pod
- deployment
maintainers:
- email: [email protected]
name: AppDynamics
name: cluster-agent
urls:
- https://ciscodevnet.github.io/appdynamics-charts/cluster-agent-1.1.0.tgz
version: 1.1.0
- apiVersion: v2
appVersion: 21.10.0
created: "2022-05-26T07:13:40.012533706Z"
dependencies:
- condition: install.metrics-server
name: metrics-server
repository: https://charts.helm.sh/stable/
version: 2.11.4
description: Sophisticated helm chart to deploy cluster agent and machine agent
in addition with advanced features like multiple cluster agent deployments,
Granular control over config with intuitive boolean switches
digest: 39b8f46a3c96bf827b1af5d90649b1d22d0a5e2e7a06e53fd74e2c5061ed366f
home: https://appdynamics.com
icon: https://raw.githubusercontent.com/CiscoDevNet/appdynamics-charts/master/logo.png
keywords:
- appdynamics
- cluster
- kubernetes
- openshift
- monitoring
- pod
- deployment
maintainers:
- email: [email protected]
name: AppDynamics
name: cluster-agent
urls:
- https://ciscodevnet.github.io/appdynamics-charts/cluster-agent-0.1.19.tgz
version: 0.1.19
- apiVersion: v2
appVersion: 21.7.0
created: "2022-05-26T07:13:40.009938788Z"
dependencies:
- condition: install.metrics-server
name: metrics-server
repository: https://charts.helm.sh/stable/
version: 2.11.4
description: Sophisticated helm chart to deploy cluster agent is addition with
advanced features like multiple cluster agent deployments, Granular control
over config with intuitive boolean switches.
digest: e702fb338625b3590551e57530e4bf417be9d3c6bfd0ca93247021f548cadfb5
home: https://appdynamics.com
icon: https://raw.githubusercontent.com/CiscoDevNet/appdynamics-charts/master/logo.png
keywords:
- appdynamics
- cluster
- kubernetes
- openshift
- monitoring
- pod
- deployment
maintainers:
- email: [email protected]
name: AppDynamics
name: cluster-agent
urls:
- https://ciscodevnet.github.io/appdynamics-charts/cluster-agent-0.1.18.tgz
version: 0.1.18
- apiVersion: v2
appVersion: 21.5.0
created: "2022-05-26T07:13:40.008241031Z"
dependencies:
- condition: install.metrics-server
name: metrics-server
repository: https://charts.helm.sh/stable/
version: 2.11.4
description: Sophisticated helm chart to deploy cluster agent is addition with
advanced features like multiple cluster agent deployments, Granular control
over config with intuitive boolean switches.
digest: 369147489f8a65a04845ed27ff3e9643eb259722b5859b26e58f576890cefae9
home: https://appdynamics.com
icon: https://raw.githubusercontent.com/Appdynamics/appdynamics-charts/master/logo.png
keywords:
- appdynamics
- cluster
- kubernetes
- openshift
- monitoring
- pod
- deployment
maintainers:
- email: [email protected]
name: AppDynamics
name: cluster-agent
urls:
- https://ciscodevnet.github.io/appdynamics-charts/cluster-agent-0.1.17.tgz
version: 0.1.17
- apiVersion: v2
appVersion: 21.3.1
created: "2022-05-26T07:13:40.006805029Z"
dependencies:
- condition: install.metrics-server
name: metrics-server
repository: https://charts.helm.sh/stable/
version: 2.11.4
description: Sophisticated helm chart to deploy cluster agent is addition with
advanced features like multiple cluster agent deployments, Granular control
over config with intuitive boolean switches.
digest: 09f1f9e3ccd7e9ad064676b8d761c17ca4c8ee8575ba18043f37aba641ee5e44
home: https://appdynamics.com
icon: https://raw.githubusercontent.com/Appdynamics/appdynamics-charts/master/logo.png
keywords:
- appdynamics
- cluster
- kubernetes
- openshift
- monitoring
- pod
- deployment
maintainers:
- email: [email protected]
name: AppDynamics
name: cluster-agent
urls:
- https://ciscodevnet.github.io/appdynamics-charts/cluster-agent-0.1.16.tgz
version: 0.1.16
- apiVersion: v2
appVersion: 21.3.0
created: "2022-05-26T07:13:40.005512888Z"
dependencies:
- condition: install.metrics-server
name: metrics-server
repository: https://charts.helm.sh/stable/
version: 2.11.4
description: Sophisticated helm chart to deploy cluster agent is addition with
advanced features like multiple cluster agent deployments, Granular control
over config with intuitive boolean switches.
digest: 8cd45dd61797d20525bcbe809c68f3519ae1f27b3215f425b2915301faeb3306
home: https://appdynamics.com
icon: https://raw.githubusercontent.com/Appdynamics/appdynamics-charts/master/logo.png
keywords:
- appdynamics
- cluster
- kubernetes
- openshift
- monitoring
- pod
- deployment
maintainers:
- email: [email protected]
name: AppDynamics
name: cluster-agent
urls:
- https://ciscodevnet.github.io/appdynamics-charts/cluster-agent-0.1.15.tgz
version: 0.1.15
- apiVersion: v2
appVersion: 21.2.0
created: "2022-05-26T07:13:40.004217532Z"
dependencies:
- condition: install.metrics-server
name: metrics-server
repository: https://charts.helm.sh/stable/
version: 2.11.4
description: Sophisticated helm chart to deploy cluster agent is addition with
advanced features like multiple cluster agent deployments, Granular control
over config with intuitive boolean switches.
digest: 1c9b820c8d12b344b99ad592f996b681663703ffefd5922a35980e7a2ba535c1
home: https://appdynamics.com
icon: https://raw.githubusercontent.com/Appdynamics/appdynamics-charts/master/logo.png
keywords:
- appdynamics
- cluster
- kubernetes
- openshift
- monitoring
- pod
- deployment
maintainers:
- email: [email protected]
name: AppDynamics
name: cluster-agent
urls:
- https://ciscodevnet.github.io/appdynamics-charts/cluster-agent-0.1.14.tgz
version: 0.1.14
- apiVersion: v2
appVersion: 20.12.1
created: "2022-05-26T07:13:40.002957416Z"
dependencies:
- condition: install.metrics-server
name: metrics-server
repository: https://charts.helm.sh/stable/
version: 2.11.4
description: Sophisticated helm chart to deploy cluster agent is addition with
advanced features like multiple cluster agent deployments, Granular control
over config with intuitive boolean switches.
digest: 8c6a6ae83cf06d597f4d71ee5623f4738cda2e7af3cd667eebead814c107f25c
home: https://appdynamics.com
icon: https://raw.githubusercontent.com/Appdynamics/appdynamics-charts/master/logo.png
keywords:
- appdynamics
- cluster
- kubernetes
- openshift
- monitoring
- pod
- deployment
maintainers:
- email: [email protected]
name: AppDynamics
name: cluster-agent
urls:
- https://ciscodevnet.github.io/appdynamics-charts/cluster-agent-0.1.12.tgz
version: 0.1.12
- apiVersion: v2
appVersion: 20.12.0
created: "2022-05-26T07:13:40.001551916Z"
dependencies:
- condition: install.metrics-server
name: metrics-server
repository: https://charts.helm.sh/stable/
version: 2.11.4
description: Sophisticated helm chart to deploy cluster agent is addition with
advanced features like multiple cluster agent deployments, Granular control
over config with intuitive boolean switches.
digest: b8183b0c00fdcaf39e38aab80d321b79c721dfb661478d2290b5bfa5e1ec8e01
home: https://appdynamics.com
icon: https://raw.githubusercontent.com/Appdynamics/appdynamics-charts/master/logo.png
keywords:
- appdynamics
- cluster
- kubernetes
- openshift
- monitoring
- pod
- deployment
maintainers:
- email: [email protected]
name: AppDynamics
name: cluster-agent
urls:
- https://ciscodevnet.github.io/appdynamics-charts/cluster-agent-0.1.11.tgz
version: 0.1.11
- apiVersion: v2
appVersion: 20.11.0
created: "2022-05-26T07:13:39.999394154Z"
dependencies:
- condition: install.metrics-server
name: metrics-server
repository: https://kubernetes-charts.storage.googleapis.com
version: 2.11.1
description: Sophisticated helm chart to deploy cluster agent is addition with
advanced features like multiple cluster agent deployments, Granular control
over config with intuitive boolean switches.
digest: c24bf12c8bc1a919410f07fa33a4660c413575cf57a083d7a4bdc4da50cbf2c1
home: https://appdynamics.com
icon: https://raw.githubusercontent.com/Appdynamics/appdynamics-charts/master/logo.png
keywords:
- appdynamics
- cluster
- kubernetes
- openshift
- monitoring
- pod
- deployment
maintainers:
- email: [email protected]
name: AppDynamics
name: cluster-agent
urls:
- https://ciscodevnet.github.io/appdynamics-charts/cluster-agent-0.1.10.tgz
version: 0.1.10
- apiVersion: v2
appVersion: 20.10.0
created: "2022-05-26T07:13:40.020066517Z"
dependencies:
- condition: install.metrics-server
name: metrics-server
repository: https://kubernetes-charts.storage.googleapis.com
version: 2.11.1
description: Sophisticated helm chart to deploy cluster agent is addition with
advanced features like multiple cluster agent deployments, Granular control
over config with intuitive boolean switches.
digest: 5464c7ac6bab61f0a9ed8868ea86b6dda89c236db025cd6caa9ddb98e1a148b5
home: https://appdynamics.com
icon: https://raw.githubusercontent.com/Appdynamics/appdynamics-charts/master/logo.png
keywords:
- appdynamics
- cluster
- kubernetes
- openshift
- monitoring
- pod
- deployment
maintainers:
- email: [email protected]
name: AppDynamics
name: cluster-agent
urls:
- https://ciscodevnet.github.io/appdynamics-charts/cluster-agent-0.1.9.tgz
version: 0.1.9
- apiVersion: v2
appVersion: 20.9.1
created: "2022-05-26T07:13:40.018883844Z"
dependencies:
- condition: install.metrics-server
name: metrics-server
repository: https://kubernetes-charts.storage.googleapis.com
version: 2.11.1
description: Sophisticated helm chart to deploy cluster agent is addition with
advanced features like multiple cluster agent deployments, Granular control
over config with intuitive boolean switches.
digest: bcfc2dbbb47ee8f217cd4cc105875b72bdd793385fe40422a1789116f4fbb8e3
home: https://appdynamics.com
icon: https://raw.githubusercontent.com/Appdynamics/appdynamics-charts/master/logo.png
keywords:
- appdynamics
- cluster
- kubernetes
- openshift
- monitoring
- pod
- deployment
maintainers:
- email: [email protected]
name: AppDynamics
name: cluster-agent
urls:
- https://ciscodevnet.github.io/appdynamics-charts/cluster-agent-0.1.8.tgz
version: 0.1.8
- apiVersion: v2
appVersion: 20.9.0
created: "2022-05-26T07:13:40.017688297Z"
dependencies:
- condition: install.metrics-server
name: metrics-server
repository: https://kubernetes-charts.storage.googleapis.com
version: 2.11.1
description: Sophisticated helm chart to deploy cluster agent is addition with
advanced features like multiple cluster agent deployments, Granular control
over config with intuitive boolean switches.
digest: f535c39e1e67726d3cfc8f06c21ea04a5eeb76b296c17ac3e27d201ada9ba08e
home: https://appdynamics.com
icon: https://raw.githubusercontent.com/Appdynamics/appdynamics-charts/master/logo.png
keywords:
- appdynamics
- cluster
- kubernetes
- openshift
- monitoring
- pod
- deployment
maintainers:
- email: [email protected]
name: AppDynamics
name: cluster-agent
urls:
- https://ciscodevnet.github.io/appdynamics-charts/cluster-agent-0.1.7.tgz
version: 0.1.7
- apiVersion: v2
appVersion: 20.8.0
created: "2022-05-26T07:13:40.016486836Z"
dependencies:
- condition: install.metrics-server
name: metrics-server
repository: https://kubernetes-charts.storage.googleapis.com
version: 2.11.1
description: Sophisticated helm chart to deploy cluster agent is addition with
advanced features like multiple cluster agent deployments, Granular control
over config with intuitive boolean switches.
digest: bddfea50da4e5222dc2fcde874a223efd8558d6309f9833b2ae1dfd175dc1a23
home: https://appdynamics.com
icon: https://raw.githubusercontent.com/Appdynamics/appdynamics-charts/master/logo.png
keywords:
- appdynamics
- cluster
- kubernetes
- openshift
- monitoring
- pod
- deployment
maintainers:
- email: [email protected]
name: AppDynamics
name: cluster-agent
urls:
- https://ciscodevnet.github.io/appdynamics-charts/cluster-agent-0.1.6.tgz
version: 0.1.6
- apiVersion: v2
appVersion: 20.7.0
created: "2022-05-26T07:13:40.015294998Z"
dependencies:
- condition: install.metrics-server
name: metrics-server
repository: https://kubernetes-charts.storage.googleapis.com
version: 2.11.1
description: Sophisticated helm chart to deploy cluster agent is addition with
advanced features like multiple cluster agent deployments, Granular control
over config with intuitive boolean switches.
digest: 310264f48b2ebb5a9ba0e23ce6cb45809caddead39a7a94a82b616ce0f8ae4a4
home: https://appdynamics.com
icon: https://raw.githubusercontent.com/Appdynamics/appdynamics-charts/master/logo.png
keywords:
- appdynamics
- cluster
- kubernetes
- openshift
- monitoring
- pod
- deployment
maintainers:
- email: [email protected]
name: AppDynamics
name: cluster-agent
urls:
- https://ciscodevnet.github.io/appdynamics-charts/cluster-agent-0.1.5.tgz
version: 0.1.5
- apiVersion: v1
appVersion: 4.5.16
created: "2022-05-26T07:13:40.014084691Z"
description: Helm chart to deploy AppDynamics ClusterAgent for Kubernetes
digest: 875e0b99360648d2a9bc5caab2b8fc62c2dcf0f41fa7bec49dd69af7b8753a1b
home: https://www.appdynamics.com/
icon: https://raw.githubusercontent.com/Appdynamics/appdynamics-charts/master/logo.png
keywords:
- appdynamics
- monitoring
- Kubernetes
- OpenShift
maintainers:
- email: [email protected]
name: AppDynamics
name: cluster-agent
sources:
- https://github.com/Appdynamics/cluster-agent/blob/master/build/Dockerfile
urls:
- https://ciscodevnet.github.io/appdynamics-charts/cluster-agent-0.1.4.tgz
version: 0.1.4
- apiVersion: v1
appVersion: 0.1.5
created: "2022-05-26T07:13:40.013551176Z"
description: Helm chart to deploy AppDynamics ClusterAgent for Kubernetes
digest: 724d3e4d03059a41c3644f18c7c2f61c3699462c433f344a2f993d395aa71d3b
home: https://www.appdynamics.com/
icon: https://raw.githubusercontent.com/Appdynamics/appdynamics-charts/master/logo.png
keywords:
- appdynamics
- monitoring
- Kubernetes
- OpenShift
maintainers:
- email: [email protected]
name: sashaPM
name: cluster-agent
sources:
- https://github.com/Appdynamics/cluster-agent/blob/master/build/Dockerfile
urls:
- https://ciscodevnet.github.io/appdynamics-charts/cluster-agent-0.1.3.tgz
version: 0.1.3
- apiVersion: v1
appVersion: 0.1.5
created: "2022-05-26T07:13:40.01305835Z"
description: Helm chart to deploy AppDynamics ClusterAgent for Kubernetes
digest: e4a26cd3647127fd85258d4a0445073eaf238a440b78be62c6c7376c0fd10a4c
home: https://www.appdynamics.com/
icon: https://raw.githubusercontent.com/Appdynamics/appdynamics-charts/master/logo.png
keywords:
- appdynamics
- monitoring
- Kubernetes
- OpenShift
maintainers:
- email: [email protected]
name: sashaPM
name: cluster-agent
sources:
- https://github.com/Appdynamics/cluster-agent/blob/master/build/Dockerfile
urls:
- https://ciscodevnet.github.io/appdynamics-charts/cluster-agent-0.1.2.tgz
version: 0.1.2
- apiVersion: v1
appVersion: 0.1.5
created: "2022-05-26T07:13:39.998027977Z"
description: Helm chart to deploy AppDynamics ClusterAgent for Kubernetes
digest: 1e7a7f6372fa8cbe9b6fc6085b9c39a259e6579e4e712b063f7f07d868f96554
home: https://www.appdynamics.com/
icon: https://raw.githubusercontent.com/Appdynamics/appdynamics-charts/master/logo.png
keywords:
- appdynamics
- monitoring
- Kubernetes
- OpenShift
maintainers:
- email: [email protected]
name: sashaPM
name: cluster-agent
sources:
- https://github.com/Appdynamics/cluster-agent/blob/master/build/Dockerfile
urls:
- https://ciscodevnet.github.io/appdynamics-charts/cluster-agent-0.1.1.tgz
version: 0.1.1
machine-agent:
- apiVersion: v1
appVersion: 20.3.2
created: "2022-05-26T07:13:40.030001732Z"
description: AppDynamics Machine Agent for infrastructure visibility
digest: 4ebe4836c35b56528f8e62549f1d3ccf60ed3f80f89bb511e303660384115998
home: https://www.appdynamics.com/
icon: https://raw.githubusercontent.com/Appdynamics/appdynamics-charts/master/logo.png
keywords:
- appdynamics
- monitoring
- infrastructure
maintainers:
- email: [email protected]
name: sashaPM
name: machine-agent
sources:
- https://cloud.docker.com/u/appdynamics/repository/docker/appdynamics/machine-agent-analytics/general
- https://github.com/Appdynamics/appdynamics-docker-images/blob/master/appd-machine-agent-analytics/Dockerfile
urls:
- https://ciscodevnet.github.io/appdynamics-charts/machine-agent-0.2.8.tgz
version: 0.2.8
- apiVersion: v1
appVersion: 4.5.16
created: "2022-05-26T07:13:40.029273534Z"
description: AppDynamics Machine Agent for infrastructure visibility
digest: efe504e43cc43477d0b71df6ab4b90ddf19acdfd305d865510c90d4013cdb9fe
home: https://www.appdynamics.com/
icon: https://raw.githubusercontent.com/Appdynamics/appdynamics-charts/master/logo.png
keywords:
- appdynamics
- monitoring
- infrastructure
maintainers:
- email: [email protected]
name: sashaPM
name: machine-agent
sources:
- https://cloud.docker.com/u/appdynamics/repository/docker/appdynamics/machine-agent-analytics/general
- https://github.com/Appdynamics/appdynamics-docker-images/blob/master/appd-machine-agent-analytics/Dockerfile
urls:
- https://ciscodevnet.github.io/appdynamics-charts/machine-agent-0.2.7.tgz
version: 0.2.7
- apiVersion: v1
appVersion: 4.5.14
created: "2022-05-26T07:13:40.028549475Z"
description: AppDynamics Machine Agent for infrastructure visibility
digest: 8f95a9d09f70718e14022a7ae3d21143f1bb4dafba7481733f5457fef92022f6
home: https://www.appdynamics.com/
icon: https://raw.githubusercontent.com/Appdynamics/appdynamics-charts/master/logo.png
keywords:
- appdynamics
- monitoring
- infrastructure
maintainers:
- email: [email protected]
name: menglert
- email: [email protected]
name: sashaPM
name: machine-agent
sources:
- https://cloud.docker.com/u/appdynamics/repository/docker/appdynamics/machine-agent-analytics/general
- https://github.com/Appdynamics/appdynamics-docker-images/blob/master/appd-machine-agent-analytics/Dockerfile
urls:
- https://ciscodevnet.github.io/appdynamics-charts/machine-agent-0.2.6.tgz
version: 0.2.6
- apiVersion: v1
appVersion: 4.5.11
created: "2022-05-26T07:13:40.027924422Z"
description: AppDynamics Machine Agent for infrastructure visibility
digest: 6abd077efa43f9a9c3bc600eee8227505b492376f4cec83ae3f99acdaeec4508
home: https://www.appdynamics.com/
icon: https://raw.githubusercontent.com/Appdynamics/appdynamics-charts/master/logo.png
keywords:
- appdynamics
- monitoring
- infrastructure
maintainers:
- email: [email protected]
name: menglert
- email: [email protected]
name: sashaPM
name: machine-agent
sources:
- https://cloud.docker.com/u/appdynamics/repository/docker/appdynamics/machine-agent-analytics/general
- https://github.com/Appdynamics/appdynamics-docker-images/blob/master/appd-machine-agent-analytics/Dockerfile
urls:
- https://ciscodevnet.github.io/appdynamics-charts/machine-agent-0.2.5.tgz
version: 0.2.5
- apiVersion: v1
appVersion: 4.5.11
created: "2022-05-26T07:13:40.027332404Z"
description: AppDynamics Machine Agent for infrastructure visibility
digest: 1e646e23fb53641455522b8238a80eba58b6b480632b34340e22494cb9467c1e
home: https://www.appdynamics.com/
icon: https://raw.githubusercontent.com/Appdynamics/appdynamics-charts/master/logo.png
keywords:
- appdynamics
- monitoring
- infrastructure
maintainers:
- email: [email protected]
name: menglert
- email: [email protected]
name: sashaPM
name: machine-agent
sources:
- https://cloud.docker.com/u/appdynamics/repository/docker/appdynamics/machine-agent-analytics/general
- https://github.com/Appdynamics/appdynamics-docker-images/blob/master/appd-machine-agent-analytics/Dockerfile
urls:
- https://ciscodevnet.github.io/appdynamics-charts/machine-agent-0.2.4.tgz
version: 0.2.4
- apiVersion: v1
appVersion: 4.5.11
created: "2022-05-26T07:13:40.026764219Z"
description: AppDynamics Machine Agent for infrastructure visibility
digest: c7eaf87b9d4089abfd6eeb2478278a13d6f7b8e504a120f2954c5e9e82bd1772
home: https://www.appdynamics.com/
icon: https://raw.githubusercontent.com/Appdynamics/appdynamics-charts/master/logo.png
keywords:
- appdynamics
- monitoring
- infrastructure
maintainers:
- email: [email protected]
name: menglert
- email: [email protected]
name: sashaPM
name: machine-agent
sources:
- https://cloud.docker.com/u/appdynamics/repository/docker/appdynamics/machine-agent-analytics/general
- https://github.com/Appdynamics/appdynamics-docker-images/blob/master/appd-machine-agent-analytics/Dockerfile
urls:
- https://ciscodevnet.github.io/appdynamics-charts/machine-agent-0.2.3.tgz
version: 0.2.3
- apiVersion: v1
appVersion: 4.5.9
created: "2022-05-26T07:13:40.026228276Z"
description: AppDynamics Machine Agent for infrastructure visibility
digest: 1e3534adbc3ddbb119033e652e6f37c9b6a27dcf6ae12c48cc52a9971ea5b0bc
home: https://www.appdynamics.com/
icon: https://raw.githubusercontent.com/Appdynamics/appdynamics-charts/master/logo.png
keywords:
- appdynamics
- monitoring
- infrastructure
maintainers:
- email: [email protected]
name: menglert
- email: [email protected]
name: sashaPM
name: machine-agent
sources:
- https://cloud.docker.com/u/appdynamics/repository/docker/appdynamics/machine-agent-analytics/general
- https://github.com/Appdynamics/appdynamics-docker-images/blob/master/appd-machine-agent-analytics/Dockerfile
urls:
- https://ciscodevnet.github.io/appdynamics-charts/machine-agent-0.2.2.tgz
version: 0.2.2
o2-k8s-monitoring:
- apiVersion: v2
appVersion: 22.5.0
created: "2022-05-26T07:13:40.035222024Z"
description: Sophisticated helm chart to deploy clustermon as a deployment, otel
collector, infra manager, containermon, servermon and log collector as a daemonset.
digest: 05b60df71110b8975b482a388dcbbadde4c6e7368feb33b6d2a2f676874ca0c2
home: https://appdynamics.com
icon: https://raw.githubusercontent.com/CiscoDevNet/appdynamics-charts/master/logo.png
keywords:
- appdynamics
- cluster
- kubernetes
- monitoring
- pod
- deployment
maintainers:
- email: [email protected]
name: AppDynamics
name: o2-k8s-monitoring
urls:
- https://ciscodevnet.github.io/appdynamics-charts/o2-k8s-monitoring-0.5.0.tgz
version: 0.5.0
- apiVersion: v2
appVersion: 22.3.1
created: "2022-05-26T07:13:40.034351993Z"
description: Sophisticated helm chart to deploy clustermon as a deployment, otel
collector, infra manager, containermon, servermon and log collector as a daemonset.
digest: 482923a1150b6d5eab5a291de470be188f20c7dfdee78e153bcf8b1b5ad9bd86
home: https://appdynamics.com
icon: https://raw.githubusercontent.com/CiscoDevNet/appdynamics-charts/master/logo.png
keywords:
- appdynamics
- cluster
- kubernetes
- monitoring
- pod
- deployment
maintainers:
- email: [email protected]
name: AppDynamics
name: o2-k8s-monitoring
urls:
- https://ciscodevnet.github.io/appdynamics-charts/o2-k8s-monitoring-0.4.0.tgz
version: 0.4.0
- apiVersion: v2
appVersion: 22.3.0
created: "2022-05-26T07:13:40.033566339Z"
description: Sophisticated helm chart to deploy clustermon as a deployment, otel
collector, infra manager, containermon, servermon and log collector as a daemonset.
digest: b234f142b82706826d7bfdac5c80a50c4f8168abf4fc2d5d2561b05415a5e47d
home: https://appdynamics.com
icon: https://raw.githubusercontent.com/CiscoDevNet/appdynamics-charts/master/logo.png
keywords:
- appdynamics
- cluster
- kubernetes
- monitoring
- pod
- deployment
maintainers:
- email: [email protected]
name: AppDynamics
name: o2-k8s-monitoring
urls:
- https://ciscodevnet.github.io/appdynamics-charts/o2-k8s-monitoring-0.3.0.tgz
version: 0.3.0
- apiVersion: v2
appVersion: 22.3.0
created: "2022-05-26T07:13:40.031988844Z"
description: Sophisticated helm chart to deploy clustermon as a deployment, otel
collector, infra manager, containermon, servermon and log collector as a daemonset.
digest: 93e089412991363284583e6f4a1b1e84401ed5816101293ba2a4e5673a2a0175
home: https://appdynamics.com
icon: https://raw.githubusercontent.com/CiscoDevNet/appdynamics-charts/master/logo.png
keywords:
- appdynamics
- cluster
- kubernetes
- monitoring
- pod
- deployment
maintainers:
- email: [email protected]
name: AppDynamics
name: o2-k8s-monitoring
urls:
- https://ciscodevnet.github.io/appdynamics-charts/o2-k8s-monitoring-0.2.0.tgz
version: 0.2.0
- apiVersion: v2
appVersion: 22.1.1
created: "2022-05-26T07:13:40.031272938Z"
description: Sophisticated helm chart to deploy clustermon as a deployment, otel
collector, infra manager, containermon and servermon as a daemonset.
digest: c29030b511870cfafbf317b99dfa59403dd355a3081138e93163da7c7bb6337d
home: https://appdynamics.com
icon: https://raw.githubusercontent.com/CiscoDevNet/appdynamics-charts/master/logo.png
keywords:
- appdynamics
- cluster
- kubernetes
- monitoring
- pod
- deployment
maintainers:
- email: [email protected]
name: AppDynamics
name: o2-k8s-monitoring
urls:
- https://ciscodevnet.github.io/appdynamics-charts/o2-k8s-monitoring-0.1.1.tgz
version: 0.1.1
- apiVersion: v2
appVersion: 22.1.0
created: "2022-05-26T07:13:40.030642613Z"
description: Sophisticated helm chart to deploy clustermon as a deployment, otel
collector, infra manager, containermon and servermon as a daemonset.
digest: cc7809773409b57dd909fe7578c2cb72e1aa46488561028c29f36dce7862622c
home: https://appdynamics.com
icon: https://raw.githubusercontent.com/CiscoDevNet/appdynamics-charts/master/logo.png
keywords:
- appdynamics
- cluster
- kubernetes
- monitoring
- pod
- deployment
maintainers:
- email: [email protected]
name: AppDynamics
name: o2-k8s-monitoring
urls:
- https://ciscodevnet.github.io/appdynamics-charts/o2-k8s-monitoring-0.1.0.tgz
version: 0.1.0
o2-operator:
- apiVersion: v2
appVersion: 22.5.0
created: "2022-05-26T07:13:40.03756472Z"
description: Helm chart for Appdynamics Operator
digest: 5948203a4ddbb2ffcf1bc714f853de101cd71d2e666a475a4c29e7ae9cf9da3d
home: https://appdynamics.com
icon: https://raw.githubusercontent.com/CiscoDevNet/appdynamics-charts/master/logo.png
keywords:
- appdynamics
- cluster
- kubernetes
- monitoring
- pod
- deployment
maintainers:
- email: [email protected]
name: AppDynamics
name: o2-operator
urls:
- https://ciscodevnet.github.io/appdynamics-charts/o2-operator-0.5.0.tgz
version: 0.5.0
- apiVersion: v2
appVersion: 22.3.1
created: "2022-05-26T07:13:40.03717437Z"
description: Helm chart for Appdynamics Operator
digest: d9601d0275d603c47880e682dfcbb3a288bfa34d882d738339ed5a4bb68937cd
home: https://appdynamics.com
icon: https://raw.githubusercontent.com/CiscoDevNet/appdynamics-charts/master/logo.png
keywords:
- appdynamics
- cluster
- kubernetes
- monitoring
- pod
- deployment
maintainers:
- email: [email protected]
name: AppDynamics
name: o2-operator
urls:
- https://ciscodevnet.github.io/appdynamics-charts/o2-operator-0.4.0.tgz
version: 0.4.0
- apiVersion: v2
appVersion: 22.3.0
created: "2022-05-26T07:13:40.036796098Z"
description: Helm chart for Appdynamics Operator
digest: 64fefd539543ba8f376a34809ee7eb5791b56a19438e554a6aad77295cacbc31
home: https://appdynamics.com
icon: https://raw.githubusercontent.com/CiscoDevNet/appdynamics-charts/master/logo.png
keywords:
- appdynamics
- cluster
- kubernetes
- monitoring
- pod
- deployment
maintainers:
- email: [email protected]
name: AppDynamics
name: o2-operator
urls:
- https://ciscodevnet.github.io/appdynamics-charts/o2-operator-0.3.0.tgz
version: 0.3.0
- apiVersion: v2
appVersion: 22.3.0
created: "2022-05-26T07:13:40.036375573Z"
description: Helm chart for Appdynamics Operator
digest: 23030b508f881d1a7cf58b363df19b1ea51879e54ae10679c29624df7aaef703
home: https://appdynamics.com
icon: https://raw.githubusercontent.com/CiscoDevNet/appdynamics-charts/master/logo.png
keywords:
- appdynamics
- cluster
- kubernetes
- monitoring
- pod
- deployment
maintainers:
- email: [email protected]
name: AppDynamics
name: o2-operator
urls:
- https://ciscodevnet.github.io/appdynamics-charts/o2-operator-0.2.0.tgz
version: 0.2.0
- apiVersion: v2
appVersion: 22.1.1
created: "2022-05-26T07:13:40.03599489Z"
description: Helm chart for Appdynamics Operator
digest: 602dee6776eee4fb02898e0128948a276c8367fa6cc85ee44dc7dce9af4e67a5
home: https://appdynamics.com
icon: https://raw.githubusercontent.com/CiscoDevNet/appdynamics-charts/master/logo.png
keywords:
- appdynamics
- cluster
- kubernetes
- monitoring
- pod
- deployment
maintainers:
- email: [email protected]
name: AppDynamics
name: o2-operator
urls:
- https://ciscodevnet.github.io/appdynamics-charts/o2-operator-0.1.1.tgz
version: 0.1.1
- apiVersion: v2
appVersion: 22.1.0
created: "2022-05-26T07:13:40.035612418Z"
description: Helm chart for Appdynamics Operator
digest: 946ca13d10206c53d361bfdd6750d5f39b767e76043c7550e5237c6f992f3c55
home: https://appdynamics.com
icon: https://raw.githubusercontent.com/CiscoDevNet/appdynamics-charts/master/logo.png
keywords:
- appdynamics
- cluster
- kubernetes
- monitoring
- pod
- deployment
maintainers:
- email: [email protected]
name: AppDynamics
name: o2-operator
urls:
- https://ciscodevnet.github.io/appdynamics-charts/o2-operator-0.1.0.tgz
version: 0.1.0
generated: "2022-05-26T07:13:39.997336467Z"