From 83ba6762cc43d9db581b979bb5e3445669e46cc2 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Mon, 25 Nov 2024 18:33:56 +0100 Subject: Merging upstream version 2.0.3+dfsg (Closes: #923993, #1042533, #1045145). Signed-off-by: Daniel Baumann --- src/exporting/WALKTHROUGH.md | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) (limited to 'src/exporting/WALKTHROUGH.md') diff --git a/src/exporting/WALKTHROUGH.md b/src/exporting/WALKTHROUGH.md index 450789d9d..1b3d255bd 100644 --- a/src/exporting/WALKTHROUGH.md +++ b/src/exporting/WALKTHROUGH.md @@ -37,7 +37,7 @@ This stack will offer you visibility into your application and systems performan To begin let's create our container which we will install Netdata on. We need to run a container, forward the necessary port that Netdata listens on, and attach a tty so we can interact with the bash shell on the container. But before we do this we want name resolution between the two containers to work. In order to accomplish this we will create a -user-defined network and attach both containers to this network. The first command we should run is: +user-defined network and attach both containers to this network. The first command we should run is: ```sh docker network create --driver bridge netdata-tutorial @@ -90,15 +90,15 @@ We will be installing Prometheus in a container for purpose of demonstration. Wh container I would like to walk through the install process and setup on a fresh container. This will allow anyone reading to migrate this tutorial to a VM or Server of any sort. -Let's start another container in the same fashion as we did the Netdata container. +Let's start another container in the same fashion as we did the Netdata container. ```sh docker run -it --name prometheus --hostname prometheus \ --network=netdata-tutorial -p 9090:9090 centos:latest '/bin/bash' -``` +``` This should drop you into a shell once again. Once there quickly install your favorite editor as we will be editing -files later in this tutorial. +files later in this tutorial. ```sh yum install vim -y @@ -137,7 +137,7 @@ point to talk about Prometheus's data model which can be viewed here: