summaryrefslogtreecommitdiffstats
path: root/src/go/collectors/go.d.plugin/modules/prometheus/wip_meta.yaml
blob: 6583c7c61704112e183d009c8f6e307355c9359b (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
- <<: *module
  meta:
    <<: *meta
    most_popular: false
    community: true
    monitored_instance:
      name: NetApp Trident
      link: https://github.com/NetApp/trident
      icon_filename: netapp.svg
      categories:
        - data-collection.storage-mount-points-and-filesystems
    keywords:
      - network monitoring
      - network performance
      - traffic analysis
  overview:
    <<: *overview
    data_collection:
      metrics_description: |
        Monitor NetApp Trident container storage metrics for efficient storage provisioning and performance.
      method_description: |
        Metrics are gathered by periodically sending HTTP requests to [NetApp Trident exporter](https://github.com/NetApp/trident).
  setup:
    <<: *setup
    prerequisites:
      list:
        - title: Install OpenMetrics Exporter
          description: |
            Install [NetApp Trident exporter](https://github.com/NetApp/trident) by following the instructions mentioned in the exporter README.
- <<: *module
  meta:
    <<: *meta
    most_popular: false
    community: true
    monitored_instance:
      name: Scylla-Cluster-Tests
      link: https://github.com/scylladb/scylla-cluster-tests/
      icon_filename: scylla.png
      categories:
        - data-collection.database-servers
    keywords: []
  overview:
    <<: *overview
    data_collection:
      metrics_description: |
        Monitor ScyllaDB cluster test metrics for efficient database testing and performance.
      method_description: |
        Metrics are gathered by periodically sending HTTP requests to [Scylla-Cluster-Tests Exporter](https://github.com/scylladb/scylla-cluster-tests/).
  setup:
    <<: *setup
    prerequisites:
      list:
        - title: Install OpenMetrics Exporter
          description: |
            Install [Scylla-Cluster-Tests Exporter](https://github.com/scylladb/scylla-cluster-tests/) by following the instructions mentioned in the exporter README.
- <<: *module
  meta:
    <<: *meta
    most_popular: false
    community: true
    monitored_instance:
      name: ScyllaDB
      link: https://github.com/scylladb/scylladb
      icon_filename: scylla.png
      categories:
        - data-collection.database-servers
    keywords:
      - database
      - dbms
      - data storage
  overview:
    <<: *overview
    data_collection:
      metrics_description: |
        Track ScyllaDB NoSQL database metrics for efficient database management and performance.
      method_description: |
        Metrics are gathered by periodically sending HTTP requests to [ScyllaDB exporter](https://github.com/scylladb/scylladb).
  setup:
    <<: *setup
    prerequisites:
      list:
        - title: Install OpenMetrics Exporter
          description: |
            Install [ScyllaDB exporter](https://github.com/scylladb/scylladb) by following the instructions mentioned in the exporter README.
- <<: *module
  meta:
    <<: *meta
    most_popular: false
    community: true
    monitored_instance:
      name: StayRTR
      link: https://github.com/bgp/stayrtr
      icon_filename: stayrtr.png
      categories:
        - data-collection.networking-stack-and-network-interfaces
    keywords: []
  overview:
    <<: *overview
    data_collection:
      metrics_description: |
        Track RPKI-to-Router (RTR) protocol metrics for efficient routing security and performance.
      method_description: |
        Metrics are gathered by periodically sending HTTP requests to [StayRTR Exporter](https://github.com/bgp/stayrtr).
  setup:
    <<: *setup
    prerequisites:
      list:
        - title: Install OpenMetrics Exporter
          description: |
            Install [StayRTR Exporter](https://github.com/bgp/stayrtr) by following the instructions mentioned in the exporter README.
- <<: *module
  meta:
    <<: *meta
    most_popular: false
    community: true
    monitored_instance:
      name: Wildfly
      link: https://docs.wildfly.org/18/Admin_Guide.html#MicroProfile_Metrics_SmallRye
      icon_filename: wildfly.png
      categories:
        - data-collection.application-servers
    keywords: []
  overview:
    <<: *overview
    data_collection:
      metrics_description: |
        Monitor WildFly (formerly JBoss AS) Java application server metrics for efficient Java application management and performance.
      method_description: |
        Metrics are gathered by periodically sending HTTP requests to [Wildfly Exporter](https://docs.wildfly.org/18/Admin_Guide.html#MicroProfile_Metrics_SmallRye).
  setup:
    <<: *setup
    prerequisites:
      list:
        - title: Install OpenMetrics Exporter
          description: |
            Install [Wildfly Exporter](https://docs.wildfly.org/18/Admin_Guide.html#MicroProfile_Metrics_SmallRye) by following the instructions mentioned in the exporter README.
- <<: *module
  meta:
    <<: *meta
    most_popular: false
    community: true
    monitored_instance:
      name: Zeek
      link: https://github.com/zeek/zeek
      icon_filename: zeek.png
      categories:
        - data-collection.apm
    keywords: []
  overview:
    <<: *overview
    data_collection:
      metrics_description: |
        Track Zeek (formerly Bro) network security monitoring metrics for efficient network security and performance.
      method_description: |
        Metrics are gathered by periodically sending HTTP requests to [Zeek](https://github.com/zeek/zeek).
  setup:
    <<: *setup
    prerequisites:
      list:
        - title: Install OpenMetrics Exporter
          description: |
            Install [Zeek](https://github.com/zeek/zeek) by following the instructions mentioned in the exporter README.
- <<: *module
  meta:
    <<: *meta
    most_popular: false
    community: true
    monitored_instance:
      name: Authelia
      link: https://www.authelia.com/reference/guides/metrics/#prometheus
      icon_filename: authelia.png
      categories:
        - data-collection.authentication-and-authorization
    keywords: []
  overview:
    <<: *overview
    data_collection:
      metrics_description: |
        Keep tabs on Authelia authentication and authorization metrics for enhanced security and user management.
      method_description: |
        Metrics are gathered by periodically sending HTTP requests to [Authelia](https://www.authelia.com/reference/guides/metrics/#prometheus).
  setup:
    <<: *setup
    prerequisites:
      list:
        - title: Install OpenMetrics Exporter
          description: |
            Install [Authelia](https://www.authelia.com/reference/guides/metrics/#prometheus) by following the instructions mentioned in the exporter README.
- <<: *module
  meta:
    <<: *meta
    most_popular: false
    community: true
    monitored_instance:
      name: Butler (Qlik Sense DevOps toolbox)
      link: https://github.com/ptarmiganlabs/butler
      icon_filename: butler.png
      categories:
        - data-collection.apm
    keywords: []
  overview:
    <<: *overview
    data_collection:
      metrics_description: |
        Monitor Butler Qlik Sense DevOps metrics for efficient development and operations management.
      method_description: |
        Metrics are gathered by periodically sending HTTP requests to [Butler (Qlik Sense DevOps toolbox) Exporter. WIP](https://github.com/ptarmiganlabs/butler).
  setup:
    <<: *setup
    prerequisites:
      list:
        - title: Install OpenMetrics Exporter
          description: |
            Install [Butler (Qlik Sense DevOps toolbox) Exporter. WIP](https://github.com/ptarmiganlabs/butler) by following the instructions mentioned in the exporter README.
- <<: *module
  meta:
    <<: *meta
    most_popular: false
    community: true
    monitored_instance:
      name: Butler CW (Qlik Sense cache warming tool)
      link: https://github.com/ptarmiganlabs/butler-cw
      icon_filename: butler-cw.png
      categories:
        - data-collection.apm
    keywords: []
  overview:
    <<: *overview
    data_collection:
      metrics_description: |
        Keep tabs on Butler CW Qlik Sense cache warming metrics for optimized data access and performance.
      method_description: |
        Metrics are gathered by periodically sending HTTP requests to [Butler CW (Qlik Sense cache warming tool) Exporter. WIP](https://github.com/ptarmiganlabs/butler-cw).
  setup:
    <<: *setup
    prerequisites:
      list:
        - title: Install OpenMetrics Exporter
          description: |
            Install [Butler CW (Qlik Sense cache warming tool) Exporter. WIP](https://github.com/ptarmiganlabs/butler-cw) by following the instructions mentioned in the exporter README.
- <<: *module
  meta:
    <<: *meta
    most_popular: false
    community: true
    monitored_instance:
      name: Butler SOS (Qlik Sense monitoring tool)
      link: https://github.com/ptarmiganlabs/butler-sos
      icon_filename: butler-sos.png
      categories:
        - data-collection.apm
    keywords: []
  overview:
    <<: *overview
    data_collection:
      metrics_description: |
        Monitor Butler SOS Qlik Sense metrics for comprehensive performance analysis and management.
      method_description: |
        Metrics are gathered by periodically sending HTTP requests to [Butler SOS (Qlik Sense monitoring tool) Exporter](https://github.com/ptarmiganlabs/butler-sos).
  setup:
    <<: *setup
    prerequisites:
      list:
        - title: Install OpenMetrics Exporter
          description: |
            Install [Butler SOS (Qlik Sense monitoring tool) Exporter](https://github.com/ptarmiganlabs/butler-sos) by following the instructions mentioned in the exporter README.
- <<: *module
  meta:
    <<: *meta
    most_popular: false
    community: true
    monitored_instance:
      name: c-lightning
      link: https://github.com/lightningd/plugins/tree/master/prometheus
      icon_filename: lightning.png
      categories:
        - data-collection.blockchain-servers
    keywords: []
  overview:
    <<: *overview
    data_collection:
      metrics_description: |
        Track c-lightning metrics for optimized Lightning Network management and performance.
      method_description: |
        Metrics are gathered by periodically sending HTTP requests to [c-lightning prometheus exporter](https://github.com/lightningd/plugins/tree/master/prometheus).
  setup:
    <<: *setup
    prerequisites:
      list:
        - title: Install OpenMetrics Exporter
          description: |
            Install [c-lightning prometheus exporter](https://github.com/lightningd/plugins/tree/master/prometheus) by following the instructions mentioned in the exporter README.
- <<: *module
  meta:
    <<: *meta
    most_popular: false
    community: true
    monitored_instance:
      name: Cloudprober
      link: https://github.com/cloudprober/cloudprober
      icon_filename: cloudprober.png
      categories:
        - data-collection.synthetic-checks
    keywords:
      - cloud services
      - cloud computing
      - scalability
  overview:
    <<: *overview
    data_collection:
      metrics_description: |
        Keep an eye on cloud service availability and latency with Cloudprober monitoring.
      method_description: |
        Metrics are gathered by periodically sending HTTP requests to [Cloudprober Exporter](https://github.com/cloudprober/cloudprober).
  setup:
    <<: *setup
    prerequisites:
      list:
        - title: Install OpenMetrics Exporter
          description: |
            Install [Cloudprober Exporter](https://github.com/cloudprober/cloudprober) by following the instructions mentioned in the exporter README.
- <<: *module
  meta:
    <<: *meta
    most_popular: false
    community: true
    monitored_instance:
      name: consrv
      link: https://github.com/mdlayher/consrv
      icon_filename: consrv.png
      categories:
        - data-collection.generic-data-collection
    keywords: []
  overview:
    <<: *overview
    data_collection:
      metrics_description: |
        Track serial console bridge server metrics for optimized service discovery and health management.
      method_description: |
        Metrics are gathered by periodically sending HTTP requests to [consrv](https://github.com/mdlayher/consrv).
  setup:
    <<: *setup
    prerequisites:
      list:
        - title: Install OpenMetrics Exporter
          description: |
            Install [consrv](https://github.com/mdlayher/consrv) by following the instructions mentioned in the exporter README.
- <<: *module
  meta:
    <<: *meta
    most_popular: false
    community: true
    monitored_instance:
      name: CoreRAD
      link: https://github.com/mdlayher/corerad
      icon_filename: corerad.png
      categories:
        - data-collection.dns-and-dhcp-servers
    keywords: []
  overview:
    <<: *overview
    data_collection:
      metrics_description: |
        Monitor CoreRAD IPv6 router advertisement daemon metrics for efficient network management and performance.
      method_description: |
        Metrics are gathered by periodically sending HTTP requests to [CoreRAD](https://github.com/mdlayher/corerad).
  setup:
    <<: *setup
    prerequisites:
      list:
        - title: Install OpenMetrics Exporter
          description: |
            Install [CoreRAD](https://github.com/mdlayher/corerad) by following the instructions mentioned in the exporter README.
- <<: *module
  meta:
    <<: *meta
    most_popular: false
    community: true
    monitored_instance:
      name: CrateDB remote remote read/write adapter
      link: https://github.com/crate/cratedb-prometheus-adapter
      icon_filename: cratedb.png
      categories:
        - data-collection.database-servers
    keywords:
      - database
      - dbms
      - data storage
  overview:
    <<: *overview
    data_collection:
      metrics_description: |
        Track CrateDB metrics for efficient data storage and query performance.
      method_description: |
        Metrics are gathered by periodically sending HTTP requests to [CrateDB remote remote read/write adapter](https://github.com/crate/cratedb-prometheus-adapter).
  setup:
    <<: *setup
    prerequisites:
      list:
        - title: Install OpenMetrics Exporter
          description: |
            Install [CrateDB remote remote read/write adapter](https://github.com/crate/cratedb-prometheus-adapter) by following the instructions mentioned in the exporter README.

- <<: *module
  meta:
    <<: *meta
    most_popular: false
    community: true
    monitored_instance:
      name: DRBD  via drbd-reactor
      link: https://github.com/LINBIT/drbd-reactor
      icon_filename: drbd.png
      categories:
        - data-collection.storage-mount-points-and-filesystems
    keywords: []
  overview:
    <<: *overview
    data_collection:
      metrics_description: |
        Track DRBD metrics for efficient distributed replicated block device management and performance.
      method_description: |
        Metrics are gathered by periodically sending HTTP requests to [DRBD exporter via drbd-reactor](https://github.com/LINBIT/drbd-reactor).
  setup:
    <<: *setup
    prerequisites:
      list:
        - title: Install OpenMetrics Exporter
          description: |
            Install [DRBD exporter via drbd-reactor](https://github.com/LINBIT/drbd-reactor) by following the instructions mentioned in the exporter README.
- <<: *module
  meta:
    <<: *meta
    most_popular: false
    community: true
    monitored_instance:
      name: Falco
      link: https://github.com/falcosecurity/falco
      icon_filename: falco.png
      categories:
        - data-collection.security-systems
    keywords: []
  overview:
    <<: *overview
    data_collection:
      metrics_description: |
        Track Falco security metrics for efficient runtime security management and threat detection.
      method_description: |
        Metrics are gathered by periodically sending HTTP requests to [Falco](https://github.com/falcosecurity/falco).
  setup:
    <<: *setup
    prerequisites:
      list:
        - title: Install OpenMetrics Exporter
          description: |
            Install [Falco](https://github.com/falcosecurity/falco) by following the instructions mentioned in the exporter README.


- <<: *module
  meta:
    <<: *meta
    most_popular: false
    community: true
    monitored_instance:
      name: FastNetMon Advanced
      link: https://fastnetmon.com/docs-fnm-advanced/
      icon_filename: fastnetmon.png
      categories:
        - data-collection.networking-stack-and-network-interfaces
    keywords:
      - network monitoring
      - network performance
      - traffic analysis
  overview:
    <<: *overview
    data_collection:
      metrics_description: |
        Keep tabs on FastNetMon Advanced network monitoring metrics for efficient traffic analysis and DDoS detection.
      method_description: |
        Metrics are gathered by periodically sending HTTP requests to [FastNetMon Advanced exporter](https://fastnetmon.com/docs-fnm-advanced/).
  setup:
    <<: *setup
    prerequisites:
      list:
        - title: Install OpenMetrics Exporter
          description: |
            Install [FastNetMon Advanced exporter](https://fastnetmon.com/docs-fnm-advanced/) by following the instructions mentioned in the exporter README.
- <<: *module
  meta:
    <<: *meta
    most_popular: false
    community: true
    monitored_instance:
      name: Faucet SDN Faucet
      link: https://github.com/faucetsdn/faucet
      icon_filename: faucet.png
      categories:
        - data-collection.networking-stack-and-network-interfaces
    keywords: []
  overview:
    <<: *overview
    data_collection:
      metrics_description: |
        Monitor Faucet software-defined networking metrics for efficient network management and performance.
      method_description: |
        Metrics are gathered by periodically sending HTTP requests to [Faucet SDN Faucet Exporter](https://github.com/faucetsdn/faucet).
  setup:
    <<: *setup
    prerequisites:
      list:
        - title: Install OpenMetrics Exporter
          description: |
            Install [Faucet SDN Faucet Exporter](https://github.com/faucetsdn/faucet) by following the instructions mentioned in the exporter README.
- <<: *module
  meta:
    <<: *meta
    most_popular: false
    community: true
    monitored_instance:
      name: Fawkes
      link: https://github.com/fawkesrobotics/fawkes
      icon_filename: fawkes.png
      categories:
        - data-collection.generic-data-collection
    keywords: []
  overview:
    <<: *overview
    data_collection:
      metrics_description: |
        Track Fawkes Robotic Real-Time Applications metrics for enhanced monitoring.
      method_description: |
        Metrics are gathered by periodically sending HTTP requests to [Fawkes](https://github.com/fawkesrobotics/fawkes).
  setup:
    <<: *setup
    prerequisites:
      list:
        - title: Install OpenMetrics Exporter
          description: |
            Install [Fawkes](https://github.com/fawkesrobotics/fawkes) by following the instructions mentioned in the exporter README.
- <<: *module
  meta:
    <<: *meta
    most_popular: false
    community: true
    monitored_instance:
      name: gitlab-pages
      link: https://gitlab.com/gitlab-org/gitlab-pages/
      icon_filename: gitlab.png
      categories:
        - data-collection.apm
    keywords: []
  overview:
    <<: *overview
    data_collection:
      metrics_description: |
        Track GitLab Pages metrics for optimized static site hosting and management.
      method_description: |
        Metrics are gathered by periodically sending HTTP requests to [gitlab-pages exporter](https://gitlab.com/gitlab-org/gitlab-pages/).
  setup:
    <<: *setup
    prerequisites:
      list:
        - title: Install OpenMetrics Exporter
          description: |
            Install [gitlab-pages exporter](https://gitlab.com/gitlab-org/gitlab-pages/) by following the instructions mentioned in the exporter README.
- <<: *module
  meta:
    <<: *meta
    most_popular: false
    community: true
    monitored_instance:
      name: gitlab-workhorse
      link: https://gitlab.com/gitlab-org/gitlab-workhorse
      icon_filename: gitlab.png
      categories:
        - data-collection.apm
    keywords: []
  overview:
    <<: *overview
    data_collection:
      metrics_description: |
        Monitor GitLab Workhorse metrics for efficient web server and reverse proxy management.
      method_description: |
        Metrics are gathered by periodically sending HTTP requests to [gitlab-workhorse](https://gitlab.com/gitlab-org/gitlab-workhorse).
  setup:
    <<: *setup
    prerequisites:
      list:
        - title: Install OpenMetrics Exporter
          description: |
            Install [gitlab-workhorse](https://gitlab.com/gitlab-org/gitlab-workhorse) by following the instructions mentioned in the exporter README.
- <<: *module
  meta:
    <<: *meta
    most_popular: false
    community: true
    monitored_instance:
      name: GlusterFS
      link: https://github.com/gluster/gluster-prometheus
      icon_filename: gluster.png
      categories:
        - data-collection.storage-mount-points-and-filesystems
    keywords: []
  overview:
    <<: *overview
    data_collection:
      metrics_description: |
        Keep tabs on GlusterFS distributed file system metrics for optimized storage management and performance.
      method_description: |
        Metrics are gathered by periodically sending HTTP requests to [GlusterFS Exporter](https://github.com/gluster/gluster-prometheus).
  setup:
    <<: *setup
    prerequisites:
      list:
        - title: Install OpenMetrics Exporter
          description: |
            Install [GlusterFS Exporter](https://github.com/gluster/gluster-prometheus) by following the instructions mentioned in the exporter README.
- <<: *module
  meta:
    <<: *meta
    most_popular: false
    community: true
    monitored_instance:
      name: Google Cloud Status Dashboard
      link: https://github.com/DazWilkin/gcp-status
      icon_filename: gcp.png
      categories:
        - data-collection.cloud-provider-managed
    keywords:
      - cloud services
      - cloud computing
      - scalability
  overview:
    <<: *overview
    data_collection:
      metrics_description: |
        Keep an eye on Google Cloud status metrics for efficient service availability management.
      method_description: |
        Metrics are gathered by periodically sending HTTP requests to [Google Cloud Status Dashboard exporter](https://github.com/DazWilkin/gcp-status).
  setup:
    <<: *setup
    prerequisites:
      list:
        - title: Install OpenMetrics Exporter
          description: |
            Install [Google Cloud Status Dashboard exporter](https://github.com/DazWilkin/gcp-status) by following the instructions mentioned in the exporter README.
- <<: *module
  meta:
    <<: *meta
    most_popular: false
    community: true
    monitored_instance:
      name: haraka
      link: https://github.com/mailprotector/haraka-plugin-prometheus
      icon_filename: haraka.png
      categories:
        - data-collection.mail-servers
    keywords: []
  overview:
    <<: *overview
    data_collection:
      metrics_description: |
        Monitor Haraka SMTP server metrics for efficient email delivery and security management.
      method_description: |
        Metrics are gathered by periodically sending HTTP requests to [haraka exporter](https://github.com/mailprotector/haraka-plugin-prometheus).
  setup:
    <<: *setup
    prerequisites:
      list:
        - title: Install OpenMetrics Exporter
          description: |
            Install [haraka exporter](https://github.com/mailprotector/haraka-plugin-prometheus) by following the instructions mentioned in the exporter README.

- <<: *module
  meta:
    <<: *meta
    most_popular: false
    community: true
    monitored_instance:
      name: Hetzner Cloud CSI Driver (Nodes)
      link: https://github.com/hetznercloud/csi-driver
      icon_filename: hetznercloud.png
      categories:
        - data-collection.cloud-provider-managed
    keywords:
      - cloud services
      - cloud computing
      - scalability
  overview:
    <<: *overview
    data_collection:
      metrics_description: |
        Track Hetzner Cloud Container Storage Interface driver metrics for efficient Kubernetes storage management.
      method_description: |
        Metrics are gathered by periodically sending HTTP requests to [Hetzner Cloud CSI Driver (Nodes)](https://github.com/hetznercloud/csi-driver).
  setup:
    <<: *setup
    prerequisites:
      list:
        - title: Install OpenMetrics Exporter
          description: |
            Install [Hetzner Cloud CSI Driver (Nodes)](https://github.com/hetznercloud/csi-driver) by following the instructions mentioned in the exporter README.
- <<: *module
  meta:
    <<: *meta
    most_popular: false
    community: true
    monitored_instance:
      name: Lutron Homeworks
      link: https://github.com/jbarwick/homeworks-service
      icon_filename: lutron-homeworks.png
      categories:
        - data-collection.iot-devices
    keywords: []
  overview:
    <<: *overview
    data_collection:
      metrics_description: |
        Keep an eye on Homeworks home automation system metrics for optimized smart home management.
      method_description: |
        Metrics are gathered by periodically sending HTTP requests to [Lutron Homeworks Exporter](https://github.com/jbarwick/homeworks-service).
  setup:
    <<: *setup
    prerequisites:
      list:
        - title: Install OpenMetrics Exporter
          description: |
            Install [Lutron Homeworks Exporter](https://github.com/jbarwick/homeworks-service) by following the instructions mentioned in the exporter README.

- <<: *module
  meta:
    <<: *meta
    most_popular: false
    community: true
    monitored_instance:
      name: JIRAlert
      link: https://github.com/alin-sinpalean/jiralert
      icon_filename: jira.png
      categories:
        - data-collection.notifications
    keywords: []
  overview:
    <<: *overview
    data_collection:
      metrics_description: |
        Keep tabs on JIRA issue tracking metrics for optimized project management and collaboration.
      method_description: |
        Metrics are gathered by periodically sending HTTP requests to [JIRAlert](https://github.com/alin-sinpalean/jiralert).
  setup:
    <<: *setup
    prerequisites:
      list:
        - title: Install OpenMetrics Exporter
          description: |
            Install [JIRAlert](https://github.com/alin-sinpalean/jiralert) by following the instructions mentioned in the exporter README.

- <<: *module
  meta:
    <<: *meta
    most_popular: false
    community: true
    monitored_instance:
      name: Kafka Configs
      link: https://github.com/EladLeev/kafka-config-metrics
      icon_filename: kafka.svg
      categories:
        - data-collection.message-brokers
    keywords:
      - big data
      - stream processing
      - message broker
  overview:
    <<: *overview
    data_collection:
      metrics_description: |
        Monitor Kafka configuration metrics for optimized message queue performance and management.
      method_description: |
        Metrics are gathered by periodically sending HTTP requests to [Kafka Configs Metrics Exporter](https://github.com/EladLeev/kafka-config-metrics).
  setup:
    <<: *setup
    prerequisites:
      list:
        - title: Install OpenMetrics Exporter
          description: |
            Install [Kafka Configs Metrics Exporter](https://github.com/EladLeev/kafka-config-metrics) by following the instructions mentioned in the exporter README.
- <<: *module
  meta:
    <<: *meta
    most_popular: false
    community: true
    monitored_instance:
      name: Maddy Mail Server t
      link: https://github.com/foxcpp/maddy
      icon_filename: maddy.png
      categories:
        - data-collection.mail-servers
    keywords: []
  overview:
    <<: *overview
    data_collection:
      metrics_description: |
        Keep tabs on Maddy Mail Server metrics for efficient email delivery and security management.
      method_description: |
        Metrics are gathered by periodically sending HTTP requests to [Maddy Mail Server metrics endpoint](https://github.com/foxcpp/maddy).
  setup:
    <<: *setup
    prerequisites:
      list:
        - title: Install OpenMetrics Exporter
          description: |
            Install [Maddy Mail Server metrics endpoint](https://github.com/foxcpp/maddy) by following the instructions mentioned in the exporter README.

- <<: *module
  meta:
    <<: *meta
    most_popular: false
    community: true
    monitored_instance:
      name: Purpleidea Mgmt
      link: https://github.com/purpleidea/mgmt
      icon_filename: mgmtconfig.png
      categories:
        - data-collection.provisioning-systems
    keywords: []
  overview:
    <<: *overview
    data_collection:
      metrics_description: |
        Keep an eye on MGMT configuration management system metrics for efficient infrastructure management and performance.
      method_description: |
        Metrics are gathered by periodically sending HTTP requests to [mgmt exporter](https://github.com/purpleidea/mgmt).
  setup:
    <<: *setup
    prerequisites:
      list:
        - title: Install OpenMetrics Exporter
          description: |
            Install [mgmt exporter](https://github.com/purpleidea/mgmt) by following the instructions mentioned in the exporter README.
- <<: *module
  meta:
    <<: *meta
    most_popular: false
    community: true
    monitored_instance:
      name: Nebula
      link: https://github.com/immstudios/promexp
      icon_filename: nebula.png
      categories:
        - data-collection.media-streaming-servers
    keywords: []
  overview:
    <<: *overview
    data_collection:
      metrics_description: |
        Keep an eye on Nebula broadcast system metrics for efficient media broadcasting and performance.
      method_description: |
        Metrics are gathered by periodically sending HTTP requests to [Nebula Exporter (unified exporter for broadcasters)](https://github.com/immstudios/promexp).
  setup:
    <<: *setup
    prerequisites:
      list:
        - title: Install OpenMetrics Exporter
          description: |
            Install [Nebula Exporter (unified exporter for broadcasters)](https://github.com/immstudios/promexp) by following the instructions mentioned in the exporter README.
- <<: *module
  meta:
    <<: *meta
    most_popular: false
    community: true
    monitored_instance:
      name: NeonKube Service
      link: https://github.com/nforgeio/neonKUBE
      icon_filename: neonkube.png
      categories:
        - data-collection.service-discovery-registry
    keywords: []
  overview:
    <<: *overview
    data_collection:
      metrics_description: |
        Track Neon CRM metrics for efficient nonprofit management and performance.
      method_description: |
        Metrics are gathered by periodically sending HTTP requests to [Neon Service Standard Exporter](https://github.com/nforgeio/neonKUBE).
  setup:
    <<: *setup
    prerequisites:
      list:
        - title: Install OpenMetrics Exporter
          description: |
            Install [Neon Service Standard Exporter](https://github.com/nforgeio/neonKUBE) by following the instructions mentioned in the exporter README.


- <<: *module
  meta:
    <<: *meta
    most_popular: false
    community: true
    monitored_instance:
      name: Onionprobe
      link: https://gitlab.torproject.org/tpo/onion-services/onionprobe
      icon_filename: onion.png
      categories:
        - data-collection.networking-stack-and-network-interfaces
    keywords: []
  overview:
    <<: *overview
    data_collection:
      metrics_description: |
        Track Tor network metrics for efficient anonymity network performance and management.
      method_description: |
        Metrics are gathered by periodically sending HTTP requests to [Onionprobe](https://gitlab.torproject.org/tpo/onion-services/onionprobe).
  setup:
    <<: *setup
    prerequisites:
      list:
        - title: Install OpenMetrics Exporter
          description: |
            Install [Onionprobe](https://gitlab.torproject.org/tpo/onion-services/onionprobe) by following the instructions mentioned in the exporter README.



- <<: *module
  meta:
    <<: *meta
    most_popular: false
    community: true
    monitored_instance:
      name: Opflex-agent
      link: https://github.com/noironetworks/opflex/blob/master/docs/prometheus.md
      icon_filename: opflex.png
      categories:
        - data-collection.networking-stack-and-network-interfaces
    keywords: []
  overview:
    <<: *overview
    data_collection:
      metrics_description: |
        Keep tabs on OpFlex agent metrics for efficient software-defined networking management and performance.
      method_description: |
        Metrics are gathered by periodically sending HTTP requests to [Opflex-agent Exporter](https://github.com/noironetworks/opflex/blob/master/docs/prometheus.md).
  setup:
    <<: *setup
    prerequisites:
      list:
        - title: Install OpenMetrics Exporter
          description: |
            Install [Opflex-agent Exporter](https://github.com/noironetworks/opflex/blob/master/docs/prometheus.md) by following the instructions mentioned in the exporter README.
- <<: *module
  meta:
    <<: *meta
    most_popular: false
    community: true
    monitored_instance:
      name: Opflex-server
      link: https://github.com/noironetworks/opflex/blob/master/docs/prometheus.md
      icon_filename: opflex.png
      categories:
        - data-collection.networking-stack-and-network-interfaces
    keywords: []
  overview:
    <<: *overview
    data_collection:
      metrics_description: |
        Monitor OpFlex server metrics for efficient software-defined networking management and performance.
      method_description: |
        Metrics are gathered by periodically sending HTTP requests to [Opflex-server Exporter](https://github.com/noironetworks/opflex/blob/master/docs/prometheus.md).
  setup:
    <<: *setup
    prerequisites:
      list:
        - title: Install OpenMetrics Exporter
          description: |
            Install [Opflex-server Exporter](https://github.com/noironetworks/opflex/blob/master/docs/prometheus.md) by following the instructions mentioned in the exporter README.

- <<: *module
  meta:
    <<: *meta
    most_popular: false
    community: true
    monitored_instance:
      name: ovn-kubernetes Master
      link: https://github.com/ovn-org/ovn-kubernetes
      icon_filename: kube-ovn.png
      categories:
        - data-collection.kubernetes
    keywords:
      - network monitoring
      - network performance
      - traffic analysis
  overview:
    <<: *overview
    data_collection:
      metrics_description: |
        Track OVN-Kubernetes master metrics for efficient Kubernetes networking management and performance.
      method_description: |
        Metrics are gathered by periodically sending HTTP requests to [ovn-kubernetes Master Exporter](https://github.com/ovn-org/ovn-kubernetes).
  setup:
    <<: *setup
    prerequisites:
      list:
        - title: Install OpenMetrics Exporter
          description: |
            Install [ovn-kubernetes Master Exporter](https://github.com/ovn-org/ovn-kubernetes) by following the instructions mentioned in the exporter README.
- <<: *module
  meta:
    <<: *meta
    most_popular: false
    community: true
    monitored_instance:
      name: ovn-kubernetes Node
      link: https://github.com/ovn-org/ovn-kubernetes
      icon_filename: kube-ovn.png
      categories:
        - data-collection.kubernetes
    keywords:
      - network monitoring
      - network performance
      - traffic analysis
  overview:
    <<: *overview
    data_collection:
      metrics_description: |
        Monitor OVN-Kubernetes node metrics for efficient Kubernetes networking management and performance.
      method_description: |
        Metrics are gathered by periodically sending HTTP requests to [ovn-kubernetes Node Exporter](https://github.com/ovn-org/ovn-kubernetes).
  setup:
    <<: *setup
    prerequisites:
      list:
        - title: Install OpenMetrics Exporter
          description: |
            Install [ovn-kubernetes Node Exporter](https://github.com/ovn-org/ovn-kubernetes) by following the instructions mentioned in the exporter README.
- <<: *module
  meta:
    <<: *meta
    most_popular: false
    community: true
    monitored_instance:
      name: Pathvector
      link: https://github.com/natesales/pathvector
      icon_filename: pathvector.png
      categories:
        - data-collection.networking-stack-and-network-interfaces
    keywords: []
  overview:
    <<: *overview
    data_collection:
      metrics_description: |
        Monitor Pathvector BGP routing metrics for efficient
        Border Gateway Protocol management and performance.
      method_description: |
        Metrics are gathered by periodically sending HTTP requests to [Pathvector](https://github.com/natesales/pathvector).
  setup:
    <<: *setup
    prerequisites:
      list:
        - title: Install OpenMetrics Exporter
          description: |
            Install [Pathvector](https://github.com/natesales/pathvector) by following the instructions mentioned in the exporter README.

- <<: *module
  meta:
    <<: *meta
    most_popular: false
    community: true
    monitored_instance:
      name: PCP
      link: https://github.com/performancecopilot/pcp/blob/main/man/man3/pmwebapi.3
      icon_filename: pcp.png
      categories:
        - data-collection.apm
    keywords: []
  overview:
    <<: *overview
    data_collection:
      metrics_description: |
        Track Performance Co-Pilot system performance metrics for efficient IT infrastructure management and performance.
      method_description: |
        Metrics are gathered by periodically sending HTTP requests to [PCP exporter](https://github.com/performancecopilot/pcp/blob/main/man/man3/pmwebapi.3).
  setup:
    <<: *setup
    prerequisites:
      list:
        - title: Install OpenMetrics Exporter
          description: |
            Install [PCP exporter](https://github.com/performancecopilot/pcp/blob/main/man/man3/pmwebapi.3) by following the instructions mentioned in the exporter README.
- <<: *module
  meta:
    <<: *meta
    most_popular: false
    community: true
    monitored_instance:
      name: poudriere
      link: https://rnd.phryk.net/phryk-evil-mad-sciences-llc/prometheus_poudriere
      icon_filename: poudriere.png
      categories:
        - data-collection.freebsd-systems
    keywords: []
  overview:
    <<: *overview
    data_collection:
      metrics_description: |
        Track Poudriere FreeBSD package building and testing metrics for efficient package management and performance.
      method_description: |
        Metrics are gathered by periodically sending HTTP requests to [poudriere exporter](https://rnd.phryk.net/phryk-evil-mad-sciences-llc/prometheus_poudriere).
  setup:
    <<: *setup
    prerequisites:
      list:
        - title: Install OpenMetrics Exporter
          description: |
            Install [poudriere exporter](https://rnd.phryk.net/phryk-evil-mad-sciences-llc/prometheus_poudriere) by following the instructions mentioned in the exporter README.

- <<: *module
  meta:
    <<: *meta
    most_popular: false
    community: true
    monitored_instance:
      name: RCT Inverter
      link: https://github.com/svalouch/rctmon
      icon_filename: rct.png
      categories:
        - data-collection.iot-devices
    keywords: []
  overview:
    <<: *overview
    data_collection:
      metrics_description: |
        Keep an eye on RCT Power inverter metrics for efficient solar energy management and monitoring.
      method_description: |
        Metrics are gathered by periodically sending HTTP requests to [RctMon - RCT Inverter metrics extractor](https://github.com/svalouch/rctmon).
  setup:
    <<: *setup
    prerequisites:
      list:
        - title: Install OpenMetrics Exporter
          description: |
            Install [RctMon - RCT Inverter metrics extractor](https://github.com/svalouch/rctmon) by following the instructions mentioned in the exporter README.

- <<: *module
  meta:
    <<: *meta
    most_popular: false
    community: true
    monitored_instance:
      name: RTRTR
      link: https://github.com/NLnetLabs/rtrtr
      icon_filename: rtrtr.png
      categories:
        - data-collection.networking-stack-and-network-interfaces
    keywords: []
  overview:
    <<: *overview
    data_collection:
      metrics_description: |
        Keep an eye on RPKI-to-Router (RTR) protocol metrics for efficient routing security and performance.
      method_description: |
        Metrics are gathered by periodically sending HTTP requests to [rtrtr exporter](https://github.com/NLnetLabs/rtrtr).
  setup:
    <<: *setup
    prerequisites:
      list:
        - title: Install OpenMetrics Exporter
          description: |
            Install [rtrtr exporter](https://github.com/NLnetLabs/rtrtr) by following the instructions mentioned in the exporter README.
- <<: *module
  meta:
    <<: *meta
    most_popular: false
    community: true
    monitored_instance:
      name: silverpeak
      link: https://github.com/ipHeaders/silverpeak-prometheus
      icon_filename: silverpeak.png
      categories:
        - data-collection.networking-stack-and-network-interfaces
    keywords: []
  overview:
    <<: *overview
    data_collection:
      metrics_description: |
        Monitor Silver Peak SD-WAN metrics for efficient wide area network management and performance.
      method_description: |
        Metrics are gathered by periodically sending HTTP requests to [silverpeak-prometheus](https://github.com/ipHeaders/silverpeak-prometheus).
  setup:
    <<: *setup
    prerequisites:
      list:
        - title: Install OpenMetrics Exporter
          description: |
            Install [silverpeak-prometheus](https://github.com/ipHeaders/silverpeak-prometheus) by following the instructions mentioned in the exporter README.
- <<: *module
  meta:
    <<: *meta
    most_popular: false
    community: true
    monitored_instance:
      name: SmartPi
      link: https://github.com/nDenerserve/SmartPi
      icon_filename: smartpi.png
      categories:
        - data-collection.hardware-devices-and-sensors
    keywords: []
  overview:
    <<: *overview
    data_collection:
      metrics_description: |
        Track SmartPi smart meter metrics for efficient energy management and monitoring.
      method_description: |
        Metrics are gathered by periodically sending HTTP requests to [SmartPi](https://github.com/nDenerserve/SmartPi).
  setup:
    <<: *setup
    prerequisites:
      list:
        - title: Install OpenMetrics Exporter
          description: |
            Install [SmartPi](https://github.com/nDenerserve/SmartPi) by following the instructions mentioned in the exporter README.
- <<: *module
  meta:
    <<: *meta
    most_popular: false
    community: true
    monitored_instance:
      name: SRS (v5.0.67+)
      link: https://github.com/ossrs/srs
      icon_filename: srs.jpg
      categories:
        - data-collection.media-streaming-servers
    keywords: []
  overview:
    <<: *overview
    data_collection:
      metrics_description: |
        Track Simple-RTMP-Server (SRS) metrics for efficient live streaming server management and performance.
      method_description: |
        Metrics are gathered by periodically sending HTTP requests to [SRS (v5.0.67+)](https://github.com/ossrs/srs).
  setup:
    <<: *setup
    prerequisites:
      list:
        - title: Install OpenMetrics Exporter
          description: |
            Install [SRS (v5.0.67+)](https://github.com/ossrs/srs) by following the instructions mentioned in the exporter README.
- <<: *module
  meta:
    <<: *meta
    most_popular: false
    community: true
    monitored_instance:
      name: supercronic
      link: https://github.com/aptible/supercronic/
      icon_filename: supercronic.png
      categories:
        - data-collection.provisioning-systems
    keywords: []
  overview:
    <<: *overview
    data_collection:
      metrics_description: |
        Track Supercronic job scheduler metrics for efficient task scheduling and management.
      method_description: |
        Metrics are gathered by periodically sending HTTP requests to [supercronic](https://github.com/aptible/supercronic/).
  setup:
    <<: *setup
    prerequisites:
      list:
        - title: Install OpenMetrics Exporter
          description: |
            Install [supercronic](https://github.com/aptible/supercronic/) by following the instructions mentioned in the exporter README.
- <<: *module
  meta:
    <<: *meta
    most_popular: false
    community: true
    monitored_instance:
      name: SUSE Saptune
      link: https://github.com/SUSE/saptune
      icon_filename: suse.png
      categories:
        - data-collection.linux-systems
    keywords: []
  overview:
    <<: *overview
    data_collection:
      metrics_description: |
        Monitor SUSE Linux Enterprise Server (SLES) Saptune metrics for efficient system tuning and performance.
      method_description: |
        Metrics are gathered by periodically sending HTTP requests to [SUSE Saptune exporter](https://github.com/SUSE/saptune).
  setup:
    <<: *setup
    prerequisites:
      list:
        - title: Install OpenMetrics Exporter
          description: |
            Install [SUSE Saptune exporter](https://github.com/SUSE/saptune) by following the instructions mentioned in the exporter README.
- <<: *module
  meta:
    <<: *meta
    most_popular: false
    community: true
    monitored_instance:
      name: Tezos Node
      link: https://gitlab.com/tezos/tezos
      icon_filename: tezos.png
      categories:
        - data-collection.blockchain-servers
    keywords: []
  overview:
    <<: *overview
    data_collection:
      metrics_description: |
        Track Tezos blockchain node metrics for efficient blockchain network management and performance.
      method_description: |
        Metrics are gathered by periodically sending HTTP requests to [Tezos Node Exporter](https://gitlab.com/tezos/tezos).
  setup:
    <<: *setup
    prerequisites:
      list:
        - title: Install OpenMetrics Exporter
          description: |
            Install [Tezos Node Exporter](https://gitlab.com/tezos/tezos) by following the instructions mentioned in the exporter README.

- <<: *module
  meta:
    <<: *meta
    most_popular: false
    community: true
    monitored_instance:
      name: ThirdAI
      link: https://github.com/ThirdAILabs/Demos
      icon_filename: thirdai.png
      categories:
        - data-collection.generic-data-collection
    keywords: []
  overview:
    <<: *overview
    data_collection:
      metrics_description: |
        Monitor ThirdAI platform metrics for efficient management and performance.
      method_description: |
        Metrics are gathered by periodically sending HTTP requests to [ThirdAI exporter](https://github.com/ThirdAILabs/Demos).
  setup:
    <<: *setup
    prerequisites:
      list:
        - title: Install OpenMetrics Exporter
          description: |
            Install [ThirdAI exporter](https://github.com/ThirdAILabs/Demos) by following the instructions mentioned in the exporter README.
- <<: *module
  meta:
    <<: *meta
    most_popular: false
    community: true
    monitored_instance:
      name: trickster
      link: https://github.com/trickstercache/trickster
      icon_filename: trickster.png
      categories:
        - data-collection.web-servers-and-web-proxies
    keywords: []
  overview:
    <<: *overview
    data_collection:
      metrics_description: |
        Track Trickster caching reverse proxy for time-series databases metrics for efficient time-series data management and performance.
      method_description: |
        Metrics are gathered by periodically sending HTTP requests to [trickster](https://github.com/trickstercache/trickster).
  setup:
    <<: *setup
    prerequisites:
      list:
        - title: Install OpenMetrics Exporter
          description: |
            Install [trickster](https://github.com/trickstercache/trickster) by following the instructions mentioned in the exporter README.
- <<: *module
  meta:
    <<: *meta
    most_popular: false
    community: true
    monitored_instance:
      name: ClickHouse
      link: https://github.com/ClickHouse/ClickHouse
      icon_filename: clickhouse.svg
      categories:
        - data-collection.database-servers
    keywords: []
  overview:
    <<: *overview
    data_collection:
      metrics_description: |
        Track ClickHouse analytics database metrics for efficient database performance and management.
      method_description: |
        Metrics are gathered by periodically sending HTTP requests to [Yandex ClickHouse Exporter](https://github.com/ClickHouse/ClickHouse).
  setup:
    <<: *setup
    prerequisites:
      list:
        - title: Install OpenMetrics Exporter
          description: |
            Install [Yandex ClickHouse Exporter](https://github.com/ClickHouse/ClickHouse) by following the instructions mentioned in the exporter README.
- <<: *module
  meta:
    <<: *meta
    most_popular: false
    community: true
    monitored_instance:
      name: zedhook
      link: https://github.com/mdlayher/zedhook
      icon_filename: zedhook.png
      categories:
        - data-collection.logs-servers
    keywords: []
  overview:
    <<: *overview
    data_collection:
      metrics_description: |
        Monitor ZFS Event Daemon (ZED) metrics for efficient file system event monitoring and management.
      method_description: |
        Metrics are gathered by periodically sending HTTP requests to [zedhook](https://github.com/mdlayher/zedhook).
  setup:
    <<: *setup
    prerequisites:
      list:
        - title: Install OpenMetrics Exporter
          description: |
            Install [zedhook](https://github.com/mdlayher/zedhook) by following the instructions mentioned in the exporter README.

- <<: *module
  meta:
    <<: *meta
    most_popular: false
    community: true
    monitored_instance:
      name: zrepl internal
      link: https://github.com/zrepl/zrepl
      icon_filename: zrepl.png
      categories:
        - data-collection.storage-mount-points-and-filesystems
    keywords: []
  overview:
    <<: *overview
    data_collection:
      metrics_description: |
        Track ZFS replication metrics using zrepl for efficient file systemreplication management and performance.
      method_description: |
        Metrics are gathered by periodically sending HTTP requests to [zrepl internal exporter](https://github.com/zrepl/zrepl).
  setup:
    <<: *setup
    prerequisites:
      list:
        - title: Install OpenMetrics Exporter
          description: |
            Install [zrepl internal exporter](https://github.com/zrepl/zrepl) by following the instructions mentioned in the exporter README.