Netdata - How to start monitoring in two clicks

If you are not going to get some SPECIAL specific metrics from Grafana-Prometheus, then this solution is absolutely redundant, energy-time-safely costly.
Simplest. Safe (yes, you can easily close port 19999) but it’s not necessary. A native-friendly and fast way to deploy monitoring of your system.
YES! it is impossible to set up “specific” graphs and data, but in the OVERALL of the cases this is enoughIt’s time to throw this GRAPHANA solution into the trash. Not only that, my friends’ servers were hacked through GRAPHANA just a year ago. So the setup and installation takes a whole EVER. There is a much simpler method to take REGULAR, non-specific metrics. NETDATA.
All you need to do is take 2 steps.
Register on the https://app.netdata.cloud/ website.
Run docker-container replacing 3 lines for “personalization” from “add new node using Docker”

docker run -d --name=netdata \
  -p 19999:19999 \
  --hostname=PUTNAMEHERE \   # put name of your node here
  -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 \
 --security-opt apparmor=unconfined \ 
#HERE 3 LAST ROWS from website
  -e NETDATA_CLAIM_TOKEN=CrK.... \
  -e NETDATA_CLAIM_URL=https://app.netdata.cloud \
  -e NETDATA_CLAIM_ROOMS==............

AND…