Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Make it the default to. | onefang | 2020-01-04 | 1 | -0/+1 |
| | |||||
* | Work with CGI PHP. | onefang | 2020-01-04 | 2 | -3/+4 |
| | |||||
* | Add redirects graphs. | onefang | 2019-12-31 | 1 | -1/+1 |
| | |||||
* | Rejig the graphs. | onefang | 2019-12-27 | 2 | -2/+2 |
| | |||||
* | Point to the apt-panopticon maintaned RRD database. | onefang | 2019-12-10 | 1 | -1/+1 |
| | |||||
* | Make it suitable for apt-panopticon. | onefang | 2019-12-10 | 2 | -4/+7 |
| | |||||
* | I want hybrid async graphs by default. | onefang | 2019-12-10 | 1 | -2/+2 |
| | |||||
* | Tweak the time spans. | onefang | 2019-12-10 | 1 | -8/+10 |
| | |||||
* | New config for "allowed" graphs, so people can hide some of them. | onefang | 2019-12-10 | 1 | -0/+3 |
| | |||||
* | A few style tweaks, mostly to a dark theme. | onefang | 2019-12-10 | 1 | -2/+14 |
| | |||||
* | Support for host categories bases on regular expression matching against ↵ | Mark Nellemann | 2015-08-26 | 1 | -0/+3 |
| | | | | host names | ||||
* | plugin: move local plugins from conf/plugin to plugin/local | Pim van den Berg | 2015-06-22 | 1 | -2/+0 |
| | |||||
* | Adding support for local plugin json to override the global stuff | David Severwright | 2015-06-22 | 1 | -0/+1 |
| | |||||
* | Adding option to show time since last update on dashboard. | David Severwright | 2014-12-13 | 1 | -0/+1 |
| | | | | Closes #110 | ||||
* | Support customized RRD URLs | Peter Wu | 2014-08-10 | 1 | -0/+5 |
| | | | | | | | | | | | Use case: I would like to bypass PHP for serving the RRD files and allow the webserver (nginx) to compress it to reduce load on the Raspberry Pi. I could go through all kinds of URL rewriting, but it is much easier to set `$CONFIG['rrd_url'] = 'rrd/{file}';` instead and add a corresponding location + alias directive to the nginx configuration. This depends on https://github.com/manuelluis/jsrrdgraph/pull/17 to avoid breaking on '='. | ||||
* | Remove from all files the ending php tag | François LASSERRE | 2014-07-23 | 1 | -2/+0 |
| | |||||
* | conf: replace [] by array() to support PHP < 5.4 | Pim van den Berg | 2014-07-22 | 1 | -1/+1 |
| | |||||
* | Use a more secure command line building method | Peter Wu | 2014-07-20 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | | | | Previously, a command is built by string concatenation. Here, the distinction between a value and multiple params got lost. Solve this by using an array for shell arguments. As the escaping is now removed from the `rrd_gen_graph` function, the canvas style needs to manually add those quotes to make the JS code still work. That only supports double-quotes, so hopefully nobody creates a name with a double quote as that would break the fragile JS command line parser. Separate the rrdtool options from the rrdtool graph command to make the `$graph_type == 'canvas'` option work (it would otherwise not understand the `rrdtool graph - -a PNG` option). Merge the SVG and PNG cases as they are the same except for the Content-Type header. Fix a missing html escape in a debug style. | ||||
* | type/default: optionally draw min/max spikes in a lighter color in graphs | Pim van den Berg | 2014-07-05 | 1 | -0/+3 |
| | | | | Closes #73 | ||||
* | Merge remote-tracking branch 'dhchen/master' | Pim van den Berg | 2014-06-24 | 1 | -1/+1 |
|\ | |||||
| * | Add support for multiple types db | Dao-hui Chen | 2014-06-11 | 1 | -1/+1 |
| | | |||||
* | | add percentile support to network traffic graphs | Pim van den Berg | 2014-06-24 | 1 | -0/+4 |
|/ | | | | | | | Set $CONFIG['percentile'] to a number and a XXth percentile line + legend will be added to all network traffic (if_octets) graphs. Closes #81 | ||||
* | graph.php: use JSON plugins instead of including PHP plugin files | Pim van den Berg | 2014-05-12 | 1 | -0/+3 |
| | | | | | | | | | | | | A couple of big changes here. A lot of logic moved to graph.php. The PHP plugin files have been rewritten to JSON. In these JSON files *everything* is optional. Also *NOT* having a JSON plugin file won't block you from having a graph. The JSON will just make the graphs prettier (by having a title, y-axis title, legend, colors, etc..). The Collectd types.db file is parsed and used to determine RRD content. When things are not defined in the JSON it will fallback to a default. | ||||
* | overview: disable showmem by default, add percent sign | Pim van den Berg | 2014-04-15 | 1 | -1/+1 |
| | | | | And change all spaces to tabs. | ||||
* | overview: show used memory percentage | Bogdan Rădulescu | 2014-04-14 | 1 | -1/+2 |
| | |||||
* | add SVG graph support | Pim van den Berg | 2014-03-23 | 1 | -1/+1 |
| | |||||
* | add rrdcached flush support | Pim van den Berg | 2014-03-22 | 1 | -0/+5 |
| | |||||
* | add graph_type "hybrid" to show canvas on detail page, png on the others | Pim van den Berg | 2014-01-12 | 1 | -1/+1 |
| | |||||
* | Add a configuration option for sync/async choice for the canvas graphs | Vincent Brillault | 2014-01-12 | 1 | -0/+3 |
| | |||||
* | graph: add configurable limit to graph width/height | Pim van den Berg | 2013-12-29 | 1 | -0/+3 |
| | | | | Closes: https://github.com/pommi/CGP/pull/34 | ||||
* | fix heigth -> height typo | Pim van den Berg | 2013-12-29 | 1 | -2/+2 |
| | |||||
* | automatic page refresh support + config setting | Pim van den Berg | 2013-12-29 | 1 | -0/+3 |
| | | | | Closes: https://github.com/pommi/CGP/pull/35 | ||||
* | Add default timezone when system one is missing | Olaf Conradi | 2013-12-28 | 2 | -0/+7 |
| | | | | Suppresses all the PHP warnings in the error logging. | ||||
* | conf: set default collectd version to 5 | Pim van den Berg | 2013-05-20 | 1 | -1/+1 |
| | |||||
* | add config option for showing smooth (curved) graphs | Pim van den Berg | 2013-05-18 | 1 | -0/+3 |
| | |||||
* | add support for graphing I/O using the negative X-axis | Pim van den Berg | 2013-05-18 | 1 | -0/+3 |
| | |||||
* | integrate jsrrdgraph in CGP | Pim van den Berg | 2013-05-18 | 1 | -0/+3 |
| | |||||
* | conf: disable overview_filter by default | Pim van den Berg | 2013-03-30 | 1 | -1/+3 |
| | | | | | It's good to have an example, but it's a bit confusing having it enabled by default. | ||||
* | add feature to show a subset of graphs from a plugin on overview page | Rohit Bhute | 2013-03-30 | 1 | -0/+2 |
| | |||||
* | detail.php: make terms configurable | Pim van den Berg | 2013-02-09 | 1 | -0/+10 |
| | |||||
* | apply datasize (bytes/bits) only to network related data | Pim van den Berg | 2012-09-05 | 1 | -1/+1 |
| | | | | As discussed in https://github.com/pommi/CGP/pull/1. | ||||
* | introduce config option datasize to show graphs in bits or bytes | Pim van den Berg | 2012-08-10 | 1 | -0/+3 |
| | | | | | | | Config setting $CONFIG['datasize'] can be set to bits or bytes to show graph data in bits or bytes. Inspired-by: Neptune Ning (Plan) <frostyplanet@gmail.com> | ||||
* | include trailing slash in config weburl variable | Pim van den Berg | 2011-10-08 | 1 | -3/+1 |
| | | | | | | | When running CGP in the root, the header didn't link to the overview page because the href was empty. Reported-by: Nikoli <Nikoli@lavabit.com> | ||||
* | include local configuration file once | Pim van den Berg | 2011-02-07 | 1 | -1/+1 |
| | | | | | When config.php was copied to config.inc.php it would result in a infinite include loop. | ||||
* | default graph time range is now configurable (not only for uptime) | Pim van den Berg | 2010-06-26 | 1 | -1/+2 |
| | |||||
* | Default time range on the summary page is now configurable | Manuel CISSÉ | 2010-06-22 | 1 | -0/+3 |
| | |||||
* | Allow to define alternate options for rrdtool in config file | Edmondo Tommasina | 2010-05-13 | 1 | -0/+3 |
| | | | | | | | | | Since I'm using a non standard installation of rrdtool, I always have to define the --font options when colling the rrdtool binary. I tried to implement this change in a general way to define locally rrdtool options in the config.local.php. Signed-off-by: Edmondo Tommasina <edmondo@eriadon.com> | ||||
* | configuration option to show load averages on overview page | Pim van den Berg | 2010-03-06 | 1 | -0/+3 |
| | |||||
* | make browser cache time for images configurable | Pim van den Berg | 2010-01-12 | 1 | -0/+3 |
| | |||||
* | make rrdtool executable configurable | Pim van den Berg | 2010-01-12 | 1 | -0/+3 |
| |