| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
parent directory.. | ||||
Running the Netdata Agent in a container works best for an internal network or to quickly analyze a host. Docker helps you get set up quickly, and doesn't install anything permanent on the system, which makes uninstalling the Agent easy.
See our full list of Docker images at Docker Hub.
Starting with v1.30, Netdata collects anonymous usage information by default and sends it to a self-hosted PostHog instance within the Netdata infrastructure. Read about the information collected, and learn how to-opt, on our anonymous statistics page.
The usage statistics are vital for us, as we use them to discover bugs and prioritize new features. We thank you for actively contributing to Netdata's future.
For monitoring the whole host, running the Agent in a container can limit its capabilities. Some data, like the host OS performance or status, is not accessible or not as detailed in a container as when running the Agent directly on the host.
A way around this is to provide special mounts to the Docker container so that the Agent can get visibility on host OS information like /sys and /proc folders or even /etc/group and shadow files.
Also, we now ship Docker images using an ENTRYPOINT directive, not a COMMAND directive. Please adapt your execution scripts accordingly. You can find more information about ENTRYPOINT vs COMMAND in the Docker documentation.
Our POWER8+ Docker images do not support our FreeIPMI collector. This is a technical limitation in FreeIPMI itself, and unfortunately not something we can realistically work around.
You can create a new Agent container using either docker run or Docker Compose. After using either method, you can visit the Agent dashboard http://NODE:19999.
Both methods create a bind mount for Netdata's configuration files within the container at /etc/netdata. See the configuration section for details. If you want to access the configuration files from your host machine, see host-editable configuration.
docker run: Use the docker run command, along with the following options, to start a new container.
docker run -d --name=netdata \
-p 19999:19999 \
-v netdataconfig:/etc/netdata \
-v netdatalib:/var/lib/netdata \
-v netdatacache:/var/cache/netdata \
-v /etc/passwd:/host/etc/passwd:ro \
-v /etc/group:/host/etc/group:ro \
-v /proc:/host/proc:ro \
-v /sys:/host/sys:ro \
-v /etc/os-release:/host/etc/os-release:ro \
--restart unless-stopped \
--cap-add SYS_PTRACE \
--security-opt apparmor=unconfined \
netdata/netdataDocker Compose: Copy the following code and paste into a new file called docker-compose.yml, then run docker-compose up -d in the same directory as the docker-compose.yml file to start the container.
version: '3'
services:
netdata:
image: netdata/netdata
container_name: netdata
hostname: example.com # set to fqdn of host
ports:
- 19999:19999
restart: unless-stopped
cap_add:
- SYS_PTRACE
security_opt:
- apparmor:unconfined
volumes:
- netdataconfig:/etc/netdata
- netdatalib:/var/lib/netdata
- netdatacache:/var/cache/netdata
- /etc/passwd:/host/etc/passwd:ro
- /etc/group:/host/etc/group:ro
- /proc:/host/proc:ro
- /sys:/host/sys:ro
- /etc/os-release:/host/etc/os-release:ro
volumes:
netdataconfig:
netdatalib:
netdatacache:The official netdata/netdata Docker image provides the following named tags:
Additionally, for each stable release, three tags are pushed, one with the full version of the release (for example, v1.30.0), one with just the major and minor version (for example, v1.30), and one with just the major version (for example, v1). The tags for the minor versions and major versions are updated whenever a release is published that would match that tag (for example, if v1.30.1 were to be published, the v1.30 tag would be updated to point to that instead of v1.30.0).
Our Docker image provides integrated support for health checks through the standard Docker interfaces.
You can control how the health checks run by using the environment variable NETDATA_HEALTHCHECK_TARGET as follows:
In most cases, the default behavior of checking the /api/v1/info endpoint will be sufficient. If you are using a configuration which disables the web server or restricts access to certain APIs, you will need to use a non-default configuration for health checks to work.
If you started an Agent container using one of the recommended methods, and you want to edit Netdata's configuration, you must first use docker exec to attach to the container. Replace netdata with the name of your container.
docker exec -it netdata bash
cd /etc/netdata
./edit-config netdata.confYou need to restart the Agent to apply changes. Exit the container if you haven't already, then use the docker command to restart the container: docker restart netdata.
Warning: edit-config script doesn't work when executed on the host system.
If you want to make your container's configuration directory accessible from the host system, you need to use a volume rather than a bind mount. The following commands create a temporary netdata_tmp container, which is used to populate a netdataconfig directory, which is then mounted inside the container at /etc/netdata.
mkdir netdataconfig
docker run -d --name netdata_tmp netdata/netdata
docker cp netdata_tmp:/etc/netdata netdataconfig/
docker rm -f netdata_tmpdocker run: Use the docker run command, along with the following options, to start a new container. Note the changed -v $(pwd)/netdataconfig/netdata:/etc/netdata:ro \ line from the recommended example above.
docker run -d --name=netdata \
-p 19999:19999 \
-v $(pwd)/netdataconfig/netdata:/etc/netdata:ro \
-v netdatalib:/var/lib/netdata \
-v netdatacache:/var/cache/netdata \
-v /etc/passwd:/host/etc/passwd:ro \
-v /etc/group:/host/etc/group:ro \
-v /proc:/host/proc:ro \
-v /sys:/host/sys:ro \
-v /etc/os-release:/host/etc/os-release:ro \
--restart unless-stopped \
--cap-add SYS_PTRACE \
--security-opt apparmor=unconfined \
netdata/netdataDocker Compose: Copy the following code and paste into a new file called docker-compose.yml, then run docker-compose up -d in the same directory as the docker-compose.yml file to start the container. Note the changed ./netdataconfig/netdata:/etc/netdata:ro line from the recommended example above.
version: '3'
services:
netdata:
image: netdata/netdata
container_name: netdata
hostname: example.com # set to fqdn of host
ports:
- 19999:19999
restart: unless-stopped
cap_add:
- SYS_PTRACE
security_opt:
- apparmor:unconfined
volumes:
- ./netdataconfig/netdata:/etc/netdata:ro
- netdatalib:/var/lib/netdata
- netdatacache:/var/cache/netdata
- /etc/passwd:/host/etc/passwd:ro
- /etc/group:/host/etc/group:ro
- /proc:/host/proc:ro
- /sys:/host/sys:ro
- /etc/os-release:/host/etc/os-release:ro
volumes:
netdatalib:
netdatacache:You can change the hostname of a Docker container, and thus the name that appears in the local dashboard and in Netdata Cloud, when creating a new container. If you want to change the hostname of a Netdata container after you started it, you can safely stop and remove it. Your configuration and metrics data reside in persistent volumes and are reattached to the recreated container.
If you use docker-run, use the --hostname option with docker run.
docker run -d --name=netdata \
--hostname=my_docker_netdataIf you use docker-compose, add a hostname: key/value pair into your docker-compose.yml file, then create the container again using docker-compose up -d.
version: '3'
services:
netdata:
image: netdata/netdata
container_name: netdata
hostname: my_docker_compose_netdata
...If you don't want to destroy and recreate your container, you can edit the Agent's netdata.conf file directly. See the above section on configuring Agent containers to find the appropriate method based on 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 options. If you are using Docker Compose, you can add an entry to the container's volumes section reading - /etc/hostname:/etc/hostname:ro.
Some volumes are optional depending on how you use Netdata:
environment:
- VIRTUALIZATION=${VIRTUALIZATION}This allows the information to be passed into docker-compose using:
VIRTUALIZATION=$(systemd-detect-virt -v) docker-compose upIf a volume is used by systemd service, some files can be removed during reinitialization. To avoid this, you need to add RuntimeDirectoryPreserve=yes to the service file.
There are a few options for resolving container names within Netdata. Some methods of doing so will allow root access to your machine from within the container. Please read the following carefully.
Deploy a Docker socket proxy that accepts and filters out requests using something like HAProxy so that it restricts connections to read-only access to the CONTAINERS endpoint.
The reason it's safer to expose the socket to the proxy is because Netdata has a TCP port exposed outside the Docker network. Access to the proxy container is limited to only within the network.
Below is an example repository (and image) that provides a proxy to the socket.
You run the Docker Socket Proxy in its own Docker Compose file and leave it on a private network that you can add to other services that require access.
version: '3'
services:
netdata:
image: netdata/netdata
# ... rest of your config ...
ports:
- 19999:19999
environment:
- DOCKER_HOST=proxy:2375
proxy:
image: tecnativa/docker-socket-proxy
volumes:
- /var/run/docker.sock:/var/run/docker.sock:ro
environment:
- CONTAINERS=1
Note: Replace 2375 with the port of your proxy.
You should seriously consider the necessity of activating this option, as it grants to the netdata user access to the privileged socket connection of docker service and therefore your whole machine.
If you want to have your container names resolved by Netdata, make the netdata user be part of the group that owns the socket.
version: '3'
services:
netdata:
image: netdata/netdata
# ... rest of your config ...
volumes:
# ... other volumes ...
- /var/run/docker.sock:/var/run/docker.sock:ro
environment:
- PGID=[GROUP NUMBER]To achieve that just add environment variable PGID=[GROUP NUMBER] to the Netdata container, where [GROUP NUMBER] is practically the group id of the group assigned to the docker socket, on your host.
This group number can be found by running the following (if socket group ownership is docker):
grep docker /etc/group | cut -d ':' -f 3You should seriously consider the necessity of activating this option, as it grants to the netdata user access to the privileged socket connection of docker service, and therefore your whole machine.
version: '3'
services:
netdata:
image: netdata/netdata
# ... rest of your config ...
volumes:
# ... other volumes ...
- /var/run/docker.sock:/var/run/docker.sock:ro
environment:
- DOCKER_USR=rootNetdata can map a virtual interface in the system namespace to an interface inside a Docker container when using network bridge driver. To do this, the Netdata container needs additional privileges:
the host PID mode. This turns on sharing between container and the host operating system the PID address space (needed to get list of PIDs from cgroup.procs file).
SYS_ADMIN capability (needed to execute setns()).
docker run:
docker run -d --name=netdata \
...
--pid=host \
--cap-add SYS_ADMIN \
...
netdata/netdatadocker compose:
version: '3'
services:
netdata:
image: netdata/netdata
container_name: netdata
pid: host
cap_add:
- SYS_ADMIN
...Since we use an ENTRYPOINT directive, you can provide Netdata daemon command line options such as the IP address Netdata will be running on, using the command instruction.
For a permanent installation on a public server, you should secure the Netdata instance. This section contains an example of how to install Netdata with an SSL reverse proxy and basic authentication.
You can use the following docker-compose.yml and Caddyfile files to run Netdata with Docker. Replace the domains and email address for Let's Encrypt before starting.
This file needs to be placed in /opt with name Caddyfile. Here you customize your domain, and you need to provide your email address to obtain a Let's Encrypt certificate. Certificate renewal will happen automatically and will be executed internally by the caddy server.
netdata.example.org {
reverse_proxy netdata:19999
tls admin@example.org
}After setting Caddyfile run this with docker-compose up -d to have fully functioning Netdata setup behind HTTP reverse proxy.
version: '3'
volumes:
caddy_data:
caddy_config:
services:
caddy:
image: caddy:2
ports:
- "80:80"
- "443:443"
volumes:
- /opt/Caddyfile:/etc/caddy/Caddyfile
- caddy_data:/data
- caddy_config:/config
netdata:
restart: always
hostname: netdata.example.org
image: netdata/netdata
cap_add:
- SYS_PTRACE
security_opt:
- apparmor:unconfined
volumes:
- netdatalib:/var/lib/netdata
- netdatacache:/var/cache/netdata
- /etc/passwd:/host/etc/passwd:ro
- /etc/group:/host/etc/group:ro
- /proc:/host/proc:ro
- /sys:/host/sys:ro
- /var/run/docker.sock:/var/run/docker.sock:ro
volumes:
netdatalib:
netdatacache:You can restrict access by following official caddy guide and adding lines to Caddyfile.
At Netdata, we provide multiple ways of testing your Docker images using your own repositories. You may either use the command line tools available or take advantage of our Travis CI infrastructure.
To enable Travis CI integration on your own repositories (Docker and GitHub), you need to be part of the Netdata organization.
Once you have contacted the Netdata owners to setup you up on GitHub and Travis, execute the following steps
Preparation
Setting up Travis CI for your own fork (Detailed instructions provided by Travis team here)
While in Travis settings, under Netdata repository settings in the Environment Variables section, you need to add the following:
Having followed these instructions, your forked repository should be all set up for integration with Travis CI. Happy testing!
| Back | FazBrowse Home | New Git URL |