]> arthur.barton.de Git - netdata.git/log
netdata.git
7 years agoUpdate README.md
tech-no-logical [Tue, 10 Jan 2017 15:38:56 +0000 (16:38 +0100)]
Update README.md

7 years agoUpdate health_alarm_notify.conf
tech-no-logical [Tue, 10 Jan 2017 15:37:13 +0000 (16:37 +0100)]
Update health_alarm_notify.conf

Added messagebird.com SMS config options

7 years agoUpdate alarm-notify.sh
tech-no-logical [Tue, 10 Jan 2017 15:25:50 +0000 (16:25 +0100)]
Update alarm-notify.sh

Added messagebird.com SMS provider

7 years agoMerge pull request #1542 from tycho/fix-cpufreq-accuracy
Costa Tsaousis [Tue, 10 Jan 2017 13:09:03 +0000 (15:09 +0200)]
Merge pull request #1542 from tycho/fix-cpufreq-accuracy

cpufreq.chart.py: support dynamically falling back from accurate to inaccurate mode

7 years agocpufreq.chart.py: support dynamically falling back from accurate to inaccurate mode
Steven Noonan [Tue, 10 Jan 2017 12:46:42 +0000 (04:46 -0800)]
cpufreq.chart.py: support dynamically falling back from accurate to inaccurate mode

If we switch the 'schedutil' cpufreq governor on, the 'time_in_state'
data becomes useless. And since cpufreq governors can be switched at any
time, we might as well make it possible to support transitioning between
governors without any bogus data appearing in our charts.

Before this commit, switching to 'schedutil' results in zeroed values,
and switching back to any other governor causes a huge spike datapoint
in the timeline.

Signed-off-by: Steven Noonan <steven@uplinklabs.net>
7 years agoMerge pull request #1541 from simonnagl/ignore/macOS
Costa Tsaousis [Tue, 10 Jan 2017 12:23:11 +0000 (14:23 +0200)]
Merge pull request #1541 from simonnagl/ignore/macOS

Ignore .DS_Store

7 years agoIgnore .DS_Store
Simon Nagl (privat) [Tue, 10 Jan 2017 12:07:40 +0000 (13:07 +0100)]
Ignore .DS_Store

In the Apple macOS operating system, .DS_Store is a file that stores custom attributes of its containing folder (https://en.wikipedia.org/wiki/.DS_Store)

7 years agoMerge pull request #1535 from tycho/implement-cpuidle-plugin
Costa Tsaousis [Tue, 10 Jan 2017 07:50:31 +0000 (09:50 +0200)]
Merge pull request #1535 from tycho/implement-cpuidle-plugin

cpuidle.chart.py: add plugin for monitoring cpuidle states

7 years agocpuidle.chart.py: add plugin for monitoring cpuidle states
Steven Noonan [Mon, 9 Jan 2017 22:20:05 +0000 (14:20 -0800)]
cpuidle.chart.py: add plugin for monitoring cpuidle states

Signed-off-by: Steven Noonan <steven@uplinklabs.net>
7 years agoMerge pull request #1536 from vlvkobal/master
Costa Tsaousis [Mon, 9 Jan 2017 23:18:08 +0000 (01:18 +0200)]
Merge pull request #1536 from vlvkobal/master

macOS plugin: add IPv4 and IPv6 charts

7 years agoMerge pull request #1534 from tycho/fix-cpufreq-accuracy
Costa Tsaousis [Mon, 9 Jan 2017 22:56:56 +0000 (00:56 +0200)]
Merge pull request #1534 from tycho/fix-cpufreq-accuracy

cpufreq.chart.py: add more accurate cpufreq_stats-based calculations

7 years agoFix configuration labels in macOS plugin
Vladimir Kobal [Mon, 9 Jan 2017 22:00:22 +0000 (17:00 -0500)]
Fix configuration labels in macOS plugin

7 years agocpufreq.chart.py: add more accurate cpufreq_stats-based calculations
Steven Noonan [Mon, 9 Jan 2017 21:00:49 +0000 (13:00 -0800)]
cpufreq.chart.py: add more accurate cpufreq_stats-based calculations

There were two major problems with this module:

- The 'cpuN' names weren't accurate. The 'self.paths.sort()' was trying
  to compensate for os.walk() enumerating the CPUs out of order (as any
  directory enumeration will do). Unfortunately the sort() function is
  alphabetical, so it would result in a list of paths like this:

    [
        '/sys/.../cpu0/...'
        '/sys/.../cpu1/...'
        '/sys/.../cpu11/...'
        '/sys/.../cpu12/...'
        ...
    ]

  So the chart for cpu2 would actually map to cpu11's stats.

  This can be corrected by extracting the 'cpuN' value that's already
  inside the path anyway.

- The scaling_cur_freq value is an instantaneous value. It only
  represents the current processor P-state at the time it was read, and
  doesn't account for the other 999ms that netdata wasn't looking at the
  value.

  This can be corrected by using data from cpufreq_stats, which includes
  P-state residency statistics. Note that the values in cpufreq_stats
  aren't always valid (e.g. if the cpufreq governor is set to
  'schedutil', the statistic files exist but are are empty), so we can
  just fall back to the inaccurate scaling_cur_freq method if necessary.

Signed-off-by: Steven Noonan <steven@uplinklabs.net>
7 years agoAdd IPv6 charts to macOS plugin
Vladimir Kobal [Mon, 9 Jan 2017 21:45:09 +0000 (16:45 -0500)]
Add IPv6 charts to macOS plugin

7 years agoAdd IPv4 packets, errors and fragments charts to macOS plugin
Vladimir Kobal [Mon, 9 Jan 2017 19:55:56 +0000 (14:55 -0500)]
Add IPv4 packets, errors and fragments charts to macOS plugin

7 years agoAdd IPv4 ICMP charts to macOS plugin
Vladimir Kobal [Mon, 9 Jan 2017 19:50:04 +0000 (14:50 -0500)]
Add IPv4 ICMP charts to macOS plugin

7 years agoMerge pull request #1533 from vlvkobal/master
Costa Tsaousis [Mon, 9 Jan 2017 19:43:57 +0000 (21:43 +0200)]
Merge pull request #1533 from vlvkobal/master

Fix for ifi_oqdrops field on previous FreeBSD releases and FreeNAS

7 years agoAdd IPv4 UDP charts to macOS plugin
Vladimir Kobal [Mon, 9 Jan 2017 19:25:00 +0000 (14:25 -0500)]
Add IPv4 UDP charts to macOS plugin

7 years agoAdd IPv4 TCP charts to macOS plugin
Vladimir Kobal [Mon, 9 Jan 2017 18:51:43 +0000 (13:51 -0500)]
Add IPv4 TCP charts to macOS plugin

7 years agoFix for ifi_oqdrops field on previous FreeBSD releases and FreeNAS
Vladimir Kobal [Mon, 9 Jan 2017 18:31:38 +0000 (13:31 -0500)]
Fix for ifi_oqdrops field on previous FreeBSD releases and FreeNAS

7 years agoMerge pull request #1529 from pjz/better_ipfs
Costa Tsaousis [Mon, 9 Jan 2017 18:21:39 +0000 (20:21 +0200)]
Merge pull request #1529 from pjz/better_ipfs

More IPFS stats in less code

7 years agoMerge pull request #1531 from vlvkobal/master
Costa Tsaousis [Mon, 9 Jan 2017 13:34:40 +0000 (15:34 +0200)]
Merge pull request #1531 from vlvkobal/master

Fix compilation errors on FreeBSD 10.3

7 years agoMerge pull request #1530 from l2isbad/mdstat_minor_fix
Costa Tsaousis [Mon, 9 Jan 2017 08:38:06 +0000 (10:38 +0200)]
Merge pull request #1530 from l2isbad/mdstat_minor_fix

mdstat_fix

7 years agofix: check should not return True if no active arrays in mdstat
Ilya [Mon, 9 Jan 2017 07:51:08 +0000 (16:51 +0900)]
fix: check should not return True if no active arrays in mdstat

7 years agoFix compilation errors on FreeBSD 10.3
Vladimir Kobal [Mon, 9 Jan 2017 07:05:37 +0000 (09:05 +0200)]
Fix compilation errors on FreeBSD 10.3

7 years agoMore IPFS stats in less code
Paul Jimenez [Mon, 9 Jan 2017 06:12:29 +0000 (01:12 -0500)]
More IPFS stats in less code

7 years agoMerge pull request #1528 from ktsaou/master
Costa Tsaousis [Sun, 8 Jan 2017 19:38:34 +0000 (21:38 +0200)]
Merge pull request #1528 from ktsaou/master

