summaryrefslogtreecommitdiffstats
path: root/collectors/python.d.plugin/springboot/springboot.chart.py
diff options
context:
space:
mode:
Diffstat (limited to 'collectors/python.d.plugin/springboot/springboot.chart.py')
-rw-r--r--collectors/python.d.plugin/springboot/springboot.chart.py15
1 files changed, 8 insertions, 7 deletions
diff --git a/collectors/python.d.plugin/springboot/springboot.chart.py b/collectors/python.d.plugin/springboot/springboot.chart.py
index 7df37e1d0..eec870ebf 100644
--- a/collectors/python.d.plugin/springboot/springboot.chart.py
+++ b/collectors/python.d.plugin/springboot/springboot.chart.py
@@ -6,13 +6,14 @@
import json
from bases.FrameworkServices.UrlService import UrlService
-# default module values (can be overridden per job in `config`)
-# update_every = 2
-priority = 60000
-retries = 60
-
-DEFAULT_ORDER = ['response_code', 'threads', 'gc_time', 'gc_ope', 'heap']
+DEFAULT_ORDER = [
+ 'response_code',
+ 'threads',
+ 'gc_time',
+ 'gc_ope',
+ 'heap',
+]
DEFAULT_CHARTS = {
'response_code': {
@@ -60,7 +61,7 @@ DEFAULT_CHARTS = {
]
},
'heap': {
- 'options': [None, "Heap Memory Usage", "KB", "heap memory", "springboot.heap", "area"],
+ 'options': [None, "Heap Memory Usage", "KiB", "heap memory", "springboot.heap", "area"],
'lines': [
["heap_committed", 'committed', "absolute"],
["heap_used", 'used', "absolute"],