From 91c4f173b1803a7d9cfddcfb401cbfd924ee49f0 Mon Sep 17 00:00:00 2001 From: nicolargo Date: Fri, 29 Dec 2017 18:40:39 +0100 Subject: [PATCH] Make plugins disable and export CLI option dynamical #1173 --- NEWS | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/NEWS b/NEWS index 80f28856..ea511557 100644 --- a/NEWS +++ b/NEWS @@ -11,6 +11,7 @@ Enhancements and new features: * A way to have only REST API available and disable WEB GUI access #1149 * Docker module doesn't export details about stopped containers #1152 * Add dynamic fields in all sections of the configuration file #1204 + * Make plugins disable and export CLI option dynamical #1173 * Add a light mode for the console UI #1165 * Refactor InfluxDB (API is now stable) #1166 @@ -33,20 +34,34 @@ Backward-incompatible changes: * Minimum supported Docker API version is now 1.21 (Docker plugins) * Support for InfluxDB < 0.9 is deprecated (InfluxDB exporter) + * --disable- no longer available (use --disable-plugin ) + * --export- no longer available (use --export ) News command line options: --disable-webui Disable the WebUI (only Restful API will respond) --enable-light Enable the light mode for the UI interface + --modules-list Display plugins and exporters list + --disable-plugin plugin1,plugin2 + Disable a list of comma separated plugins + --export exporter1,exporter2 + Export stats to a comma separated exporters News configuration keys in the glances.conf file: +Docker plugin (related to #1152) + [docker] # By default, Glances only display running containers # Set the following key to True to display all containers all=False +All configuration file values (related to #1204) + [influxdb] + # It is possible to use dynamic system command + prefix=`hostname` + tags=foo:bar,spam:eggs,system:`uname -a` ============================================================================== Glances Version 2