allow nonzero setting to work when dimensions are set

7 years agoallow nonzero setting to work when dimensions are set; fixes #1514
Costa Tsaousis (ktsaou) [Sun, 8 Jan 2017 19:35:42 +0000 (21:35 +0200)]
allow nonzero setting to work when dimensions are set; fixes #1514

7 years agoMerge pull request #1524 from ktsaou/master
Costa Tsaousis [Sat, 7 Jan 2017 17:56:56 +0000 (19:56 +0200)]
Merge pull request #1524 from ktsaou/master

use autoconf for checking gcc function attributes

7 years agouse autoconf for checking gcc function attributes
Costa Tsaousis (ktsaou) [Sat, 7 Jan 2017 17:54:48 +0000 (19:54 +0200)]
use autoconf for checking gcc function attributes

7 years agoMerge pull request #1520 from ktsaou/master
Costa Tsaousis [Sat, 7 Jan 2017 17:00:27 +0000 (19:00 +0200)]
Merge pull request #1520 from ktsaou/master

codeclimate suggested changes and another tcp resets alarm

7 years agoupdated configs.signatures
Costa Tsaousis (ktsaou) [Sat, 7 Jan 2017 16:57:59 +0000 (18:57 +0200)]
updated configs.signatures

7 years agoupdated README with codeclimate badge
Costa Tsaousis (ktsaou) [Sat, 7 Jan 2017 16:34:29 +0000 (18:34 +0200)]
updated README with codeclimate badge

7 years agoimprovements suggested by codeclimate
Costa Tsaousis (ktsaou) [Sat, 7 Jan 2017 13:05:32 +0000 (15:05 +0200)]
improvements suggested by codeclimate

7 years agofixed description of alarm
Costa Tsaousis (ktsaou) [Sat, 7 Jan 2017 01:20:13 +0000 (03:20 +0200)]
fixed description of alarm

7 years agochanges suggested by codeclimate
Costa Tsaousis (ktsaou) [Fri, 6 Jan 2017 23:23:32 +0000 (01:23 +0200)]
changes suggested by codeclimate

7 years agoadd alarm for TCP/AttemptsFail spikes
Costa Tsaousis (ktsaou) [Fri, 6 Jan 2017 19:59:28 +0000 (21:59 +0200)]
add alarm for TCP/AttemptsFail spikes

7 years agodo not show role in alarms if there is no warning or critical condition
Costa Tsaousis (ktsaou) [Fri, 6 Jan 2017 19:58:48 +0000 (21:58 +0200)]
do not show role in alarms if there is no warning or critical condition

7 years agoadd/update codeclimate config files
Costa Tsaousis (ktsaou) [Fri, 6 Jan 2017 16:15:51 +0000 (18:15 +0200)]
add/update codeclimate config files

7 years agoMerge pull request #1522 from tryncatchDE/dashboard_calculation_fix
Costa Tsaousis [Sat, 7 Jan 2017 12:25:04 +0000 (14:25 +0200)]
Merge pull request #1522 from tryncatchDE/dashboard_calculation_fix

Fixed calculation in index.html

7 years agoFixed calculation in index.html
tryncatchDE [Sat, 7 Jan 2017 12:11:28 +0000 (13:11 +0100)]
Fixed calculation in index.html

Now the length of history depend on setting: update every

7 years agoMerge pull request #1521 from jonathonwiebe/patch-1
Costa Tsaousis [Sat, 7 Jan 2017 00:52:02 +0000 (02:52 +0200)]
Merge pull request #1521 from jonathonwiebe/patch-1

Grammar correction

7 years agoGrammar correction
Jonathon Wiebe [Fri, 6 Jan 2017 22:05:37 +0000 (15:05 -0700)]
Grammar correction

7 years agoadded codeclimate coverage
Costa Tsaousis (ktsaou) [Fri, 6 Jan 2017 16:01:57 +0000 (18:01 +0200)]
added codeclimate coverage

7 years agoMerge pull request #1517 from l2isbad/update_python.d_readme
Costa Tsaousis [Fri, 6 Jan 2017 11:07:22 +0000 (13:07 +0200)]
Merge pull request #1517 from l2isbad/update_python.d_readme

Update python.d readme

