summaryrefslogtreecommitdiffstats
path: root/web
diff options
context:
space:
mode:
authorCosta Tsaousis (ktsaou) <costa@tsaousis.gr>2016-11-05 17:15:55 +0200
committerCosta Tsaousis (ktsaou) <costa@tsaousis.gr>2016-11-05 17:15:55 +0200
commitf6e50696562ef06cf9cfe380b6be75a1f54793f8 (patch)
tree1e2092ec37b18aa361ab1eba062a7a0c384c51a9 /web
parentadb4f2465b8ff0559d6b639121e05af8704425e4 (diff)
fping charts should not be zero-based; fixes #1213
Diffstat (limited to 'web')
-rw-r--r--web/dashboard_info.js10
-rw-r--r--web/index.html2
2 files changed, 3 insertions, 9 deletions
diff --git a/web/dashboard_info.js b/web/dashboard_info.js
index 2879a65c05..a67b700ff1 100644
--- a/web/dashboard_info.js
+++ b/web/dashboard_info.js
@@ -765,19 +765,13 @@ netdataDashboard.context = {
// ------------------------------------------------------------------------
// fping
- 'fping.latency': {
- valueRange: "[0, null]"
- },
-
'fping.quality': {
colors: NETDATA.colors[10],
- height: 0.5,
- valueRange: "[0, null]"
+ height: 0.5
},
'fping.packets': {
- height: 0.5,
- valueRange: "[0, null]"
+ height: 0.5
}
};
diff --git a/web/index.html b/web/index.html
index e6d93579c4..572935ce27 100644
--- a/web/index.html
+++ b/web/index.html
@@ -2555,7 +2555,7 @@
});
NETDATA.requiredJs.push({
- url: NETDATA.serverDefault + 'dashboard_info.js?v20161105-3',
+ url: NETDATA.serverDefault + 'dashboard_info.js?v20161105-4',
async: false,
isAlreadyLoaded: function() { return false; }
});