summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorNetdata bot <43409846+netdatabot@users.noreply.github.com>2024-06-16 11:47:51 -0400
committerGitHub <noreply@github.com>2024-06-16 18:47:51 +0300
commitc179695f0bd43bd8db926c506b34bc321494119a (patch)
treec329443b484ef03bb696e31312f72f83f9a9ab75 /src
parent8af7043c5a005fc6ef24fd4a67ad190c0f67219e (diff)
Regenerate integrations.js (#17910)
Co-authored-by: ilyam8 <22274335+ilyam8@users.noreply.github.com>
Diffstat (limited to 'src')
-rw-r--r--src/go/collectors/go.d.plugin/modules/nvme/integrations/nvme_devices.md24
-rw-r--r--src/go/collectors/go.d.plugin/modules/x509check/integrations/x.509_certificate.md2
2 files changed, 25 insertions, 1 deletions
diff --git a/src/go/collectors/go.d.plugin/modules/nvme/integrations/nvme_devices.md b/src/go/collectors/go.d.plugin/modules/nvme/integrations/nvme_devices.md
index 338c4e2a63..fd18c1fd2d 100644
--- a/src/go/collectors/go.d.plugin/modules/nvme/integrations/nvme_devices.md
+++ b/src/go/collectors/go.d.plugin/modules/nvme/integrations/nvme_devices.md
@@ -106,6 +106,30 @@ The following alerts are available:
See [Distro Support](https://github.com/linux-nvme/nvme-cli#distro-support). Install `nvme-cli` using your distribution's package manager.
+#### For Netdata running in a Docker container: grant NVMe device access
+
+Your NVMe devices need to be accessible within the Docker container for Netdata to monitor them.
+
+Include the following option in your `docker run` command or add the device mapping in your `docker-compose.yml` file:
+
+- `docker run`
+
+ ```bash
+ --device '/dev/nvme0n1:/dev/nvme0n1'
+ ```
+
+- `docker-compose.yml`
+
+ ```yaml
+ services:
+ netdata:
+ devices:
+ - "/dev/nvme0n1:/dev/nvme0n1"
+ ```
+
+**Note**: Replace `/dev/nvme0n1` with your actual NVMe device name.
+
+
### Configuration
diff --git a/src/go/collectors/go.d.plugin/modules/x509check/integrations/x.509_certificate.md b/src/go/collectors/go.d.plugin/modules/x509check/integrations/x.509_certificate.md
index de12f1c847..6269d97730 100644
--- a/src/go/collectors/go.d.plugin/modules/x509check/integrations/x.509_certificate.md
+++ b/src/go/collectors/go.d.plugin/modules/x509check/integrations/x.509_certificate.md
@@ -115,7 +115,7 @@ The following options can be defined globally: update_every, autodetection_retry
|:----|:-----------|:-------|:--------:|
| update_every | Data collection frequency. | 1 | no |
| autodetection_retry | Recheck interval in seconds. Zero means no recheck will be scheduled. | 0 | no |
-| source | Certificate source. Allowed schemes: https, tcp, tcp4, tcp6, udp, udp4, udp6, file. | | no |
+| source | Certificate source. Allowed schemes: https, tcp, tcp4, tcp6, udp, udp4, udp6, file, smtp. | | no |
| days_until_expiration_warning | Number of days before the alarm status is warning. | 30 | no |
| days_until_expiration_critical | Number of days before the alarm status is critical. | 15 | no |
| check_revocation_status | Whether to check the revocation status of the certificate. | no | no |