7 years agoadd bind_rndc to python README
Ilya [Fri, 6 Jan 2017 09:28:42 +0000 (18:28 +0900)]
add bind_rndc to python README

7 years agoadd isc_dhcpd to python README
Ilya [Fri, 6 Jan 2017 09:09:32 +0000 (18:09 +0900)]
add isc_dhcpd to python README

7 years agoMerge pull request #1516 from l2isbad/bind_rndc_enhancements
Costa Tsaousis [Fri, 6 Jan 2017 09:03:45 +0000 (11:03 +0200)]
Merge pull request #1516 from l2isbad/bind_rndc_enhancements

bind_rndc: incoming/outgoing queries charts added

7 years agominor fix
Ilya [Fri, 6 Jan 2017 08:50:39 +0000 (17:50 +0900)]
minor fix

7 years agoadd mdstat to python README
Ilya [Fri, 6 Jan 2017 08:47:47 +0000 (17:47 +0900)]
add mdstat to python README

7 years agoadd fail2ban to python README
Ilya [Fri, 6 Jan 2017 08:28:29 +0000 (17:28 +0900)]
add fail2ban to python README

7 years agoadd ovpn_status_log to python README
Ilya [Fri, 6 Jan 2017 08:16:03 +0000 (17:16 +0900)]
add ovpn_status_log to python README

7 years agobind_rndc: incoming/outgoing queries charts added
Ilya [Fri, 6 Jan 2017 04:19:51 +0000 (13:19 +0900)]
bind_rndc: incoming/outgoing queries charts added

7 years agoMerge pull request #1515 from vlvkobal/master
Costa Tsaousis [Thu, 5 Jan 2017 23:45:18 +0000 (01:45 +0200)]
Merge pull request #1515 from vlvkobal/master

FreeBSD plugin: add disk space and inodes utilization charts

7 years agoAdd disk space and inodes utilization charts to FreeBSD plugin
Vladimir Kobal [Thu, 5 Jan 2017 23:17:01 +0000 (01:17 +0200)]
Add disk space and inodes utilization charts to FreeBSD plugin

7 years agoMerge pull request #1512 from ktsaou/master
Costa Tsaousis [Thu, 5 Jan 2017 01:13:36 +0000 (03:13 +0200)]
Merge pull request #1512 from ktsaou/master

updated configs.signatures and CDN un-caching

7 years agoupdated versions for CDN uncaching
Costa Tsaousis (ktsaou) [Thu, 5 Jan 2017 01:10:54 +0000 (03:10 +0200)]
updated versions for CDN uncaching

7 years agoupdated configs.signatures
Costa Tsaousis (ktsaou) [Thu, 5 Jan 2017 01:00:11 +0000 (03:00 +0200)]
updated configs.signatures

7 years agoMerge pull request #1504 from ktsaou/master
Costa Tsaousis [Thu, 5 Jan 2017 00:58:11 +0000 (02:58 +0200)]
Merge pull request #1504 from ktsaou/master

prometheus support & shell scripts integration with netdata

7 years agolayout trashing prevention is problematic on IE and safari - the display is out of...
Costa Tsaousis (ktsaou) [Thu, 5 Jan 2017 00:55:52 +0000 (02:55 +0200)]
layout trashing prevention is problematic on IE and safari - the display is out of sync; removing it again

7 years agoMerge pull request #1501 from l2isbad/bind_rndc_plugin
Costa Tsaousis [Thu, 5 Jan 2017 00:27:55 +0000 (02:27 +0200)]
Merge pull request #1501 from l2isbad/bind_rndc_plugin

Bind rndc plugin

7 years agoMerge pull request #1509 from l2isbad/mdstat_improvements
Costa Tsaousis [Thu, 5 Jan 2017 00:26:58 +0000 (02:26 +0200)]
Merge pull request #1509 from l2isbad/mdstat_improvements

mdstat improvements

7 years agomore work on preventing web browser layout trashing on loading
Costa Tsaousis (ktsaou) [Thu, 5 Jan 2017 00:05:22 +0000 (02:05 +0200)]
more work on preventing web browser layout trashing on loading

7 years agoreplace active with failed in mdstat alarm conf
Ilya [Wed, 4 Jan 2017 09:18:09 +0000 (18:18 +0900)]
replace active with failed in mdstat alarm conf

7 years agoreshape status added to mdstat
Ilya [Wed, 4 Jan 2017 09:04:50 +0000 (18:04 +0900)]
reshape status added to mdstat

