NetData ---Linux web visual performance monitoring tool

NetData is a Linux performance monitoring tool with beautiful interface and complete monitoring

Features

Netdata performs distributed, real-time, performance and health monitoring of systems and applications. It is a highly optimized monitoring agent installed on all systems and containers.
Netdata uses a highly interactive web dashboard to provide unparalleled real-time insights into everything happening on its running systems (including web servers, databases, and applications). It can run independently without any third-party components, and can also be integrated into existing monitoring tool chains (Prometheus, Graphite, OpenTSDB, Kafka, Grafana, etc.).
Netdata is fast and efficient, and can run permanently on all systems (physical and virtual servers, containers, IoT devices) without disrupting their core functions.
Netdata is free and open source software, currently running on Linux, FreeBSD and MacOS.
Netdata not hosted by CNCF, Cloud Computing Native Foundation (CNCF) Landscape .
Ranked third in open source projects.

Monitoring project

  • RAM
  • CPU
  • Disk
  • Network IO
  • Mysql
  • Temperature etc.

Official website: github
Sinicized version: Completely Sinicized
Chinese patch

It is recommended to use docker installation

On the surface, netdata is a non-intrusive monitoring tool, but during the actual installation process, many other components will be installed by itself. If the server performance is poor, high IO and high consumption will slow down the server. The use of docker has better isolation, which avoids the resident memory of many processes when it is not in use or when it is uninstalled.



docker run -d --name=netdata \
  -p 19999:19999 \
  -v /proc:/host/proc:ro \
  -v /sys:/host/sys:ro \
  -v /var/run/docker.sock:/var/run/docker.sock:ro \
  --cap-add SYS_PTRACE \
  --security-opt apparmor=unconfined \
  netdata/netdata
use

Browser open localhost:19999 or ip:19999

Partial screenshot

Overview

RAM

Disk

Write at the end

This gadget is too resource intensive. The i9 9900K is stuck when browsing the web, and the server is currently under pressure (128 cores plus 1.5T RAM)

Guess you like

Origin blog.csdn.net/u013741019/article/details/102882781