Ilya Mashchenko 8d8a6a8cd9 fix some docs issues (#18553) 5 месяцев назад
..
optimizing-metrics-database a399128dbf config parsers (#17238) 6 месяцев назад
running-the-netdata-agent-behind-a-reverse-proxy ccdd56e4cb docs fix "Prevent the double access.log" (#17773) 9 месяцев назад
README.md d3ff7e9818 PR to change absolute links to relative (#17720) 9 месяцев назад
anonymous-telemetry-events.md d3ff7e9818 PR to change absolute links to relative (#17720) 9 месяцев назад
cheatsheet.md d3ff7e9818 PR to change absolute links to relative (#17720) 9 месяцев назад
common-configuration-changes.md 8d8a6a8cd9 fix some docs issues (#18553) 5 месяцев назад
dynamic-configuration.md 57cff4c8ec RBAC for dynamic configuration documentation (#17861) 8 месяцев назад
optimize-the-netdata-agents-performance.md d3ff7e9818 PR to change absolute links to relative (#17720) 9 месяцев назад
organize-systems-metrics-and-alerts.md 38baccf80a Change "War Room" to "Room" and other docs changes (#17783) 9 месяцев назад

README.md

Netdata Agent Configuration

The main Netdata agent configuration is netdata.conf.

The Netdata config directory

On most Linux systems, by using our recommended one-line installation, the Netdata config directory will be /etc/netdata/. The config directory contains several configuration files with the .conf extension, a few directories, and a shell script named edit-config.

Some operating systems will use /opt/netdata/etc/netdata/ as the config directory. If you're not sure where yours is, navigate to http://NODE:19999/netdata.conf in your browser, replacing NODE with the IP address or hostname of your node, and find the # config directory = setting. The value listed is the config directory for your system.

All of Netdata's documentation assumes that your config directory is at /etc/netdata, and that you're running any scripts from inside that directory.

edit netdata.conf

To edit netdata.conf, run this on your terminal:

cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
sudo ./edit-config netdata.conf

Your editor will open.

downloading netdata.conf

The running version of netdata.conf can be downloaded from a running Netdata agent, at this URL:

http://agent-ip:19999/netdata.conf

You can save and use this version, using these commands:

cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
curl -ksSLo /tmp/netdata.conf.new http://localhost:19999/netdata.conf && sudo mv -i /tmp/netdata.conf.new netdata.conf