7 years agoMerge pull request #1506 from vlvkobal/master
Costa Tsaousis [Wed, 4 Jan 2017 01:23:55 +0000 (03:23 +0200)]
Merge pull request #1506 from vlvkobal/master

FreeBSD plugin: add IPv4, IPv6 and ICMPv6 charts

7 years agoavoid web browser layout trashing when the dashboard is loaded; gained 500ms to 1000m...
Costa Tsaousis (ktsaou) [Wed, 4 Jan 2017 01:05:27 +0000 (03:05 +0200)]
avoid web browser layout trashing when the dashboard is loaded; gained 500ms to 1000ms when loading the dashboard

7 years agoAdd ICMPv6 charts to FreeBSD plugin
Vladimir Kobal [Tue, 3 Jan 2017 22:26:19 +0000 (00:26 +0200)]
Add ICMPv6 charts to FreeBSD plugin

7 years agoexpose netdata alarms in allmetrics for shell
Costa Tsaousis (ktsaou) [Tue, 3 Jan 2017 22:24:11 +0000 (00:24 +0200)]
expose netdata alarms in allmetrics for shell

7 years agoadded the VISIBLETOTAL variable and fixed the error message about an invalid format...
Costa Tsaousis (ktsaou) [Tue, 3 Jan 2017 21:56:07 +0000 (23:56 +0200)]
added the VISIBLETOTAL variable and fixed the error message about an invalid format being requested

7 years agoMerge pull request #1505 from djmattyg007/add_rtorrent_support
Costa Tsaousis [Tue, 3 Jan 2017 21:47:07 +0000 (23:47 +0200)]
Merge pull request #1505 from djmattyg007/add_rtorrent_support

Add rTorrent to the default list of torrent applications

7 years agoAdd rTorrent to the default list of torrent applications
Matthew Gamble [Tue, 3 Jan 2017 21:38:53 +0000 (08:38 +1100)]
Add rTorrent to the default list of torrent applications

7 years agoadded allmetrics call to swagger
Costa Tsaousis (ktsaou) [Tue, 3 Jan 2017 21:35:45 +0000 (23:35 +0200)]
added allmetrics call to swagger

7 years agoadded SHELL support for allmetrics all call
Costa Tsaousis (ktsaou) [Tue, 3 Jan 2017 21:35:31 +0000 (23:35 +0200)]
added SHELL support for allmetrics all call

7 years agofixed a memory leak in cgroups periodic update job
Costa Tsaousis (ktsaou) [Tue, 3 Jan 2017 21:34:49 +0000 (23:34 +0200)]
fixed a memory leak in cgroups periodic update job

7 years agoremove all dots from prometheus names; #1497
Costa Tsaousis (ktsaou) [Tue, 3 Jan 2017 20:48:02 +0000 (22:48 +0200)]
remove all dots from prometheus names; #1497

7 years agoupdated prometheus support according to #1497
Costa Tsaousis (ktsaou) [Tue, 3 Jan 2017 20:43:02 +0000 (22:43 +0200)]
updated prometheus support according to #1497

7 years agoAdd IPv6 packets, errors and fragments charts to FreeBSD plugin
Vladimir Kobal [Tue, 3 Jan 2017 19:22:47 +0000 (21:22 +0200)]
Add IPv6 packets, errors and fragments charts to FreeBSD plugin

7 years agoadd prometheus support to the API; fixes #1497
Costa Tsaousis (ktsaou) [Tue, 3 Jan 2017 19:11:42 +0000 (21:11 +0200)]
add prometheus support to the API; fixes #1497

7 years agoAdd IPv4 packets, errors and fragments charts to FreeBSD plugin
Vladimir Kobal [Tue, 3 Jan 2017 16:40:15 +0000 (18:40 +0200)]
Add IPv4 packets, errors and fragments charts to FreeBSD plugin

7 years agoFix displayed data multiplication in mem.committed in FreeBSD plugin
Vladimir Kobal [Tue, 3 Jan 2017 14:20:51 +0000 (16:20 +0200)]
Fix displayed data multiplication in mem.committed in FreeBSD plugin

7 years agoMerge pull request #1502 from ktsaou/master
Costa Tsaousis [Tue, 3 Jan 2017 13:04:05 +0000 (15:04 +0200)]
Merge pull request #1502 from ktsaou/master

