summaryrefslogtreecommitdiffstats
path: root/web
diff options
context:
space:
mode:
authorChris <github.account@chrigel.net>2018-02-25 22:47:13 +0100
committerChris <github.account@chrigel.net>2018-02-25 22:57:28 +0100
commit911d51e1ec4bc3f33cee923e5d2ec3b006da44b7 (patch)
tree7b9fd0aba91290e707f0745656daabf066de396f /web
parent2d1118f788690c8e1e9c2f20e2b327184437813b (diff)
Renaming charts and dimension in httpcheck
Diffstat (limited to 'web')
-rw-r--r--web/dashboard_info.js11
1 files changed, 7 insertions, 4 deletions
diff --git a/web/dashboard_info.js b/web/dashboard_info.js
index aea3214acd..f4df160c64 100644
--- a/web/dashboard_info.js
+++ b/web/dashboard_info.js
@@ -1138,14 +1138,17 @@ netdataDashboard.context = {
'httpcheck.responsetime': {
info: 'The <code>response time</code> describes the time passed between request and response. ' +
- 'The minimum is <code>0.1 ms</code> except on errors, where it will be <code>0.0 ms</code>. ' +
'Currently, the accuracy of the response time is low and should be used as reference only.'
},
- 'httpcheck.error': {
+ 'httpcheck.responselength': {
+ info: 'The <code>response length</code> counts the number of characters in the response body. For static pages, this should be mostly constant.'
+ },
+
+ 'httpcheck.status': {
valueRange: "[0, 1]",
- info: 'The <code>error</code> codes are returned by the plugin when it could verify the availability of the webserver. ' +
- 'Each error dimension will have a value of <code>1</code> if triggered. Dimension <code>success</code> is <code>1</code> if all constraints are satisfied.' +
+ info: 'This chart verifies the response of the webserver. Each status dimension will have a value of <code>1</code> if triggered. ' +
+ 'Dimension <code>success</code> is <code>1</code> only if all constraints are satisfied.' +
'This chart is most useful for alarms or third-party apps.'
},