@cryptotaxi247 / netdata / commits / ed8e40270

Customize node name addition (#21151)

Kanela committed Oct 15, 2025 at 14:08 UTC ed8e40270d236c5feeb848510f2fa9498c2070f3
1 file changed +23
src/daemon/config/README.md
+23
@@ -43,6 +43,29 @@ After you modify `netdata.conf`, you need to [restart Netdata](/docs/netdata-age
43
44 :::
45
46 +## Customizing Your Node Name
47 +
48 +You can change the display name of your Netdata node by customizing the hostname setting:
49 +
50 +1. Edit your `netdata.conf` file:
51 + ```bash
52 + cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
53 + sudo ./edit-config netdata.conf
54 + ```
55 +
56 +2. Add or modify the hostname in the `[global]` section:
57 + ```ini
58 + [global]
59 + hostname = YOUR_CUSTOM_NODE_NAME
60 + ```
61 +
62 +3. Restart Netdata to apply the changes:
63 + ```bash
64 + sudo systemctl restart netdata
65 + ```
66 +
67 +The custom hostname will appear in dashboards, alerts, and when streaming to parent nodes.
68 +
69 ## Configuration Section Details
70
71 <details>