diff options
Diffstat (limited to 'collectors/freebsd.plugin')
34 files changed, 132 insertions, 102 deletions
diff --git a/collectors/freebsd.plugin/freebsd_devstat.c b/collectors/freebsd.plugin/freebsd_devstat.c index 65b8a2d5a..ca6048a16 100644 --- a/collectors/freebsd.plugin/freebsd_devstat.c +++ b/collectors/freebsd.plugin/freebsd_devstat.c @@ -89,21 +89,21 @@ static size_t disks_added = 0, disks_found = 0; static void disk_free(struct disk *dm) { if (likely(dm->st_io)) - rrdset_is_obsolete(dm->st_io); + rrdset_is_obsolete___safe_from_collector_thread(dm->st_io); if (likely(dm->st_ops)) - rrdset_is_obsolete(dm->st_ops); + rrdset_is_obsolete___safe_from_collector_thread(dm->st_ops); if (likely(dm->st_qops)) - rrdset_is_obsolete(dm->st_qops); + rrdset_is_obsolete___safe_from_collector_thread(dm->st_qops); if (likely(dm->st_util)) - rrdset_is_obsolete(dm->st_util); + rrdset_is_obsolete___safe_from_collector_thread(dm->st_util); if (likely(dm->st_iotime)) - rrdset_is_obsolete(dm->st_iotime); + rrdset_is_obsolete___safe_from_collector_thread(dm->st_iotime); if (likely(dm->st_await)) - rrdset_is_obsolete(dm->st_await); + rrdset_is_obsolete___safe_from_collector_thread(dm->st_await); if (likely(dm->st_avagsz)) - rrdset_is_obsolete(dm->st_avagsz); + rrdset_is_obsolete___safe_from_collector_thread(dm->st_avagsz); if (likely(dm->st_svctm)) - rrdset_is_obsolete(dm->st_svctm); + rrdset_is_obsolete___safe_from_collector_thread(dm->st_svctm); disks_added--; freez(dm->name); diff --git a/collectors/freebsd.plugin/freebsd_getifaddrs.c b/collectors/freebsd.plugin/freebsd_getifaddrs.c index 80a209105..36be68422 100644 --- a/collectors/freebsd.plugin/freebsd_getifaddrs.c +++ b/collectors/freebsd.plugin/freebsd_getifaddrs.c @@ -52,15 +52,15 @@ static size_t network_interfaces_added = 0, network_interfaces_found = 0; static void network_interface_free(struct cgroup_network_interface *ifm) { if (likely(ifm->st_bandwidth)) - rrdset_is_obsolete(ifm->st_bandwidth); + rrdset_is_obsolete___safe_from_collector_thread(ifm->st_bandwidth); if (likely(ifm->st_packets)) - rrdset_is_obsolete(ifm->st_packets); + rrdset_is_obsolete___safe_from_collector_thread(ifm->st_packets); if (likely(ifm->st_errors)) - rrdset_is_obsolete(ifm->st_errors); + rrdset_is_obsolete___safe_from_collector_thread(ifm->st_errors); if (likely(ifm->st_drops)) - rrdset_is_obsolete(ifm->st_drops); + rrdset_is_obsolete___safe_from_collector_thread(ifm->st_drops); if (likely(ifm->st_events)) - rrdset_is_obsolete(ifm->st_events); + rrdset_is_obsolete___safe_from_collector_thread(ifm->st_events); network_interfaces_added--; freez(ifm->name); diff --git a/collectors/freebsd.plugin/freebsd_getmntinfo.c b/collectors/freebsd.plugin/freebsd_getmntinfo.c index cc0abd906..d55eb3d4a 100644 --- a/collectors/freebsd.plugin/freebsd_getmntinfo.c +++ b/collectors/freebsd.plugin/freebsd_getmntinfo.c @@ -39,9 +39,9 @@ static size_t mount_points_added = 0, mount_points_found = 0; static void mount_point_free(struct mount_point *m) { if (likely(m->st_space)) - rrdset_is_obsolete(m->st_space); + rrdset_is_obsolete___safe_from_collector_thread(m->st_space); if (likely(m->st_inodes)) - rrdset_is_obsolete(m->st_inodes); + rrdset_is_obsolete___safe_from_collector_thread(m->st_inodes); mount_points_added--; freez(m->name); @@ -216,7 +216,7 @@ int do_getmntinfo(int update_every, usec_t dt) { (mntbuf[i].f_blocks > 2 || netdata_zero_metrics_enabled == CONFIG_BOOLEAN_YES))) { if (unlikely(!m->st_space)) { - snprintfz(title, 4096, "Disk Space Usage for %s [%s]", + snprintfz(title, sizeof(title) - 1, "Disk Space Usage for %s [%s]", mntbuf[i].f_mntonname, mntbuf[i].f_mntfromname); m->st_space = rrdset_create_localhost("disk_space", mntbuf[i].f_mntonname, @@ -254,7 +254,7 @@ int do_getmntinfo(int update_every, usec_t dt) { (mntbuf[i].f_files > 1 || netdata_zero_metrics_enabled == CONFIG_BOOLEAN_YES))) { if (unlikely(!m->st_inodes)) { - snprintfz(title, 4096, "Disk Files (inodes) Usage for %s [%s]", + snprintfz(title, sizeof(title) - 1, "Disk Files (inodes) Usage for %s [%s]", mntbuf[i].f_mntonname, mntbuf[i].f_mntfromname); m->st_inodes = rrdset_create_localhost("disk_inodes", mntbuf[i].f_mntonname, diff --git a/collectors/freebsd.plugin/integrations/dev.cpu.0.freq.md b/collectors/freebsd.plugin/integrations/dev.cpu.0.freq.md index 4172aec21..5f18661d0 100644 --- a/collectors/freebsd.plugin/integrations/dev.cpu.0.freq.md +++ b/collectors/freebsd.plugin/integrations/dev.cpu.0.freq.md @@ -4,6 +4,7 @@ meta_yaml: "https://github.com/netdata/netdata/edit/master/collectors/freebsd.pl sidebar_label: "dev.cpu.0.freq" learn_status: "Published" learn_rel_path: "Data Collection/FreeBSD" +most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -100,7 +101,7 @@ sudo ./edit-config Config options | Name | Description | Default | Required | |:----|:-----------|:-------|:--------:| -| dev.cpu.0.freq | Enable or disable CPU Scaling frequency metric. | yes | False | +| dev.cpu.0.freq | Enable or disable CPU Scaling frequency metric. | yes | no | </details> diff --git a/collectors/freebsd.plugin/integrations/dev.cpu.temperature.md b/collectors/freebsd.plugin/integrations/dev.cpu.temperature.md index 20a1a0256..a3736f771 100644 --- a/collectors/freebsd.plugin/integrations/dev.cpu.temperature.md +++ b/collectors/freebsd.plugin/integrations/dev.cpu.temperature.md @@ -4,13 +4,14 @@ meta_yaml: "https://github.com/netdata/netdata/edit/master/collectors/freebsd.pl sidebar_label: "dev.cpu.temperature" learn_status: "Published" learn_rel_path: "Data Collection/FreeBSD" +most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> # dev.cpu.temperature -<img src="https://netdata.cloud/img/freebsd.org" width="150"/> +<img src="https://netdata.cloud/img/freebsd.svg" width="150"/> Plugin: freebsd.plugin @@ -109,7 +110,7 @@ sudo ./edit-config netdata.conf | Name | Description | Default | Required | |:----|:-----------|:-------|:--------:| -| dev.cpu.temperature | Enable or disable CPU temperature metric. | yes | False | +| dev.cpu.temperature | Enable or disable CPU temperature metric. | yes | no | </details> diff --git a/collectors/freebsd.plugin/integrations/devstat.md b/collectors/freebsd.plugin/integrations/devstat.md index bb578d1dd..9d9c6400b 100644 --- a/collectors/freebsd.plugin/integrations/devstat.md +++ b/collectors/freebsd.plugin/integrations/devstat.md @@ -4,6 +4,7 @@ meta_yaml: "https://github.com/netdata/netdata/edit/master/collectors/freebsd.pl sidebar_label: "devstat" learn_status: "Published" learn_rel_path: "Data Collection/FreeBSD" +most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -133,18 +134,18 @@ sudo ./edit-config netdata.conf | Name | Description | Default | Required | |:----|:-----------|:-------|:--------:| -| enable new disks detected at runtime | Enable or disable possibility to detect new disks. | auto | False | -| performance metrics for pass devices | Enable or disable metrics for disks with type `PASS`. | auto | False | -| total bandwidth for all disks | Enable or disable total bandwidth metric for all disks. | yes | False | -| bandwidth for all disks | Enable or disable bandwidth for all disks metric. | auto | False | -| operations for all disks | Enable or disable operations for all disks metric. | auto | False | -| queued operations for all disks | Enable or disable queued operations for all disks metric. | auto | False | -| utilization percentage for all disks | Enable or disable utilization percentage for all disks metric. | auto | False | -| i/o time for all disks | Enable or disable I/O time for all disks metric. | auto | False | -| average completed i/o time for all disks | Enable or disable average completed I/O time for all disks metric. | auto | False | -| average completed i/o bandwidth for all disks | Enable or disable average completed I/O bandwidth for all disks metric. | auto | False | -| average service time for all disks | Enable or disable average service time for all disks metric. | auto | False | -| disable by default disks matching | Do not create charts for disks listed. | | False | +| enable new disks detected at runtime | Enable or disable possibility to detect new disks. | auto | no | +| performance metrics for pass devices | Enable or disable metrics for disks with type `PASS`. | auto | no | +| total bandwidth for all disks | Enable or disable total bandwidth metric for all disks. | yes | no | +| bandwidth for all disks | Enable or disable bandwidth for all disks metric. | auto | no | +| operations for all disks | Enable or disable operations for all disks metric. | auto | no | +| queued operations for all disks | Enable or disable queued operations for all disks metric. | auto | no | +| utilization percentage for all disks | Enable or disable utilization percentage for all disks metric. | auto | no | +| i/o time for all disks | Enable or disable I/O time for all disks metric. | auto | no | +| average completed i/o time for all disks | Enable or disable average completed I/O time for all disks metric. | auto | no | +| average completed i/o bandwidth for all disks | Enable or disable average completed I/O bandwidth for all disks metric. | auto | no | +| average service time for all disks | Enable or disable average service time for all disks metric. | auto | no | +| disable by default disks matching | Do not create charts for disks listed. | | no | </details> diff --git a/collectors/freebsd.plugin/integrations/getifaddrs.md b/collectors/freebsd.plugin/integrations/getifaddrs.md index 86950622e..63c4ce136 100644 --- a/collectors/freebsd.plugin/integrations/getifaddrs.md +++ b/collectors/freebsd.plugin/integrations/getifaddrs.md @@ -4,6 +4,7 @@ meta_yaml: "https://github.com/netdata/netdata/edit/master/collectors/freebsd.pl sidebar_label: "getifaddrs" learn_status: "Published" learn_rel_path: "Data Collection/FreeBSD" +most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -139,18 +140,18 @@ sudo ./edit-config netdata.conf | Name | Description | Default | Required | |:----|:-----------|:-------|:--------:| -| enable new interfaces detected at runtime | Enable or disable possibility to discover new interface after plugin starts. | auto | False | -| total bandwidth for physical interfaces | Enable or disable total bandwidth for physical interfaces metric. | auto | False | -| total packets for physical interfaces | Enable or disable total packets for physical interfaces metric. | auto | False | -| total bandwidth for ipv4 interface | Enable or disable total bandwidth for IPv4 interface metric. | auto | False | -| total bandwidth for ipv6 interfaces | Enable or disable total bandwidth for ipv6 interfaces metric. | auto | False | -| bandwidth for all interfaces | Enable or disable bandwidth for all interfaces metric. | auto | False | -| packets for all interfaces | Enable or disable packets for all interfaces metric. | auto | False | -| errors for all interfaces | Enable or disable errors for all interfaces metric. | auto | False | -| drops for all interfaces | Enable or disable drops for all interfaces metric. | auto | False | -| collisions for all interface | Enable or disable collisions for all interface metric. | auto | False | -| disable by default interfaces matching | Do not display data for intterfaces listed. | lo* | False | -| set physical interfaces for system.net | Do not show network traffic for listed interfaces. | igb* ix* cxl* em* ixl* ixlv* bge* ixgbe* vtnet* vmx* re* igc* dwc* | False | +| enable new interfaces detected at runtime | Enable or disable possibility to discover new interface after plugin starts. | auto | no | +| total bandwidth for physical interfaces | Enable or disable total bandwidth for physical interfaces metric. | auto | no | +| total packets for physical interfaces | Enable or disable total packets for physical interfaces metric. | auto | no | +| total bandwidth for ipv4 interface | Enable or disable total bandwidth for IPv4 interface metric. | auto | no | +| total bandwidth for ipv6 interfaces | Enable or disable total bandwidth for ipv6 interfaces metric. | auto | no | +| bandwidth for all interfaces | Enable or disable bandwidth for all interfaces metric. | auto | no | +| packets for all interfaces | Enable or disable packets for all interfaces metric. | auto | no | +| errors for all interfaces | Enable or disable errors for all interfaces metric. | auto | no | +| drops for all interfaces | Enable or disable drops for all interfaces metric. | auto | no | +| collisions for all interface | Enable or disable collisions for all interface metric. | auto | no | +| disable by default interfaces matching | Do not display data for intterfaces listed. | lo* | no | +| set physical interfaces for system.net | Do not show network traffic for listed interfaces. | igb* ix* cxl* em* ixl* ixlv* bge* ixgbe* vtnet* vmx* re* igc* dwc* | no | </details> diff --git a/collectors/freebsd.plugin/integrations/getmntinfo.md b/collectors/freebsd.plugin/integrations/getmntinfo.md index 43c1df165..d26ad1c03 100644 --- a/collectors/freebsd.plugin/integrations/getmntinfo.md +++ b/collectors/freebsd.plugin/integrations/getmntinfo.md @@ -4,6 +4,7 @@ meta_yaml: "https://github.com/netdata/netdata/edit/master/collectors/freebsd.pl sidebar_label: "getmntinfo" learn_status: "Published" learn_rel_path: "Data Collection/FreeBSD" +most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -116,11 +117,11 @@ sudo ./edit-config netdata.conf | Name | Description | Default | Required | |:----|:-----------|:-------|:--------:| -| enable new mount points detected at runtime | Cheeck new mount points during runtime. | auto | False | -| space usage for all disks | Enable or disable space usage for all disks metric. | auto | False | -| inodes usage for all disks | Enable or disable inodes usage for all disks metric. | auto | False | -| exclude space metrics on paths | Do not show metrics for listed paths. | /proc/* | False | -| exclude space metrics on filesystems | Do not monitor listed filesystems. | autofs procfs subfs devfs none | False | +| enable new mount points detected at runtime | Cheeck new mount points during runtime. | auto | no | +| space usage for all disks | Enable or disable space usage for all disks metric. | auto | no | +| inodes usage for all disks | Enable or disable inodes usage for all disks metric. | auto | no | +| exclude space metrics on paths | Do not show metrics for listed paths. | /proc/* | no | +| exclude space metrics on filesystems | Do not monitor listed filesystems. | autofs procfs subfs devfs none | no | </details> diff --git a/collectors/freebsd.plugin/integrations/hw.intrcnt.md b/collectors/freebsd.plugin/integrations/hw.intrcnt.md index 5865a6f15..49164c369 100644 --- a/collectors/freebsd.plugin/integrations/hw.intrcnt.md +++ b/collectors/freebsd.plugin/integrations/hw.intrcnt.md @@ -4,6 +4,7 @@ meta_yaml: "https://github.com/netdata/netdata/edit/master/collectors/freebsd.pl sidebar_label: "hw.intrcnt" learn_status: "Published" learn_rel_path: "Data Collection/FreeBSD" +most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -110,7 +111,7 @@ sudo ./edit-config netdata.conf | Name | Description | Default | Required | |:----|:-----------|:-------|:--------:| -| hw.intrcnt | Enable or disable Interrupts metric. | yes | False | +| hw.intrcnt | Enable or disable Interrupts metric. | yes | no | </details> diff --git a/collectors/freebsd.plugin/integrations/ipfw.md b/collectors/freebsd.plugin/integrations/ipfw.md index 4bd4d120b..84e023bdf 100644 --- a/collectors/freebsd.plugin/integrations/ipfw.md +++ b/collectors/freebsd.plugin/integrations/ipfw.md @@ -4,6 +4,7 @@ meta_yaml: "https://github.com/netdata/netdata/edit/master/collectors/freebsd.pl sidebar_label: "ipfw" learn_status: "Published" learn_rel_path: "Data Collection/FreeBSD" +most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -113,9 +114,9 @@ sudo ./edit-config netdata.conf | Name | Description | Default | Required | |:----|:-----------|:-------|:--------:| -| counters for static rules | Enable or disable counters for static rules metric. | yes | False | -| number of dynamic rules | Enable or disable number of dynamic rules metric. | yes | False | -| allocated memory | Enable or disable allocated memory metric. | yes | False | +| counters for static rules | Enable or disable counters for static rules metric. | yes | no | +| number of dynamic rules | Enable or disable number of dynamic rules metric. | yes | no | +| allocated memory | Enable or disable allocated memory metric. | yes | no | </details> diff --git a/collectors/freebsd.plugin/integrations/kern.cp_time.md b/collectors/freebsd.plugin/integrations/kern.cp_time.md index 8c509671b..95bdb8d90 100644 --- a/collectors/freebsd.plugin/integrations/kern.cp_time.md +++ b/collectors/freebsd.plugin/integrations/kern.cp_time.md @@ -4,6 +4,7 @@ meta_yaml: "https://github.com/netdata/netdata/edit/master/collectors/freebsd.pl sidebar_label: "kern.cp_time" learn_status: "Published" learn_rel_path: "Data Collection/FreeBSD" +most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -128,7 +129,7 @@ The netdata main configuration file. | Name | Description | Default | Required | |:----|:-----------|:-------|:--------:| -| kern.cp_time | Enable or disable Total CPU usage. | yes | False | +| kern.cp_time | Enable or disable Total CPU usage. | yes | no | </details> diff --git a/collectors/freebsd.plugin/integrations/kern.ipc.msq.md b/collectors/freebsd.plugin/integrations/kern.ipc.msq.md index 56fb11002..e7457e0c1 100644 --- a/collectors/freebsd.plugin/integrations/kern.ipc.msq.md +++ b/collectors/freebsd.plugin/integrations/kern.ipc.msq.md @@ -4,6 +4,7 @@ meta_yaml: "https://github.com/netdata/netdata/edit/master/collectors/freebsd.pl sidebar_label: "kern.ipc.msq" learn_status: "Published" learn_rel_path: "Data Collection/FreeBSD" +most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -111,7 +112,7 @@ sudo ./edit-config netdata.conf | Name | Description | Default | Required | |:----|:-----------|:-------|:--------:| -| kern.ipc.msq | Enable or disable IPC message queue metric. | yes | False | +| kern.ipc.msq | Enable or disable IPC message queue metric. | yes | no | </details> diff --git a/collectors/freebsd.plugin/integrations/kern.ipc.sem.md b/collectors/freebsd.plugin/integrations/kern.ipc.sem.md index 6dc7d15a1..7bf7235e6 100644 --- a/collectors/freebsd.plugin/integrations/kern.ipc.sem.md +++ b/collectors/freebsd.plugin/integrations/kern.ipc.sem.md @@ -4,6 +4,7 @@ meta_yaml: "https://github.com/netdata/netdata/edit/master/collectors/freebsd.pl sidebar_label: "kern.ipc.sem" learn_status: "Published" learn_rel_path: "Data Collection/FreeBSD" +most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -116,7 +117,7 @@ sudo ./edit-config netdata.conf | Name | Description | Default | Required | |:----|:-----------|:-------|:--------:| -| kern.ipc.sem | Enable or disable semaphore metrics. | yes | False | +| kern.ipc.sem | Enable or disable semaphore metrics. | yes | no | </details> diff --git a/collectors/freebsd.plugin/integrations/kern.ipc.shm.md b/collectors/freebsd.plugin/integrations/kern.ipc.shm.md index e29aa9617..1f10c1e6e 100644 --- a/collectors/freebsd.plugin/integrations/kern.ipc.shm.md +++ b/collectors/freebsd.plugin/integrations/kern.ipc.shm.md @@ -4,6 +4,7 @@ meta_yaml: "https://github.com/netdata/netdata/edit/master/collectors/freebsd.pl sidebar_label: "kern.ipc.shm" learn_status: "Published" learn_rel_path: "Data Collection/FreeBSD" +most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -110,7 +111,7 @@ sudo ./edit-config netdata.conf | Name | Description | Default | Required | |:----|:-----------|:-------|:--------:| -| kern.ipc.shm | Enable or disable shared memory metric. | yes | False | +| kern.ipc.shm | Enable or disable shared memory metric. | yes | no | </details> diff --git a/collectors/freebsd.plugin/integrations/net.inet.icmp.stats.md b/collectors/freebsd.plugin/integrations/net.inet.icmp.stats.md index ad3b7c2c1..29562bc9a 100644 --- a/collectors/freebsd.plugin/integrations/net.inet.icmp.stats.md +++ b/collectors/freebsd.plugin/integrations/net.inet.icmp.stats.md @@ -4,6 +4,7 @@ meta_yaml: "https://github.com/netdata/netdata/edit/master/collectors/freebsd.pl sidebar_label: "net.inet.icmp.stats" learn_status: "Published" learn_rel_path: "Data Collection/FreeBSD" +most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -111,9 +112,9 @@ sudo ./edit-config netdata.conf | Name | Description | Default | Required | |:----|:-----------|:-------|:--------:| -| IPv4 ICMP packets | Enable or disable IPv4 ICMP packets metric. | yes | False | -| IPv4 ICMP error | Enable or disable IPv4 ICMP error metric. | yes | False | -| IPv4 ICMP messages | Enable or disable IPv4 ICMP messages metric. | yes | False | +| IPv4 ICMP packets | Enable or disable IPv4 ICMP packets metric. | yes | no | +| IPv4 ICMP error | Enable or disable IPv4 ICMP error metric. | yes | no | +| IPv4 ICMP messages | Enable or disable IPv4 ICMP messages metric. | yes | no | </details> diff --git a/collectors/freebsd.plugin/integrations/net.inet.ip.stats.md b/collectors/freebsd.plugin/integrations/net.inet.ip.stats.md index e3a048391..785767e89 100644 --- a/collectors/freebsd.plugin/integrations/net.inet.ip.stats.md +++ b/collectors/freebsd.plugin/integrations/net.inet.ip.stats.md @@ -4,6 +4,7 @@ meta_yaml: "https://github.com/netdata/netdata/edit/master/collectors/freebsd.pl sidebar_label: "net.inet.ip.stats" learn_status: "Published" learn_rel_path: "Data Collection/FreeBSD" +most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -112,10 +113,10 @@ sudo ./edit-config netdata.conf | Name | Description | Default | Required | |:----|:-----------|:-------|:--------:| -| ipv4 packets | Enable or disable IPv4 packets metric. | yes | False | -| ipv4 fragments sent | Enable or disable IPv4 fragments sent metric. | yes | False | -| ipv4 fragments assembly | Enable or disable IPv4 fragments assembly metric. | yes | False | -| ipv4 errors | Enable or disable IPv4 errors metric. | yes | False | +| ipv4 packets | Enable or disable IPv4 packets metric. | yes | no | +| ipv4 fragments sent | Enable or disable IPv4 fragments sent metric. | yes | no | +| ipv4 fragments assembly | Enable or disable IPv4 fragments assembly metric. | yes | no | +| ipv4 errors | Enable or disable IPv4 errors metric. | yes | no | </details> diff --git a/collectors/freebsd.plugin/integrations/net.inet.tcp.states.md b/collectors/freebsd.plugin/integrations/net.inet.tcp.states.md index 958d413af..5b4144580 100644 --- a/collectors/freebsd.plugin/integrations/net.inet.tcp.states.md +++ b/collectors/freebsd.plugin/integrations/net.inet.tcp.states.md @@ -4,6 +4,7 @@ meta_yaml: "https://github.com/netdata/netdata/edit/master/collectors/freebsd.pl sidebar_label: "net.inet.tcp.states" learn_status: "Published" learn_rel_path: "Data Collection/FreeBSD" +most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -114,7 +115,7 @@ sudo ./edit-config netdata.conf | Name | Description | Default | Required | |:----|:-----------|:-------|:--------:| -| net.inet.tcp.states | Enable or disable TCP state metric. | yes | False | +| net.inet.tcp.states | Enable or disable TCP state metric. | yes | no | </details> diff --git a/collectors/freebsd.plugin/integrations/net.inet.tcp.stats.md b/collectors/freebsd.plugin/integrations/net.inet.tcp.stats.md index 9aaca2656..be779740d 100644 --- a/collectors/freebsd.plugin/integrations/net.inet.tcp.stats.md +++ b/collectors/freebsd.plugin/integrations/net.inet.tcp.stats.md @@ -4,6 +4,7 @@ meta_yaml: "https://github.com/netdata/netdata/edit/master/collectors/freebsd.pl sidebar_label: "net.inet.tcp.stats" learn_status: "Published" learn_rel_path: "Data Collection/FreeBSD" +most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -124,14 +125,14 @@ sudo ./edit-config netdata.conf | Name | Description | Default | Required | |:----|:-----------|:-------|:--------:| -| ipv4 TCP packets | Enable or disable ipv4 TCP packets metric. | yes | False | -| ipv4 TCP errors | Enable or disable pv4 TCP errors metric. | yes | False | -| ipv4 TCP handshake issues | Enable or disable ipv4 TCP handshake issue metric. | yes | False | -| TCP connection aborts | Enable or disable TCP connection aborts metric. | auto | False | -| TCP out-of-order queue | Enable or disable TCP out-of-order queue metric. | auto | False | -| TCP SYN cookies | Enable or disable TCP SYN cookies metric. | auto | False | -| TCP listen issues | Enable or disable TCP listen issues metric. | auto | False | -| ECN packets | Enable or disable ECN packets metric. | auto | False | +| ipv4 TCP packets | Enable or disable ipv4 TCP packets metric. | yes | no | +| ipv4 TCP errors | Enable or disable pv4 TCP errors metric. | yes | no | +| ipv4 TCP handshake issues | Enable or disable ipv4 TCP handshake issue metric. | yes | no | +| TCP connection aborts | Enable or disable TCP connection aborts metric. | auto | no | +| TCP out-of-order queue | Enable or disable TCP out-of-order queue metric. | auto | no | +| TCP SYN cookies | Enable or disable TCP SYN cookies metric. | auto | no | +| TCP listen issues | Enable or disable TCP listen issues metric. | auto | no | +| ECN packets | Enable or disable ECN packets metric. | auto | no | </details> diff --git a/collectors/freebsd.plugin/integrations/net.inet.udp.stats.md b/collectors/freebsd.plugin/integrations/net.inet.udp.stats.md index 6e9d4a7e0..d3da40455 100644 --- a/collectors/freebsd.plugin/integrations/net.inet.udp.stats.md +++ b/collectors/freebsd.plugin/integrations/net.inet.udp.stats.md @@ -4,6 +4,7 @@ meta_yaml: "https://github.com/netdata/netdata/edit/master/collectors/freebsd.pl sidebar_label: "net.inet.udp.stats" learn_status: "Published" learn_rel_path: "Data Collection/FreeBSD" +most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -116,8 +117,8 @@ sudo ./edit-config netdata.conf | Name | Description | Default | Required | |:----|:-----------|:-------|:--------:| -| ipv4 UDP packets | Enable or disable ipv4 UDP packets metric. | yes | False | -| ipv4 UDP errors | Enable or disable ipv4 UDP errors metric. | yes | False | +| ipv4 UDP packets | Enable or disable ipv4 UDP packets metric. | yes | no | +| ipv4 UDP errors | Enable or disable ipv4 UDP errors metric. | yes | no | </details> diff --git a/collectors/freebsd.plugin/integrations/net.inet6.icmp6.stats.md b/collectors/freebsd.plugin/integrations/net.inet6.icmp6.stats.md index b10088759..7344b79b3 100644 --- a/collectors/freebsd.plugin/integrations/net.inet6.icmp6.stats.md +++ b/collectors/freebsd.plugin/integrations/net.inet6.icmp6.stats.md @@ -4,6 +4,7 @@ meta_yaml: "https://github.com/netdata/netdata/edit/master/collectors/freebsd.pl sidebar_label: "net.inet6.icmp6.stats" learn_status: "Published" learn_rel_path: "Data Collection/FreeBSD" +most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -115,13 +116,13 @@ sudo ./edit-config netdata.conf | Name | Description | Default | Required | |:----|:-----------|:-------|:--------:| -| icmp | Enable or disable ICMP metric. | auto | False | -| icmp redirects | Enable or disable ICMP redirects metric. | auto | False | -| icmp errors | Enable or disable ICMP errors metric. | auto | False | -| icmp echos | Enable or disable ICMP echos metric. | auto | False | -| icmp router | Enable or disable ICMP router metric. | auto | False | -| icmp neighbor | Enable or disable ICMP neighbor metric. | auto | False | -| icmp types | Enable or disable ICMP types metric. | auto | False | +| icmp | Enable or disable ICMP metric. | auto | no | +| icmp redirects | Enable or disable ICMP redirects metric. | auto | no | +| icmp errors | Enable or disable ICMP errors metric. | auto | no | +| icmp echos | Enable or disable ICMP echos metric. | auto | no | +| icmp router | Enable or disable ICMP router metric. | auto | no | +| icmp neighbor | Enable or disable ICMP neighbor metric. | auto | no | +| icmp types | Enable or disable ICMP types metric. | auto | no | </details> diff --git a/collectors/freebsd.plugin/integrations/net.inet6.ip6.stats.md b/collectors/freebsd.plugin/integrations/net.inet6.ip6.stats.md index f282bb972..d9128b529 100644 --- a/collectors/freebsd.plugin/integrations/net.inet6.ip6.stats.md +++ b/collectors/freebsd.plugin/integrations/net.inet6.ip6.stats.md @@ -4,6 +4,7 @@ meta_yaml: "https://github.com/netdata/netdata/edit/master/collectors/freebsd.pl sidebar_label: "net.inet6.ip6.stats" learn_status: "Published" learn_rel_path: "Data Collection/FreeBSD" +most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -112,10 +113,10 @@ sudo ./edit-config netdata.conf | Name | Description | Default | Required | |:----|:-----------|:-------|:--------:| -| ipv6 packets | Enable or disable ipv6 packet metric. | auto | False | -| ipv6 fragments sent | Enable or disable ipv6 fragments sent metric. | auto | False | -| ipv6 fragments assembly | Enable or disable ipv6 fragments assembly metric. | auto | False | -| ipv6 errors | Enable or disable ipv6 errors metric. | auto | False | +| ipv6 packets | Enable or disable ipv6 packet metric. | auto | no | +| ipv6 fragments sent | Enable or disable ipv6 fragments sent metric. | auto | no | +| ipv6 fragments assembly | Enable or disable ipv6 fragments assembly metric. | auto | no | +| ipv6 errors | Enable or disable ipv6 errors metric. | auto | no | </details> diff --git a/collectors/freebsd.plugin/integrations/net.isr.md b/collectors/freebsd.plugin/integrations/net.isr.md index a378ea30f..2d75b825a 100644 --- a/collectors/freebsd.plugin/integrations/net.isr.md +++ b/collectors/freebsd.plugin/integrations/net.isr.md @@ -4,6 +4,7 @@ meta_yaml: "https://github.com/netdata/netdata/edit/master/collectors/freebsd.pl sidebar_label: "net.isr" learn_status: "Published" learn_rel_path: "Data Collection/FreeBSD" +most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -128,8 +129,8 @@ sudo ./edit-config netdata.conf | Name | Description | Default | Required | |:----|:-----------|:-------|:--------:| -| netisr | Enable or disable general vision about softnet stat metrics. | yes | False | -| netisr per core | Enable or disable softnet stat metric per core. | yes | False | +| netisr | Enable or disable general vision about softnet stat metrics. | yes | no | +| netisr per core | Enable or disable softnet stat metric per core. | yes | no | </details> diff --git a/collectors/freebsd.plugin/integrations/system.ram.md b/collectors/freebsd.plugin/integrations/system.ram.md index a1163e9ca..7d4974922 100644 --- a/collectors/freebsd.plugin/integrations/system.ram.md +++ b/collectors/freebsd.plugin/integrations/system.ram.md @@ -4,6 +4,7 @@ meta_yaml: "https://github.com/netdata/netdata/edit/master/collectors/freebsd.pl sidebar_label: "system.ram" learn_status: "Published" learn_rel_path: "Data Collection/FreeBSD" +most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -118,7 +119,7 @@ sudo ./edit-config netdata.conf | Name | Description | Default | Required | |:----|:-----------|:-------|:--------:| -| system.ram | Enable or disable system RAM metric. | yes | False | +| system.ram | Enable or disable system RAM metric. | yes | no | </details> diff --git a/collectors/freebsd.plugin/integrations/uptime.md b/collectors/freebsd.plugin/integrations/uptime.md index 1674be026..e3f1db3f1 100644 --- a/collectors/freebsd.plugin/integrations/uptime.md +++ b/collectors/freebsd.plugin/integrations/uptime.md @@ -4,6 +4,7 @@ meta_yaml: "https://github.com/netdata/netdata/edit/master/collectors/freebsd.pl sidebar_label: "uptime" learn_status: "Published" learn_rel_path: "Data Collection/FreeBSD" +most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -109,7 +110,7 @@ sudo ./edit-config netdata.conf | Name | Description | Default | Required | |:----|:-----------|:-------|:--------:| -| vm.loadavg | Enable or disable load average metric. | yes | False | +| vm.loadavg | Enable or disable load average metric. | yes | no | </details> diff --git a/collectors/freebsd.plugin/integrations/vm.loadavg.md b/collectors/freebsd.plugin/integrations/vm.loadavg.md index a934cf8f4..88c47b7a4 100644 --- a/collectors/freebsd.plugin/integrations/vm.loadavg.md +++ b/collectors/freebsd.plugin/integrations/vm.loadavg.md @@ -4,6 +4,7 @@ meta_yaml: "https://github.com/netdata/netdata/edit/master/collectors/freebsd.pl sidebar_label: "vm.loadavg" learn_status: "Published" learn_rel_path: "Data Collection/FreeBSD" +most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -117,7 +118,7 @@ sudo ./edit-config netdata.conf | Name | Description | Default | Required | |:----|:-----------|:-------|:--------:| -| vm.loadavg | Enable or disable load average metric. | yes | False | +| vm.loadavg | Enable or disable load average metric. | yes | no | </details> diff --git a/collectors/freebsd.plugin/integrations/vm.stats.sys.v_intr.md b/collectors/freebsd.plugin/integrations/vm.stats.sys.v_intr.md index 58a0d4ced..c3e7466e9 100644 --- a/collectors/freebsd.plugin/integrations/vm.stats.sys.v_intr.md +++ b/collectors/freebsd.plugin/integrations/vm.stats.sys.v_intr.md @@ -4,6 +4,7 @@ meta_yaml: "https://github.com/netdata/netdata/edit/master/collectors/freebsd.pl sidebar_label: "vm.stats.sys.v_intr" learn_status: "Published" learn_rel_path: "Data Collection/FreeBSD" +most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -109,7 +110,7 @@ sudo ./edit-config netdata.conf | Name | Description | Default | Required | |:----|:-----------|:-------|:--------:| -| vm.stats.sys.v_intr | Enable or disable device interrupts metric. | yes | False | +| vm.stats.sys.v_intr | Enable or disable device interrupts metric. | yes | no | </details> diff --git a/collectors/freebsd.plugin/integrations/vm.stats.sys.v_soft.md b/collectors/freebsd.plugin/integrations/vm.stats.sys.v_soft.md index bc934239c..ce914bb50 100644 --- a/collectors/freebsd.plugin/integrations/vm.stats.sys.v_soft.md +++ b/collectors/freebsd.plugin/integrations/vm.stats.sys.v_soft.md @@ -4,6 +4,7 @@ meta_yaml: "https://github.com/netdata/netdata/edit/master/collectors/freebsd.pl sidebar_label: "vm.stats.sys.v_soft" learn_status: "Published" learn_rel_path: "Data Collection/FreeBSD" +most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -109,7 +110,7 @@ sudo ./edit-config netdata.conf | Name | Description | Default | Required | |:----|:-----------|:-------|:--------:| -| vm.stats.sys.v_soft | Enable or disable software inerrupts metric. | yes | False | +| vm.stats.sys.v_soft | Enable or disable software inerrupts metric. | yes | no | </details> diff --git a/collectors/freebsd.plugin/integrations/vm.stats.sys.v_swtch.md b/collectors/freebsd.plugin/integrations/vm.stats.sys.v_swtch.md index 4e16a2869..cbcee311f 100644 --- a/collectors/freebsd.plugin/integrations/vm.stats.sys.v_swtch.md +++ b/collectors/freebsd.plugin/integrations/vm.stats.sys.v_swtch.md @@ -4,6 +4,7 @@ meta_yaml: "https://github.com/netdata/netdata/edit/master/collectors/freebsd.pl sidebar_label: "vm.stats.sys.v_swtch" learn_status: "Published" learn_rel_path: "Data Collection/FreeBSD" +most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -110,7 +111,7 @@ sudo ./edit-config netdata.conf | Name | Description | Default | Required | |:----|:-----------|:-------|:--------:| -| vm.stats.sys.v_swtch | Enable or disable CPU context switch metric. | yes | False | +| vm.stats.sys.v_swtch | Enable or disable CPU context switch metric. | yes | no | </details> diff --git a/collectors/freebsd.plugin/integrations/vm.stats.vm.v_pgfaults.md b/collectors/freebsd.plugin/integrations/vm.stats.vm.v_pgfaults.md index 5c79c3443..19230dd56 100644 --- a/collectors/freebsd.plugin/integrations/vm.stats.vm.v_pgfaults.md +++ b/collectors/freebsd.plugin/integrations/vm.stats.vm.v_pgfaults.md @@ -4,6 +4,7 @@ meta_yaml: "https://github.com/netdata/netdata/edit/master/collectors/freebsd.pl sidebar_label: "vm.stats.vm.v_pgfaults" learn_status: "Published" learn_rel_path: "Data Collection/FreeBSD" +most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -109,7 +110,7 @@ sudo ./edit-config netdata.conf | Name | Description | Default | Required | |:----|:-----------|:-------|:--------:| -| vm.stats.vm.v_pgfaults | Enable or disable Memory page fault metric. | yes | False | +| vm.stats.vm.v_pgfaults | Enable or disable Memory page fault metric. | yes | no | </details> diff --git a/collectors/freebsd.plugin/integrations/vm.stats.vm.v_swappgs.md b/collectors/freebsd.plugin/integrations/vm.stats.vm.v_swappgs.md index 8ce678c97..c6caaa682 100644 --- a/collectors/freebsd.plugin/integrations/vm.stats.vm.v_swappgs.md +++ b/collectors/freebsd.plugin/integrations/vm.stats.vm.v_swappgs.md @@ -4,6 +4,7 @@ meta_yaml: "https://github.com/netdata/netdata/edit/master/collectors/freebsd.pl sidebar_label: "vm.stats.vm.v_swappgs" learn_status: "Published" learn_rel_path: "Data Collection/FreeBSD" +most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -114,7 +115,7 @@ sudo ./edit-config netdata.conf | Name | Description | Default | Required | |:----|:-----------|:-------|:--------:| -| vm.stats.vm.v_swappgs | Enable or disable infoormation about SWAP I/O metric. | yes | False | +| vm.stats.vm.v_swappgs | Enable or disable infoormation about SWAP I/O metric. | yes | no | </details> diff --git a/collectors/freebsd.plugin/integrations/vm.swap_info.md b/collectors/freebsd.plugin/integrations/vm.swap_info.md index 345e82327..caa22b3dc 100644 --- a/collectors/freebsd.plugin/integrations/vm.swap_info.md +++ b/collectors/freebsd.plugin/integrations/vm.swap_info.md @@ -4,6 +4,7 @@ meta_yaml: "https://github.com/netdata/netdata/edit/master/collectors/freebsd.pl sidebar_label: "vm.swap_info" learn_status: "Published" learn_rel_path: "Data Collection/FreeBSD" +most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -114,7 +115,7 @@ sudo ./edit-config netdata.conf | Name | Description | Default | Required | |:----|:-----------|:-------|:--------:| -| vm.swap_info | Enable or disable SWAP metrics. | yes | False | +| vm.swap_info | Enable or disable SWAP metrics. | yes | no | </details> diff --git a/collectors/freebsd.plugin/integrations/vm.vmtotal.md b/collectors/freebsd.plugin/integrations/vm.vmtotal.md index 3d9d91633..f3f631af6 100644 --- a/collectors/freebsd.plugin/integrations/vm.vmtotal.md +++ b/collectors/freebsd.plugin/integrations/vm.vmtotal.md @@ -4,6 +4,7 @@ meta_yaml: "https://github.com/netdata/netdata/edit/master/collectors/freebsd.pl sidebar_label: "vm.vmtotal" learn_status: "Published" learn_rel_path: "Data Collection/FreeBSD" +most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -116,9 +117,9 @@ sudo ./edit-config netdata.conf | Name | Description | Default | Required | |:----|:-----------|:-------|:--------:| -| enable total processes | Number of active processes. | yes | False | -| processes running | Show number of processes running or blocked. | yes | False | -| real memory | Memeory used on host. | yes | False | +| enable total processes | Number of active processes. | yes | no | +| processes running | Show number of processes running or blocked. | yes | no | +| real memory | Memeory used on host. | yes | no | </details> diff --git a/collectors/freebsd.plugin/integrations/zfs.md b/collectors/freebsd.plugin/integrations/zfs.md index bb099ddcb..99f10026d 100644 --- a/collectors/freebsd.plugin/integrations/zfs.md +++ b/collectors/freebsd.plugin/integrations/zfs.md @@ -4,6 +4,7 @@ meta_yaml: "https://github.com/netdata/netdata/edit/master/collectors/freebsd.pl sidebar_label: "zfs" learn_status: "Published" learn_rel_path: "Data Collection/FreeBSD" +most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -141,7 +142,7 @@ sudo ./edit-config netdata.conf | Name | Description | Default | Required | |:----|:-----------|:-------|:--------:| -| show zero charts | Do not show charts with zero metrics. | no | False | +| show zero charts | Do not show charts with zero metrics. | no | no | </details> diff --git a/collectors/freebsd.plugin/metadata.yaml b/collectors/freebsd.plugin/metadata.yaml index d68fc3137..36fba2430 100644 --- a/collectors/freebsd.plugin/metadata.yaml +++ b/collectors/freebsd.plugin/metadata.yaml @@ -323,7 +323,7 @@ modules: link: "https://www.freebsd.org/" categories: - data-collection.freebsd - icon_filename: "freebsd.org" + icon_filename: "freebsd.svg" related_resources: integrations: list: [] |