Skip to content

Commit

Permalink
Merge pull request #1886 from netdata/ingest
Browse files Browse the repository at this point in the history
  • Loading branch information
ilyam8 authored Nov 17, 2023
2 parents 940ae5f + 76833a4 commit 2a8e585
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 7 deletions.
4 changes: 2 additions & 2 deletions docs/alerting/health-configuration-reference.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -710,14 +710,14 @@ If you have an e.g. external disk mounted on `/mnt/disk1` and you don't wish any
it (but you do for all other mount points), you can add the following to the alert's configuration:

```yaml
chart labels: mount_point=!/mnt/disk1 *`
chart labels: mount_point=!/mnt/disk1 *
```

The `chart labels` is a space-separated list that accepts simple patterns. If you use multiple different chart labels,
then the result is an OR between them. i.e. the following:

```yaml
chart labels: mount_point=/mnt/disk1 device=sda`
chart labels: mount_point=/mnt/disk1 device=sda
```

Will create the alert if the `mount_point` is `/mnt/disk1` or the `device` is `sda`. Furthermore, if a chart label name
Expand Down
2 changes: 1 addition & 1 deletion docs/data-collection/eBPF/eBPF-Processes.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ Metrics:
|:------|:----------|:----|
| app.process_create | calls | calls/s |
| app.thread_create | call | calls/s |
| app.task_exit | callp | calls/s |
| app.task_exit | call | calls/s |
| app.task_close | call | calls/s |
| app.task_error | app | calls/s |

Expand Down
4 changes: 2 additions & 2 deletions docs/installing/docker.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -454,9 +454,9 @@ above section on [configuring Agent containers](#configure-agent-containers) to
how you created the container.

Alternatively, you can directly use the hostname from the node running the container by mounting `/etc/hostname` from
the host in the container. With `docker run`, this can be done by adding `--volume /etc/hostname:/etc/hostname:ro` to
the host in the container. With `docker run`, this can be done by adding `--volume /etc/hostname:/host/etc/hostname:ro` to
the options. If you are using Docker Compose, you can add an entry to the container's `volumes` section
reading `- /etc/hostname:/etc/hostname:ro`.
reading `- /etc/hostname:/host/etc/hostname:ro`.

## Adding extra packages at runtime

Expand Down
11 changes: 10 additions & 1 deletion docs/installing/native-linux-distribution-packages.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,9 @@ repositories at that top level:

Within each top level group of repositories, there are directories for each supported group of distributions:

- `el`: Is for Red Hat Enterprise Linux and binary compatible distros, such as CentOS, Alma Linux, and Rocky Linux.
- `amazonlinux`: Is for Amazon Linux and binary compatible distros.
- `el`: Is for Red Hat Enterprise Linux and binary compatible distros that are not covered by other repos, such
as CentOS, Alma Linux, and Rocky Linux.
- `fedora`: Is for Fedora and binary compatible distros.
- `ol`: Is for Oracle Linux and binary compatible distros.
- `opensuse`: Is for openSUSE and binary compatible distros.
Expand All @@ -65,6 +67,13 @@ appropriate repository configuration package from https://repo.netdata.cloud/rep
directly on the target system using the system package manager. This will ensure any packages needed to use the
repository are also installed, and will help enable a seamless transition if we ever need to change our infrastructure.

> ### Note
>
> On RHEL and other systems that use the `el` repostiroies, some of the dependencies for Netdata can only be found
> in the EPEL repository, which is not enabled or installed by default on most of these systems. This additional
> repository _should_ be pulled in automatically by our repository config packages, but if it is not you may need
> to manually install `epel-release` to be able to successfully install the Netdata packages.
## Manual setup of DEB packages.

Netdata’s official DEB repositories are hosted at https://repo.netdata.cloud/repos. We provide four groups of
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ To use `md5sum` to verify the integrity of the `kickstart.sh` script you will do
run the following:

```bash
[ "e3281357e8b4a6c2e815ea175c59171e" = "$(curl -Ss https://my-netdata.io/kickstart.sh | md5sum | cut -d ' ' -f 1)" ] && echo "OK, VALID" || echo "FAILED, INVALID"
[ "e72c22b3ff4db284c2f36da726759121" = "$(curl -Ss https://my-netdata.io/kickstart.sh | md5sum | cut -d ' ' -f 1)" ] && echo "OK, VALID" || echo "FAILED, INVALID"
```

If the script is valid, this command will return `OK, VALID`.
Expand Down

0 comments on commit 2a8e585

Please sign in to comment.