added twitter/facebook link to dashboard

7 years agoadded twitter/facebook link to dashboard
Costa Tsaousis (ktsaou) [Tue, 3 Jan 2017 12:57:48 +0000 (14:57 +0200)]
added twitter/facebook link to dashboard

7 years agoadd bind_rndc plugin, conf and alarm to Makefiles
Ilya [Tue, 3 Jan 2017 09:02:45 +0000 (18:02 +0900)]
add bind_rndc plugin, conf and alarm to Makefiles

7 years agoalarm for bind_rndc plugin added
Ilya [Tue, 3 Jan 2017 08:19:29 +0000 (17:19 +0900)]
alarm for bind_rndc plugin added

7 years agobind_rndc plugin configuration file added
Ilya [Tue, 3 Jan 2017 08:10:15 +0000 (17:10 +0900)]
bind_rndc plugin configuration file added

7 years agoadd bind_rndc plugin
Ilya [Tue, 3 Jan 2017 07:40:43 +0000 (16:40 +0900)]
add bind_rndc plugin

7 years agoMerge pull request #1500 from ktsaou/master
Costa Tsaousis [Tue, 3 Jan 2017 01:17:06 +0000 (03:17 +0200)]
Merge pull request #1500 from ktsaou/master

do not report as error plugins calling DISABLE

7 years agodo not report as error plugins calling DISABLE; fixes #1498
Costa Tsaousis [Tue, 3 Jan 2017 01:13:42 +0000 (03:13 +0200)]
do not report as error plugins calling DISABLE; fixes #1498

7 years agoMerge pull request #1499 from vlvkobal/master
Costa Tsaousis [Tue, 3 Jan 2017 00:28:09 +0000 (02:28 +0200)]
Merge pull request #1499 from vlvkobal/master

FreeBSD plugin: add IPv4 TCP, UDP and ICMP charts

7 years agoAdd IPv4 ICMP charts to FreeBSD plugin
Vladimir Kobal [Mon, 2 Jan 2017 23:04:46 +0000 (01:04 +0200)]
Add IPv4 ICMP charts to FreeBSD plugin

7 years agoAdd IPv4 UDP charts to FreeBSD plugin
Vladimir Kobal [Mon, 2 Jan 2017 22:02:01 +0000 (00:02 +0200)]
Add IPv4 UDP charts to FreeBSD plugin

7 years agoAdd IPv4 TCP charts to FreeBSD plugin
Vladimir Kobal [Mon, 2 Jan 2017 21:15:47 +0000 (23:15 +0200)]
Add IPv4 TCP charts to FreeBSD plugin

7 years agoMerge pull request #1496 from ktsaou/master
Costa Tsaousis [Mon, 2 Jan 2017 17:53:11 +0000 (19:53 +0200)]
Merge pull request #1496 from ktsaou/master

modified robots.txt and page descriptions to allow posting about netdata

7 years agoconvert links to my-netdata.io to https
Costa Tsaousis (ktsaou) [Mon, 2 Jan 2017 17:51:12 +0000 (19:51 +0200)]
convert links to my-netdata.io to https

7 years agoallow robots to fetch sitemap.xml
Costa Tsaousis (ktsaou) [Mon, 2 Jan 2017 17:48:30 +0000 (19:48 +0200)]
allow robots to fetch sitemap.xml

7 years agomodified robots.txt and page descriptions to allow posting on twitter and facebook
Costa Tsaousis (ktsaou) [Mon, 2 Jan 2017 17:46:39 +0000 (19:46 +0200)]
modified robots.txt and page descriptions to allow posting on twitter and facebook

7 years agoMerge pull request #1494 from ktsaou/master
Costa Tsaousis [Mon, 2 Jan 2017 14:25:24 +0000 (16:25 +0200)]
Merge pull request #1494 from ktsaou/master

enable performance metrics for virtual disks

7 years agoenable performance metrics for virtual disks
Costa Tsaousis (ktsaou) [Mon, 2 Jan 2017 14:16:40 +0000 (16:16 +0200)]
enable performance metrics for virtual disks

7 years agoMerge pull request #1493 from ktsaou/master
Costa Tsaousis [Mon, 2 Jan 2017 12:37:56 +0000 (14:37 +0200)]
Merge pull request #1493 from ktsaou/master

disk performance metrics can now be disabled per device major