-
Notifications
You must be signed in to change notification settings - Fork 6.4k
Expand file tree
/
Copy pathmap.yaml
More file actions
1029 lines (1029 loc) · 58.8 KB
/
map.yaml
File metadata and controls
1029 lines (1029 loc) · 58.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
sidebar:
# Welcome to Netdata
- meta:
label: Welcome to Netdata
edit_url: https://github.com/netdata/netdata/edit/master/docs/welcome-to-netdata.md
items:
- meta:
label: Enterprise Evaluation Guide
edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-enterprise-evaluation-corrected.md
keywords:
- real-time observability
- infrastructure monitoring
- meta:
label: Real-time Monitoring
edit_url: https://github.com/netdata/netdata/edit/master/docs/realtime-monitoring.md
- meta:
label: Scalability
edit_url: https://github.com/netdata/netdata/edit/master/docs/scalability.md
- meta:
label: Monitor Anything
edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/COLLECTORS.md
description: Netdata gathers real-time metrics from hundreds of data sources using collectors. Most require zero configuration and are pre-configured out of the box.
- meta:
label: Fleet Deployment and Configuration Management
edit_url: https://github.com/netdata/netdata/edit/master/docs/fleet-configuration-management.md
- meta:
label: Reporting
edit_url: https://github.com/netdata/netdata/edit/master/docs/reporting.md
description: Extract infrastructure insights for stakeholders and BI tools using AI Insights, AI assistants (MCP), Grafana, or data export to Power BI, Tableau, and other analytics platforms.
keywords:
- power bi
- tableau
- looker
- qlik
- reporting
- business intelligence
- bi
- grafana
- ai insights
- mcp
- executive reports
- board reporting
- data export
# Getting Started
- meta:
label: Getting Started
edit_url: https://github.com/netdata/netdata/edit/master/docs/getting-started-netdata/guide.md
# Live Demo
- meta:
label: Live Demo
edit_url: https://github.com/netdata/netdata/edit/master/docs/Demo-Sites.md
# Netdata Agent
- meta:
label: Netdata Agent
edit_url: https://github.com/netdata/netdata/edit/master/docs/deployment-guides/standalone-deployment.md
items:
- meta:
label: Versions & Platforms
edit_url: https://github.com/netdata/netdata/edit/master/packaging/PLATFORM_SUPPORT.md
description: Present all the supported platform in the Netdata solution
- meta:
label: Quickstart Deployment
edit_url: https://github.com/netdata/netdata/edit/master/docs/deployment-guides/README.md
- meta:
label: Installation
edit_url: https://github.com/netdata/netdata/edit/master/packaging/installer/README.md
items:
- meta:
label: Linux
edit_url: https://github.com/netdata/netdata/edit/master/packaging/installer/methods/kickstart.md
description: The kickstart.sh script installs Netdata from source, including all dependencies required to connect to Netdata Cloud, with a single command.
items:
- meta:
label: Native Linux Distribution packages
edit_url: https://github.com/netdata/netdata/edit/master/packaging/installer/methods/packages.md
description: Instructions for how to install Netdata using native DEB or RPM packages.
- meta:
label: Static binary Linux Packages
edit_url: https://github.com/netdata/netdata/edit/master/packaging/makeself/README.md
description: Users can build the static 64-bit binary package that we ship with every release of the open-source Netdata Agent for debugging or specialize purposes.
- meta:
label: Switch Install Types and Release Channels
edit_url: https://github.com/netdata/netdata/edit/master/docs/learn/switching-install-types.md
- meta:
label: Offline systems
edit_url: https://github.com/netdata/netdata/edit/master/packaging/installer/methods/offline.md
description: Install the Netdata Agent on offline/air gapped systems to benefit from real-time, per-second monitoring without connecting to the internet.
- meta:
label: Windows
edit_url: https://github.com/netdata/netdata/edit/master/packaging/windows/WINDOWS_INSTALLER.md
items:
- meta:
label: Switching Install Types and Release Channels
edit_url: https://github.com/netdata/netdata/edit/master/docs/install/windows-release-channels.md
description: Guide to choosing and switching between different Netdata Windows installation methods and release channels
- meta:
label: Docker
edit_url: https://github.com/netdata/netdata/edit/master/packaging/docker/README.md
- meta:
label: Kubernetes
edit_url: https://github.com/netdata/netdata/edit/master/packaging/installer/methods/kubernetes.md
description: Deploy Netdata to monitor a Kubernetes cluster to monitor the health, performance, resource utilization, and application metrics of a Kubernetes cluster in real time.
- meta:
label: Kubernetes Helm chart reference
edit_url: https://github.com/netdata/helmchart/edit/master/charts/netdata/README.md
- meta:
label: macOS
edit_url: https://github.com/netdata/netdata/edit/master/packaging/installer/methods/macos.md
- meta:
label: FreeBSD
edit_url: https://github.com/netdata/netdata/edit/master/packaging/installer/methods/freebsd.md
description: Install Netdata on FreeBSD to monitor the health and performance of bare metal or VMs with thousands of real-time, per-second metrics.
- meta:
label: pfSense
edit_url: https://github.com/netdata/netdata/edit/master/packaging/installer/methods/pfsense.md
description: Install Netdata on pfSense to monitor the health and performance of firewalls with thousands of real-time, per-second metrics.
- meta:
label: Synology
edit_url: https://github.com/netdata/netdata/edit/master/packaging/installer/methods/synology.md
description: The Netdata Agent can be installed on AMD64-compatible NAS systems using the 64-bit pre-compiled static binary.
- meta:
label: Ansible
edit_url: https://github.com/netdata/netdata/edit/master/packaging/installer/methods/ansible.md
description: Deploy an infrastructure monitoring solution in minutes with the Netdata Agent and Ansible. Use and customize a simple playbook for monitoring as code.
- meta:
label: AWS
edit_url: https://github.com/netdata/netdata/edit/master/packaging/installer/methods/aws.md
description: The Netdata Agent runs on all popular cloud providers, but often requires additional steps and configuration for full functionality.
- meta:
label: Azure
edit_url: https://github.com/netdata/netdata/edit/master/packaging/installer/methods/azure.md
description: The Netdata Agent runs on all popular cloud providers, but often requires additional steps and configuration for full functionality.
- meta:
label: GCP
edit_url: https://github.com/netdata/netdata/edit/master/packaging/installer/methods/gcp.md
description: The Netdata Agent runs on all popular cloud providers, but often requires additional steps and configuration for full functionality.
- meta:
label: Maintenance
edit_url: https://github.com/netdata/netdata/edit/master/docs/category-overview-pages/maintenance-operations-on-netdata-agents.md
items:
- meta:
label: Service Control
edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-agent/start-stop-restart.md
description: Manage the Netdata Agent daemon, load configuration changes, and troubleshoot stuck processes on systemd and non-systemd nodes.
- meta:
label: Update
edit_url: https://github.com/netdata/netdata/edit/master/packaging/installer/UPDATE.md
description: If you opted out of automatic updates, you need to update your Netdata Agent to the latest nightly or stable version.
- meta:
label: Reinstall
edit_url: https://github.com/netdata/netdata/edit/master/packaging/installer/REINSTALL.md
description: Troubleshooting installation issues or force an update of the Netdata Agent by reinstalling it using the same method you used during installation.
- meta:
label: Uninstall
edit_url: https://github.com/netdata/netdata/edit/master/packaging/installer/UNINSTALL.md
description: If you are no longer interested in using the Netdata Agent, use the self-contained uninstaller to remove all traces of binaries and configuration files.
- meta:
label: Backup and restore an Agent
edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-agent/backup-and-restore-an-agent.md
description: What actions you need to do to backup and Agent and restore it.
- meta:
label: Resource Utilization
edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-agent/sizing-netdata-agents/README.md
items:
- meta:
label: CPU
edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-agent/sizing-netdata-agents/cpu-requirements.md
- meta:
label: RAM
edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-agent/sizing-netdata-agents/ram-requirements.md
- meta:
label: Bandwidth
edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-agent/sizing-netdata-agents/bandwidth-requirements.md
- meta:
label: Disk & Retention
edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-agent/sizing-netdata-agents/disk-requirements-and-retention.md
- meta:
label: Configuration
edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-agent/configuration/README.md
description: Netdata is zero-configuration for most users, but complex infrastructures may require you to tweak some of the Agent's granular settings.
items:
- meta:
label: Dynamic Configuration Manager
edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-agent/configuration/dynamic-configuration.md
- meta:
label: Daemon
edit_url: https://github.com/netdata/netdata/edit/master/src/daemon/config/README.md
description: The Netdata Agent's daemon is installed preconfigured to collect thousands of metrics every second, but is highly configurable for real-world workloads.
- meta:
label: Database
edit_url: https://github.com/netdata/netdata/edit/master/src/database/CONFIGURATION.md
description: With a single configuration change, the Netdata Agent can store days, weeks, or months of metrics at its famous per-second granularity.
- meta:
label: Registry
edit_url: https://github.com/netdata/netdata/edit/master/src/registry/CONFIGURATION.md
description: Netdata utilizes a central registry of machines/person GUIDs, URLs, and opt-in account information to provide unified cross-server dashboards.
- meta:
label: Securing Agents
edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-agent/securing-netdata-agents.md
description: Your data and systems are safe with Netdata, but we recommend a few easy ways to improve the security of your infrastructure.
items:
- meta:
label: Web Server Reference
edit_url: https://github.com/netdata/netdata/edit/master/src/web/server/README.md
description: The Netdata Agent's local static-threaded web server serves dashboards and real-time visualizations with security and DDoS protection.
- meta:
label: Running the Agent behind a reverse proxy
edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-agent/configuration/running-the-netdata-agent-behind-a-reverse-proxy/README.md
items:
- meta:
label: Nginx
edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-agent/configuration/running-the-netdata-agent-behind-a-reverse-proxy/Running-behind-nginx.md
- meta:
label: HAProxy
edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-agent/configuration/running-the-netdata-agent-behind-a-reverse-proxy/Running-behind-haproxy.md
- meta:
label: Apache
edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-agent/configuration/running-the-netdata-agent-behind-a-reverse-proxy/Running-behind-apache.md
- meta:
label: Lighttpd v1.4.x
edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-agent/configuration/running-the-netdata-agent-behind-a-reverse-proxy/Running-behind-lighttpd.md
- meta:
label: Caddy
edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-agent/configuration/running-the-netdata-agent-behind-a-reverse-proxy/Running-behind-caddy.md
- meta:
label: H2O
edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-agent/configuration/running-the-netdata-agent-behind-a-reverse-proxy/Running-behind-h2o.md
- meta:
label: Performance Optimization
edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-agent/configuration/optimize-the-netdata-agents-performance.md
description: While the Netdata Agent is designed to monitor a system with only 1% CPU, you can optimize its performance for low-resource systems.
- meta:
label: Organize systems, metrics, and alerts
edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts.md
- meta:
label: Using custom CA certificates with Netdata
edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-agent/configuration/using-custom-ca-certificates-with-netdata.md
- meta:
label: Daemon
edit_url: https://github.com/netdata/netdata/edit/master/src/daemon/README.md
- meta:
label: Database
edit_url: https://github.com/netdata/netdata/edit/master/src/database/README.md
- meta:
label: Logging
edit_url: https://github.com/netdata/netdata/edit/master/src/libnetdata/log/README.md
- meta:
label: Registry
edit_url: https://github.com/netdata/netdata/edit/master/src/registry/README.md
description: Netdata utilizes a central registry of machines/person GUIDs, URLs, and opt-in account information to provide unified cross-server dashboards.
- meta:
label: Agent CLI
edit_url: https://github.com/netdata/netdata/edit/master/src/cli/README.md
description: The Netdata Agent includes a command-line experience for reloading health configuration, reopening log files, halting the daemon, and more.
- meta:
label: Node Identities
edit_url: https://github.com/netdata/netdata/edit/master/docs/learn/node-identities.md
description: Understanding how Netdata identifies nodes across Agents Parents and Cloud
keywords:
- guid
- machine guid
- node id
- claimed id
- identity
- meta:
label: VM Templates
edit_url: https://github.com/netdata/netdata/edit/master/docs/learn/vm-templates.md
description: Prepare VM templates so each clone gets a unique Netdata identity
keywords:
- vm
- template
- clone
- kvm
- proxmox
- vagrant
- terraform
- meta:
label: Anonymous telemetry events
edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-agent/configuration/anonymous-telemetry-events.md
# Netdata Parents
- meta:
label: Netdata Parents
edit_url: https://github.com/netdata/netdata/edit/master/docs/deployment-guides/deployment-with-centralization-points.md
items:
- meta:
label: Parent Configuration Best Practices
edit_url: https://github.com/netdata/netdata/edit/master/docs/observability-centralization-points/best-practices.md
- meta:
label: Parent-Child Configuration Reference
edit_url: https://github.com/netdata/netdata/edit/master/src/streaming/README.md
- meta:
label: Configuration Examples
edit_url: https://github.com/netdata/netdata/edit/master/docs/deployment-guides/deployment-strategies.md
- meta:
label: Streaming Routing Reference
edit_url: https://github.com/netdata/netdata/edit/master/docs/streaming-routing.md
- meta:
label: Node Types and Lifecycle Reference
edit_url: https://github.com/netdata/netdata/edit/master/docs/nodes-ephemerality.md
- meta:
label: Metrics Centralization Points
edit_url: https://github.com/netdata/netdata/edit/master/docs/observability-centralization-points/metrics-centralization-points/README.md
items:
- meta:
label: Configuring Metrics Centralization Points
edit_url: https://github.com/netdata/netdata/edit/master/docs/observability-centralization-points/metrics-centralization-points/configuration.md
- meta:
label: Sizing Netdata Parents
edit_url: https://github.com/netdata/netdata/edit/master/docs/observability-centralization-points/metrics-centralization-points/sizing-netdata-parents.md
- meta:
label: Clustering and High Availability of Netdata Parents
edit_url: https://github.com/netdata/netdata/edit/master/docs/observability-centralization-points/metrics-centralization-points/clustering-and-high-availability-of-netdata-parents.md
- meta:
label: Replication of Past Samples
edit_url: https://github.com/netdata/netdata/edit/master/docs/observability-centralization-points/metrics-centralization-points/replication-of-past-samples.md
- meta:
label: FAQ on Metrics Centralization Points
edit_url: https://github.com/netdata/netdata/edit/master/docs/observability-centralization-points/metrics-centralization-points/faq.md
# Netdata Cloud
- meta:
label: Netdata Cloud
edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-cloud/README.md
items:
- meta:
label: Connect Agent
edit_url: https://github.com/netdata/netdata/edit/master/src/claim/README.md
- meta:
label: Spaces and Rooms
edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-cloud/organize-your-infrastructure-invite-your-team.md
items:
- meta:
label: Node Rule-Based Room Assignment
edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-cloud/node-rule-based-room-assignment.md
- meta:
label: Authentication & Authorization
edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-cloud/authentication-and-authorization/README.md
items:
- meta:
label: Enterprise SSO Authentication
edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-cloud/authentication-and-authorization/enterprise-sso-authentication.md
- meta:
label: Role-based access model
edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-cloud/authentication-and-authorization/role-based-access-model.md
description: Explanation of Netdata roles and permissions linked to them
- meta:
label: API Tokens
edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-cloud/authentication-and-authorization/api-tokens.md
- type: integration_placeholder
integration_kind: authentication
- meta:
label: Netdata Plans & Billing
edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-cloud/view-plan-and-billing.md
- meta:
label: Agent-Cloud Link (ACLK)
edit_url: https://github.com/netdata/netdata/edit/master/src/aclk/README.md
description: The Agent-Cloud link (ACLK) is the mechanism responsible for connecting a Netdata agent to Netdata Cloud.
- meta:
label: Remove Agent
edit_url: https://github.com/netdata/netdata/edit/master/docs/learn/remove-node.md
- meta:
label: Node States and Transitions
edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-cloud/node-states-and-transitions.md
description: Understanding node connection states and state transitions in Netdata Cloud
keywords:
- node states
- live
- stale
- offline
- unseen
- transitions
- meta:
label: Unclaim and Reclaim a Node
edit_url: https://github.com/netdata/netdata/edit/master/docs/learn/unclaim-reclaim-node.md
- meta:
label: Account Deletion
edit_url: https://github.com/netdata/netdata/edit/master/docs/delete/netdata/account.md
# Netdata Cloud On-Prem
- meta:
label: Netdata Cloud On-Prem
edit_url: https://github.com/netdata/netdata-cloud-onprem/edit/master/docs/learn.netdata.cloud/README.md
items:
- meta:
label: Installation
edit_url: https://github.com/netdata/netdata-cloud-onprem/edit/master/docs/learn.netdata.cloud/installation.md
- meta:
label: Software Bill of Materials
edit_url: https://github.com/netdata/netdata-cloud-onprem/edit/master/docs/learn.netdata.cloud/sbom.md
- meta:
label: Container Image Signature Verification
edit_url: https://github.com/netdata/netdata-cloud-onprem/edit/master/docs/learn.netdata.cloud/image-signature-verification.md
- meta:
label: Security Hardening Guide
edit_url: https://github.com/netdata/netdata-cloud-onprem/edit/master/docs/learn.netdata.cloud/hardening-guide.md
- meta:
label: Kubernetes Network Policy Configuration
edit_url: https://github.com/netdata/netdata-cloud-onprem/edit/master/docs/learn.netdata.cloud/netpol.md
- meta:
label: PoC without K8s
edit_url: https://github.com/netdata/netdata-cloud-onprem/edit/master/docs/learn.netdata.cloud/poc-without-k8s.md
- meta:
label: Mirroring image registry
edit_url: https://github.com/netdata/netdata-cloud-onprem/edit/master/docs/learn.netdata.cloud/ecr-mirror.md
- meta:
label: Troubleshooting
edit_url: https://github.com/netdata/netdata-cloud-onprem/edit/master/docs/learn.netdata.cloud/troubleshooting.md
- meta:
label: Release Notes
edit_url: https://github.com/netdata/netdata-cloud-onprem/edit/master/netdata-cloud-onprem/RELEASE-NOTES.md
# Collecting Metrics
- meta:
label: Collecting Metrics
edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/README.md
items:
- meta:
label: Collectors configuration
edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/REFERENCE.md
- meta:
label: Service discovery
edit_url: https://github.com/netdata/agent-service-discovery/edit/master/README.md
- meta:
label: StatsD
edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/statsd.plugin/README.md
- meta:
label: OpenTelemetry Metrics
edit_url: https://github.com/netdata/netdata/edit/master/src/crates/netdata-otel/otel-plugin/README.md
description: Ingesting storing and visualizing OpenTelemetry metrics
path: OpenTelemetry
- meta:
label: Secrets Management
edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/SECRETS.md
description: Use secret references to avoid storing credentials in plain text. Supports environment variables, files, commands, and secretstore backends.
- type: integration_placeholder
integration_kind: secretstore
- meta:
label: SNMP Profile Format
edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/snmp/profile-format.md
description: Learn how Netdata’s SNMP collector uses profiles.
- type: integration_placeholder
integration_kind: collectors
# Exporting Metrics
- meta:
label: Exporting Metrics
edit_url: https://github.com/netdata/netdata/edit/master/docs/exporting-metrics/README.md
description: Use the exporting engine to send Netdata metrics to popular external time series databases for long-term storage or further analysis.
items:
- meta:
label: Exporting reference
edit_url: https://github.com/netdata/netdata/edit/master/src/exporting/README.md
description: With the exporting engine, you can archive your Netdata metrics to multiple external databases for long-term storage or further analysis.
- meta:
label: Enable an exporting connector
edit_url: https://github.com/netdata/netdata/edit/master/docs/exporting-metrics/enable-an-exporting-connector.md
description: Learn how to enable and configure any connector using examples to start exporting metrics to external time-series databases in minutes.
- type: integration_placeholder
integration_kind: exporters
- meta:
label: Prometheus
edit_url: https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/README.md
description: Export Netdata metrics to Prometheus for archiving and further analysis.
- meta:
label: Shell Scripts
edit_url: https://github.com/netdata/netdata/edit/master/src/web/api/exporters/shell/README.md
# Logs
- meta:
label: Logs
items:
- meta:
label: Systemd Journal Logs
items:
- meta:
label: Systemd Journal Plugin Reference
edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/systemd-journal.plugin/README.md
description: View and analyze logs available in systemd journal
- meta:
label: Forward Secure Sealing (FSS) in Systemd-Journal
edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/systemd-journal.plugin/forward_secure_sealing.md
- meta:
label: Windows Events Plugin Reference
edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/windows-events.plugin/README.md
path: Windows Event Logs
- meta:
label: log2journal
edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/log2journal/README.md
path: log2journal
- meta:
label: systemd-cat-native
edit_url: https://github.com/netdata/netdata/edit/master/src/libnetdata/log/systemd-cat-native.md
- meta:
label: Logs Centralization Points with systemd-journald
edit_url: https://github.com/netdata/netdata/edit/master/docs/observability-centralization-points/logs-centralization-points-with-systemd-journald/README.md
items:
- meta:
label: Passive journal centralization with encryption using self-signed certificates
edit_url: https://github.com/netdata/netdata/edit/master/docs/observability-centralization-points/logs-centralization-points-with-systemd-journald/passive-journal-centralization-with-encryption-using-self-signed-certificates.md
- meta:
label: Passive journal centralization without encryption
edit_url: https://github.com/netdata/netdata/edit/master/docs/observability-centralization-points/logs-centralization-points-with-systemd-journald/passive-journal-centralization-without-encryption.md
- meta:
label: Active journal source without encryption
edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/systemd-journal.plugin/active_journal_centralization_guide_no_encryption.md
- type: integration_placeholder
integration_kind: logs
# Live
- meta:
label: Live View
edit_url: https://github.com/netdata/netdata/edit/master/docs/top-monitoring-netdata-functions.md
description: Present the Netdata Functions what these are and why they should be used.
items:
- meta:
label: Processes
edit_url: https://github.com/netdata/netdata/edit/master/docs/functions/processes.md
- meta:
label: Database Queries
edit_url: https://github.com/netdata/netdata/edit/master/docs/functions/databases.md
description: Top and running database queries with deadlock and error attribution for 13 databases.
# Alerts & Notifications
- meta:
label: Alerts & Notifications
edit_url: https://github.com/netdata/netdata/edit/master/src/health/README.md
items:
- meta:
label: Creating Alerts with the Alerts Configuration Manager
edit_url: https://github.com/netdata/netdata/edit/master/docs/alerts-and-notifications/creating-alerts-with-netdata-alerts-configuration-manager.md
- meta:
label: Notifications
edit_url: https://github.com/netdata/netdata/edit/master/docs/alerts-and-notifications/notifications/README.md
description: Send Netdata alerts from a centralized place with Netdata Cloud, or configure nodes individually, to enable incident response and faster resolution.
items:
- meta:
label: Agent Dispatched Notifications
items:
- meta:
label: Agent Notifications Reference
edit_url: https://github.com/netdata/netdata/edit/master/src/health/notifications/README.md
- type: integration_placeholder
integration_kind: agent_notifications
- meta:
label: Centralized Cloud Notifications
items:
- meta:
label: Centralized Cloud Notifications Reference
edit_url: https://github.com/netdata/netdata/edit/master/docs/alerts-and-notifications/notifications/centralized-cloud-notifications/centralized-cloud-notifications-reference.md
description: Configure Netdata Cloud to send notifications to your team whenever any node on your infrastructure triggers an alert threshold.
- meta:
label: Manage notification methods
edit_url: https://github.com/netdata/netdata/edit/master/docs/alerts-and-notifications/notifications/centralized-cloud-notifications/manage-notification-methods.md
description: Instructions on how to manage notification methods
- meta:
label: Manage alert notification silencing rules
edit_url: https://github.com/netdata/netdata/edit/master/docs/alerts-and-notifications/notifications/centralized-cloud-notifications/manage-alert-notification-silencing-rules.md
description: Master Netdata alert management via notification silencing rules for efficient and focused monitoring.
- type: integration_placeholder
integration_kind: cloud_notifications
- meta:
label: Alert Configuration Reference
edit_url: https://github.com/netdata/netdata/edit/master/src/health/REFERENCE.md
- meta:
label: Alert Configuration Ordering
edit_url: https://github.com/netdata/netdata/edit/master/src/health/alert-configuration-ordering.md
keywords:
- alerts
- health
- ordering
- precedence
- templates
- alarms
- meta:
label: Overriding Stock Alerts
edit_url: https://github.com/netdata/netdata/edit/master/src/health/overriding-stock-alerts.md
keywords:
- alerts
- health
- override
- stock
- templates
- alarms
- meta:
label: Health API Calls
edit_url: https://github.com/netdata/netdata/edit/master/src/web/api/health/README.md
# Netdata AI
- meta:
label: Netdata AI
edit_url: https://github.com/netdata/netdata/edit/master/docs/category-overview-pages/machine-learning-and-assisted-troubleshooting.md
items:
- meta:
label: Conversations
edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-ai/conversations.md
keywords:
- conversations
- chat
- real-time
- live exhibits
- meta:
label: Insights
edit_url: https://github.com/netdata/netdata/edit/master/docs/ml-ai/ai-insights.md
items:
- meta:
label: Infrastructure Summary
edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-ai/insights/infrastructure-summary.md
- meta:
label: Performance Optimization
edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-ai/insights/performance-optimization.md
- meta:
label: Capacity Planning
edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-ai/insights/capacity-planning.md
- meta:
label: Anomaly Analysis
edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-ai/insights/anomaly-analysis.md
- meta:
label: Scheduled Reports
edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-ai/insights/scheduled-reports.md
- meta:
label: Investigations
edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-ai/investigations/index.md
items:
- meta:
label: Custom Investigations
edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-ai/investigations/custom-investigations.md
- meta:
label: Scheduled Investigations
edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-ai/investigations/scheduled-investigations.md
- meta:
label: Troubleshooting
edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-ai/troubleshooting/index.md
items:
- meta:
label: Alert Troubleshooting
edit_url: https://github.com/netdata/netdata/edit/master/docs/troubleshooting/troubleshoot.md
- meta:
label: Anomaly Advisor
edit_url: https://github.com/netdata/netdata/edit/master/docs/ml-ai/anomaly-advisor.md
- meta:
label: Metric Correlations
edit_url: https://github.com/netdata/netdata/edit/master/docs/metric-correlations.md
description: Quickly find metrics and charts closely related to a particular timeframe of interest anywhere in your infrastructure to discover the root cause faster.
- meta:
label: Alerts Automation
edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-ai/alerts-automation/alerts-automation.md
description: AI-powered alert creation and suggestions
keywords:
- alerts
- automation
- ai alerts
- meta:
label: Anomaly Detection
edit_url: https://github.com/netdata/netdata/edit/master/docs/ml-ai/ml-anomaly-detection/ml-anomaly-detection.md
items:
- meta:
label: ML Configuration
edit_url: https://github.com/netdata/netdata/edit/master/src/ml/ml-configuration.md
- meta:
label: ML Accuracy
edit_url: https://github.com/netdata/netdata/edit/master/docs/ml-ai/ml-anomaly-detection/ml-accuracy.md
description: Analysis of Netdata's ML anomaly detection accuracy, false positive rates, and comparison with other approaches
- meta:
label: MCP
edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-ai/mcp/README.md
items:
- meta:
label: Chat with Netdata
edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-ai/mcp/ai-chat-netdata.md
- meta:
label: MCP Clients
edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-ai/mcp/mcp-clients/ai-devops-copilot.md
items:
- meta:
label: Claude Desktop
edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-ai/mcp/mcp-clients/claude-desktop.md
- meta:
label: Cursor
edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-ai/mcp/mcp-clients/cursor.md
- meta:
label: Visual Studio Code
edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-ai/mcp/mcp-clients/vs-code.md
- meta:
label: JetBrains IDEs
edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-ai/mcp/mcp-clients/jetbrains-ides.md
- meta:
label: Netdata Web Client
edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-ai/mcp/mcp-clients/netdata-web-client.md
- meta:
label: Claude Code
edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-ai/mcp/mcp-clients/claude-code.md
- meta:
label: Gemini CLI
edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-ai/mcp/mcp-clients/gemini-cli.md
- meta:
label: OpenAI Codex CLI
edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-ai/mcp/mcp-clients/codex-cli.md
- meta:
label: Crush
edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-ai/mcp/mcp-clients/crush.md
- meta:
label: OpenCode
edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-ai/mcp/mcp-clients/opencode.md
# Dashboards and Charts
- meta:
label: Dashboards and Charts
edit_url: https://github.com/netdata/netdata/edit/master/docs/dashboards-and-charts/README.md
items:
- meta:
label: Tabs
edit_url: https://github.com/netdata/netdata/edit/master/docs/dashboards-and-charts/home-tab.md
description: With Netdata Cloud's War Rooms, you can see real-time metrics, from any number of nodes in your infrastructure, in composite charts.
items:
- meta:
label: Alerts
edit_url: https://github.com/netdata/netdata/edit/master/docs/dashboards-and-charts/alerts-tab.md
- meta:
label: Anomalies
edit_url: https://github.com/netdata/netdata/edit/master/docs/dashboards-and-charts/anomaly-advisor-tab.md
description: Quickly find anomalous metrics anywhere in your infrastructure.
- meta:
label: Dashboards
edit_url: https://github.com/netdata/netdata/edit/master/docs/dashboards-and-charts/dashboards-tab.md
description: Design new dashboards that target your infrastructure's unique needs and share them with your team fortargeted visual anomaly detection or incident response.
- meta:
label: Events
edit_url: https://github.com/netdata/netdata/edit/master/docs/dashboards-and-charts/events-feed.md
description: Present the Netdata Events feed.
- meta:
label: Kubernetes
edit_url: https://github.com/netdata/netdata/edit/master/docs/dashboards-and-charts/kubernetes-tab.md
description: Netdata Cloud features rich, zero-configuration Kubernetes monitoring for the resource utilization and application metrics of Kubernetes (k8s) clusters.
- meta:
label: Logs
edit_url: https://github.com/netdata/netdata/edit/master/docs/dashboards-and-charts/logs-tab.md
- meta:
label: Metrics
edit_url: https://github.com/netdata/netdata/edit/master/docs/dashboards-and-charts/metrics-tab-and-single-node-tabs.md
- meta:
label: Nodes
edit_url: https://github.com/netdata/netdata/edit/master/docs/dashboards-and-charts/nodes-tab.md
description: See charts from all your nodes in one pane of glass, then dive in to embedded dashboards for granular troubleshooting of ongoing issues.
- meta:
label: Live
edit_url: https://github.com/netdata/netdata/edit/master/docs/dashboards-and-charts/live-tab.md
description: Access live information from monitored nodes through Netdata Functions
- meta:
label: Theme
edit_url: https://github.com/netdata/netdata/edit/master/docs/dashboards-and-charts/themes.md
- meta:
label: Grafana Plugin
edit_url: https://github.com/netdata/netdata-grafana-datasource-plugin/edit/master/README.md
- meta:
label: Charts
edit_url: https://github.com/netdata/netdata/edit/master/docs/dashboards-and-charts/netdata-charts.md
- meta:
label: Expanded Chart Analysis
edit_url: https://github.com/netdata/netdata/edit/master/docs/dashboards-and-charts/expanded-chart-analysis.md
- meta:
label: NIDL Framework
edit_url: https://github.com/netdata/netdata/edit/master/docs/NIDL-Framework.md
- meta:
label: Node Filter
edit_url: https://github.com/netdata/netdata/edit/master/docs/dashboards-and-charts/node-filter.md
- meta:
label: Time Controls
edit_url: https://github.com/netdata/netdata/edit/master/docs/dashboards-and-charts/visualization-date-and-time-controls.md
# Security and Privacy Design
- meta:
label: Security and Privacy Design
edit_url: https://github.com/netdata/netdata/edit/master/docs/security-and-privacy-design/README.md
items:
- meta:
label: Access Control and Feature Availability
edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-oss-limitations.md
description: Feature availability across Anonymous access Netdata Cloud Community and Business tiers
- meta:
label: Netdata Agent
edit_url: https://github.com/netdata/netdata/edit/master/docs/security-and-privacy-design/netdata-agent-security.md
- meta:
label: Netdata Cloud
edit_url: https://github.com/netdata/netdata/edit/master/docs/security-and-privacy-design/netdata-cloud-security.md
# Developer and Contributor Corner
- meta:
label: Developer and Contributor Corner
edit_url: https://github.com/netdata/netdata/edit/master/docs/developer-and-contributor-corner/README.md
items:
- meta:
label: REST API
edit_url: https://github.com/netdata/netdata/edit/master/src/web/api/README.md
items:
- meta:
label: Queries
edit_url: https://github.com/netdata/netdata/edit/master/src/web/api/queries/README.md
items:
- meta:
label: Average or Mean
edit_url: https://github.com/netdata/netdata/edit/master/src/web/api/queries/average/README.md
- meta:
label: CountIf
edit_url: https://github.com/netdata/netdata/edit/master/src/web/api/queries/countif/README.md
- meta:
label: Double exponential smoothing
edit_url: https://github.com/netdata/netdata/edit/master/src/web/api/queries/des/README.md
- meta:
label: Incremental Sum (`incremental_sum`)
edit_url: https://github.com/netdata/netdata/edit/master/src/web/api/queries/incremental_sum/README.md
- meta:
label: Max
edit_url: https://github.com/netdata/netdata/edit/master/src/web/api/queries/max/README.md
- meta:
label: Median
edit_url: https://github.com/netdata/netdata/edit/master/src/web/api/queries/median/README.md
description: Use median in API queries and health entities to find the 'middle' value from a sample, eliminating any unwanted spikes in the returned metrics.
- meta:
label: Min
edit_url: https://github.com/netdata/netdata/edit/master/src/web/api/queries/min/README.md
- meta:
label: Percentile
edit_url: https://github.com/netdata/netdata/edit/master/src/web/api/queries/percentile/README.md
description: Use percentile in API queries and health entities to find the 'percentile' value from a sample, eliminating any unwanted spikes in the returned metrics.
- meta:
label: Single (or Simple) Exponential Smoothing (`ses`)
edit_url: https://github.com/netdata/netdata/edit/master/src/web/api/queries/ses/README.md
- meta:
label: Standard deviation (`stddev`)
edit_url: https://github.com/netdata/netdata/edit/master/src/web/api/queries/stddev/README.md
- meta:
label: Sum
edit_url: https://github.com/netdata/netdata/edit/master/src/web/api/queries/sum/README.md
- meta:
label: Trimmed Mean
edit_url: https://github.com/netdata/netdata/edit/master/src/web/api/queries/trimmed_mean/README.md
description: Use trimmed-mean in API queries and health entities to find the average value from a sample, eliminating any unwanted spikes in the returned metrics.
- meta:
label: Formatters
edit_url: https://github.com/netdata/netdata/edit/master/src/web/api/formatters/README.md
items:
- meta:
label: CSV formatter
edit_url: https://github.com/netdata/netdata/edit/master/src/web/api/formatters/csv/README.md
- meta:
label: JSON formatter
edit_url: https://github.com/netdata/netdata/edit/master/src/web/api/formatters/json/README.md
- meta:
label: SSV formatter
edit_url: https://github.com/netdata/netdata/edit/master/src/web/api/formatters/ssv/README.md
- meta:
label: Value formatter
edit_url: https://github.com/netdata/netdata/edit/master/src/web/api/formatters/value/README.md
- meta:
label: Netdata badges
edit_url: https://github.com/netdata/netdata/edit/master/src/web/api/badges/README.md
- meta:
label: Dynamic Configuration
edit_url: https://github.com/netdata/netdata/edit/master/docs/developer-and-contributor-corner/dyncfg.md
- meta:
label: Database Engine
edit_url: https://github.com/netdata/netdata/edit/master/src/database/engine/README.md
- meta:
label: Contributing
edit_url: https://github.com/netdata/.github/edit/main/CONTRIBUTING.md
- meta:
label: Community code of conduct
edit_url: https://github.com/netdata/.github/edit/main/CODE_OF_CONDUCT.md
- meta:
label: Security Policy
edit_url: https://github.com/netdata/.github/edit/main/SECURITY.md
description: The Netdata team maintains and adheres to a formal process any time a member of the community reports a security vulnerability.
- meta:
label: External Plugins
edit_url: https://github.com/netdata/netdata/edit/master/src/plugins.d/README.md
items:
- meta:
label: go.d.plugin
edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/README.md
description: go.d.plugin is an external plugin for Netdata, responsible for running individual data collectors written in Go.
items:
- meta:
label: How to write a Netdata collector in Go
edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/docs/how-to-write-a-module.md
description: This guide will walk you through the technical implementation of writing a new Netdata collector in Golang, with tips on interfaces, structure, configuration files, and more.
- meta:
label: python.d.plugin
edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/python.d.plugin/README.md
- meta:
label: charts.d.plugin
edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/charts.d.plugin/README.md
- meta:
label: profile.plugin
edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/profile.plugin/README.md
- meta:
label: Functions v3 Protocol reference
edit_url: https://github.com/netdata/netdata/edit/master/src/plugins.d/FUNCTION_UI_REFERENCE.md
- meta:
label: Functions developer guide
edit_url: https://github.com/netdata/netdata/edit/master/src/plugins.d/FUNCTION_UI_DEVELOPER_GUIDE.md
- meta:
label: Contribute to the documentation
edit_url: https://github.com/netdata/netdata/edit/master/docs/guidelines.md
items:
- meta:
label: Netdata style guide
edit_url: https://github.com/netdata/netdata/edit/master/docs/developer-and-contributor-corner/style-guide.md
description: The Netdata style guide establishes editorial guidelines for all of Netdata's writing, including documentation, blog posts, in-product UX copy, and more.
- meta:
label: Glossary
edit_url: https://github.com/netdata/netdata/edit/master/docs/glossary.md
- meta:
label: libnetdata
edit_url: https://github.com/netdata/netdata/edit/master/src/libnetdata/README.md
items:
- meta:
label: Adaptive re-sortable list (ARL)
edit_url: https://github.com/netdata/netdata/edit/master/src/libnetdata/adaptive_resortable_list/README.md
- meta:
label: Array allocator
edit_url: https://github.com/netdata/netdata/edit/master/src/libnetdata/aral/README.md
- meta:
label: AVL
edit_url: https://github.com/netdata/netdata/edit/master/src/libnetdata/avl/README.md
- meta:
label: BUFFER library
edit_url: https://github.com/netdata/netdata/edit/master/src/libnetdata/buffer/README.md
- meta:
label: Circular Buffer
edit_url: https://github.com/netdata/netdata/edit/master/src/libnetdata/circular_buffer/README.md
- meta:
label: Clocks
edit_url: https://github.com/netdata/netdata/edit/master/src/libnetdata/clocks/README.md
- meta:
label: Netdata ini config files
edit_url: https://github.com/netdata/netdata/edit/master/src/libnetdata/config/README.md
- meta:
label: JSON
edit_url: https://github.com/netdata/netdata/edit/master/src/libnetdata/json/README.md
- meta:
label: Locks
edit_url: https://github.com/netdata/netdata/edit/master/src/libnetdata/locks/README.md
- meta:
label: One way allocator
edit_url: https://github.com/netdata/netdata/edit/master/src/libnetdata/onewayalloc/README.md
- meta:
label: popen
edit_url: https://github.com/netdata/netdata/edit/master/src/libnetdata/popen/README.md
- meta:
label: parser
edit_url: https://github.com/netdata/netdata/edit/master/src/libnetdata/parser/README.md
- meta:
label: procfile
edit_url: https://github.com/netdata/netdata/edit/master/src/libnetdata/procfile/README.md
- meta:
label: Simple patterns
edit_url: https://github.com/netdata/netdata/edit/master/src/libnetdata/simple_pattern/README.md
description: Netdata supports simple patterns, which are less cryptic versions of regular expressions. Use familiar notation for powerful results.
- meta:
label: Statistical functions
edit_url: https://github.com/netdata/netdata/edit/master/src/libnetdata/statistical/README.md
- meta:
label: Storage number
edit_url: https://github.com/netdata/netdata/edit/master/src/libnetdata/storage_number/README.md
- meta:
label: String
edit_url: https://github.com/netdata/netdata/edit/master/src/libnetdata/string/README.md
- meta:
label: Threads
edit_url: https://github.com/netdata/netdata/edit/master/src/libnetdata/threads/README.md
- meta:
label: URL
edit_url: https://github.com/netdata/netdata/edit/master/src/libnetdata/url/README.md
- meta:
label: Worker Utilization
edit_url: https://github.com/netdata/netdata/edit/master/src/libnetdata/worker_utilization/README.md
- meta:
label: Dictionaries
edit_url: https://github.com/netdata/netdata/edit/master/src/libnetdata/dictionary/README.md
- meta:
label: July interface
edit_url: https://github.com/netdata/netdata/edit/master/src/libnetdata/july/README.md
- meta:
label: Socket
edit_url: https://github.com/netdata/netdata/edit/master/src/libnetdata/socket/README.md
- meta:
label: Running a Local Dashboard through Cloudflare Tunnels
edit_url: https://github.com/netdata/netdata/edit/master/docs/developer-and-contributor-corner/running-through-cf-tunnels.md
- meta:
label: Redistributed Software
edit_url: https://github.com/netdata/netdata/edit/master/REDISTRIBUTED.md
- meta:
label: Health command API tester
edit_url: https://github.com/netdata/netdata/edit/master/tests/health_mgmtapi/README.md
- meta:
label: Import, export, and print a snapshot
edit_url: https://github.com/netdata/netdata/edit/master/docs/dashboards-and-charts/import-export-print-snapshot.md
description: Snapshots can be incredibly useful for diagnosing anomalies after they've already happened, and are interoperable with any other node running Netdata.
- meta:
label: Build a custom Dashboard HTML page
edit_url: https://github.com/netdata/netdata/edit/master/src/web/gui/custom/README.md
description: Build custom dashboards with key metrics from one or more nodes running the Netdata Agent and host them anywhere.
- meta:
label: Monitor Nginx or Apache web server log files with Netdata
edit_url: https://github.com/netdata/netdata/edit/master/docs/developer-and-contributor-corner/collect-apache-nginx-web-logs.md
- meta:
label: Monitor Unbound DNS servers with Netdata
edit_url: https://github.com/netdata/netdata/edit/master/docs/developer-and-contributor-corner/collect-unbound-metrics.md
- meta:
label: Monitor a Hadoop cluster with Netdata
edit_url: https://github.com/netdata/netdata/edit/master/docs/developer-and-contributor-corner/monitor-hadoop-cluster.md