mirror of
https://github.com/opnsense/plugins.git
synced 2026-06-04 22:33:07 -04:00
net-mgmt/netdata: allow to set IPv6 address (#1914)
This commit is contained in:
parent
8ef4dbf198
commit
bf8329957a
3 changed files with 15 additions and 3 deletions
|
|
@ -1,6 +1,5 @@
|
|||
PLUGIN_NAME= netdata
|
||||
PLUGIN_VERSION= 1.0
|
||||
PLUGIN_REVISION= 1
|
||||
PLUGIN_VERSION= 1.1
|
||||
PLUGIN_COMMENT= Real-time performance monitoring
|
||||
PLUGIN_DEPENDS= netdata
|
||||
PLUGIN_MAINTAINER= m.muenz@gmail.com
|
||||
|
|
|
|||
|
|
@ -7,3 +7,15 @@ happening on the systems it runs (including web servers, databases,
|
|||
applications), using highly interactive web dashboards.
|
||||
|
||||
WWW: https://github.com/netdata/netdata
|
||||
|
||||
|
||||
Plugin Changelog
|
||||
================
|
||||
|
||||
1.1
|
||||
|
||||
* Allow listening to IPv6 address
|
||||
|
||||
1.0
|
||||
|
||||
* Allow to set listening IP and port
|
||||
|
|
|
|||
|
|
@ -10,7 +10,8 @@
|
|||
# global netdata configuration
|
||||
[global]
|
||||
history = 86400
|
||||
bind to = {{ OPNsense.netdata.general.listen }}
|
||||
bind to = {% if ':' in OPNsense.netdata.general.listen %}[{{ OPNsense.netdata.general.listen }}]{% else %} {{ OPNsense.netdata.general.listen }}{% endif %}
|
||||
|
||||
disconnect idle web clients after seconds = 3600
|
||||
run as user = netdata
|
||||
web files owner = netdata
|
||||
|
|
|
|||
Loading…
Reference in a new issue