From 412fb90f5888df13fdeafb5705b9ea6eef1a4df1 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Tue, 15 Feb 2022 04:25:26 +0100 Subject: Merging upstream version 1.33.1. Signed-off-by: Daniel Baumann --- docs/get-started.mdx | 69 +++++++++++++++------------------------------------- 1 file changed, 19 insertions(+), 50 deletions(-) (limited to 'docs/get-started.mdx') diff --git a/docs/get-started.mdx b/docs/get-started.mdx index 562c587ef..ec36c6a2a 100644 --- a/docs/get-started.mdx +++ b/docs/get-started.mdx @@ -6,28 +6,39 @@ sidebar_label: "Get started" custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/get-started.mdx --- -import { OneLineInstall } from '../src/components/OneLineInstall/' +import { OneLineInstallWget } from '../src/components/OneLineInstall/' import { Install, InstallBox } from '../src/components/Install/' # Get started with Netdata Netdata is a free and open-source (FOSS) monitoring agent that collects thousands of hardware and software metrics from -any physical or virtual system (we call them _nodes_) and organizes them in an easy-to-use and -navigate interface. +any physical or virtual system (we call them _nodes_). These metrics are organized in an easy-to-use and -navigate interface. Together with [Netdata Cloud](https://learn.netdata.cloud/docs/cloud), you can monitor your entire infrastructure in -real time and troubleshoot problems that threaten the health of your nodes before they occur. +real time and troubleshoot problems that threaten the health of your nodes. Netdata runs permanently on all your physical/virtual servers, containers, cloud deployments, and edge/IoT devices. It runs on Linux distributions (Ubuntu, Debian, CentOS, and more), container/microservice platforms (Kubernetes clusters, Docker), and many other operating systems (FreeBSD, macOS), with no `sudo` required. +## Install on Linux with one-line installer + +The **recommended** way to install Netdata on a Linux node (physical, virtual, container, IoT) is our one-line +[kickstart script](/packaging/installer/methods/kickstart.md). This script automatically installs dependencies and +builds Netdata from its source code. + +Copy the script, paste it into your node's terminal, and hit `Enter` to begin the installation process. + + + +Jump down to [what's next](#whats-next) to learn how to view your new dashboard and take your next steps monitoring and +troubleshooting with Netdata. + +## Other installation options + - - - -## Install on Linux with one-line installer (recommended) - -The **recommended** way to install Netdata on a Linux node (physical, virtual, container, IoT) is our one-line -[kickstart script](/packaging/installer/methods/kickstart.md). This script automatically installs dependencies and -builds Netdata from its source code. - -Copy the script, paste it into your node's terminal, and hit `Enter` to begin the installation process. - - - -Jump down to [what's next](#whats-next) to learn how to view your new dashboard and take your next steps monitoring and -troubleshooting with Netdata. - -## Run Netdata with Docker - -You can also try out Netdata's capabilities in a [Docker container](/packaging/docker/README.md). Copy the following -`docker run` command into your node and hit `Enter` to download and run the container. - -```bash -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/netdata -``` ## What's next? -- cgit v1.2.3