|
115 | 115 | | https://packagecloud.io/app/sensu/stable/search?dist=debian%2Fbullseye[external]
|
116 | 116 | | Go, previously Ruby
|
117 | 117 | | https://github.com/sensu/sensu-go[922]
|
| 118 | +| PostgreSQL |
118 | 119 | |
|
119 | 120 | |
|
120 | 121 | |
|
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`. |
124 | 125 |
|
125 | 126 | | 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*) |
127 | 129 | | C
|
128 | 130 | | 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`) |
129 | 134 | |
|
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_. |
135 | 138 |
|
136 | 139 | | https://grafana.com[Grafana]
|
137 | 140 | | https://grafana.com/docs/grafana/latest/setup-grafana/installation/debian/#install-from-apt-repository[external]
|
|
160 | 163 | | https://openitcockpit.io/download_server/[external]
|
161 | 164 | | PHP
|
162 | 165 | | 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 | + |
169 | 175 |
|
170 | 176 | | https://pandorafms.com[Pandora FMS]
|
171 | 177 | | standard (agent only) and https://pandorafms.com/manual/!current/en/documentation/02_installation/01_installing[external] (server)
|
|
179 | 185 | | Dozens of dependencies, installation script intended only for Ubuntu Linux and
|
180 | 186 | can only be run as `root`.
|
181 | 187 | |===
|
| 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