Skip to content

Commit 5fb0c05

Browse files
authored
Update System Monitoring in UNIX.adoc
1 parent 920cfaa commit 5fb0c05

File tree

1 file changed

+39
-15
lines changed

1 file changed

+39
-15
lines changed

System Monitoring in UNIX.adoc

Lines changed: 39 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -115,23 +115,26 @@
115115
| https://packagecloud.io/app/sensu/stable/search?dist=debian%2Fbullseye[external]
116116
| Go, previously Ruby
117117
| https://github.com/sensu/sensu-go[922]
118+
| PostgreSQL
118119
|
119120
|
120121
|
121-
|
122-
|
123-
|
122+
| Built-in, on port 3000
123+
| No initscripts, no config file templates (intended to run in a Docker container).
124+
The default _PostgreSQL_ config file location in Debian 12 is `/etc/postgresql/15/main/pg_hba.conf`.
124125

125126
| https://www.netdata.cloud[Netdata]
126-
| https://learn.netdata.cloud/docs/installing/native-linux-distribution-packages#manual-setup-of-deb-packages[external]
127+
| standard (*1.37.1*) or
128+
https://learn.netdata.cloud/docs/installing/native-linux-distribution-packages#manual-setup-of-deb-packages[external] (*1.43.0*)
127129
| C
128130
| https://github.com/netdata/netdata[65.5k]
131+
| Only real-time data by default,
132+
but multiple https://learn.netdata.cloud/docs/exporting[export destinations] may be configured.
133+
| https://www.netdata.cloud/integrations/snmp-devices/[Yes] (requires `netdata-plugin-go`)
129134
|
130-
|
131-
|
132-
|
133-
|
134-
|
135+
| https://www.netdata.cloud/integrations/prometheus-endpoint/[Yes]
136+
| External (Apache) or built-in
137+
| Plug-ins can be written in _Bash_ or _Python_.
135138

136139
| https://grafana.com[Grafana]
137140
| https://grafana.com/docs/grafana/latest/setup-grafana/installation/debian/#install-from-apt-repository[external]
@@ -160,12 +163,15 @@
160163
| https://openitcockpit.io/download_server/[external]
161164
| PHP
162165
| https://github.com/it-novum/openITCOCKPIT[229]
163-
|
164-
|
165-
|
166-
|
167-
|
168-
|
166+
| RRDTool, Redis
167+
|
168+
| https://docs.openitcockpit.io/en/beginners/monitoring-nrpe/[Yes]
169+
| https://docs.openitcockpit.io/en/monitoring/prometheus/[Yes]
170+
| External (Nginx)
171+
| Conflicts with _Apache_.
172+
Automatically installs _Grafana_.
173+
Pulls and starts images of https://pptr.dev[_Puppeteer_] and _Nodejs_.
174+
169175

170176
| https://pandorafms.com[Pandora FMS]
171177
| standard (agent only) and https://pandorafms.com/manual/!current/en/documentation/02_installation/01_installing[external] (server)
@@ -179,3 +185,21 @@
179185
| Dozens of dependencies, installation script intended only for Ubuntu Linux and
180186
can only be run as `root`.
181187
|===
188+
189+
== Sample Apache configuration for Netdata
190+
191+
[source,apacheconfig]
192+
----
193+
<IfModule mod_proxy.c>
194+
ProxyRequests Off
195+
ProxyPreserveHost On
196+
197+
ProxyPass /netdata http://127.0.0.1:19999 connectiontimeout=5 timeout=30 keepalive=on
198+
ProxyPassReverse /netdata http://127.0.0.1:19999
199+
</IfModule>
200+
201+
<IfModule mod_rewrite.c>
202+
RewriteEngine On
203+
RewriteRule ^/netdata$ /netdata/ [L,R=301]
204+
</IfModule>
205+
----

0 commit comments

Comments
 (0)