]> arthur.barton.de Git - netdata.git/commitdiff
base config
authorpaulfantom <paulfantom@gmail.com>
Tue, 21 Jun 2016 10:07:59 +0000 (12:07 +0200)
committerpaulfantom <paulfantom@gmail.com>
Tue, 21 Jun 2016 10:07:59 +0000 (12:07 +0200)
plugins.d/python.d.plugin

index 8eae5949763ff49c352937a8d3edb72178ca2c52..10526df1fcb0c484a0e826d8f431343bd478e7c8 100755 (executable)
@@ -10,6 +10,9 @@ import time
 
 
 MODULE_EXTENSION = ".chart.py"
+BASE_CONFIG = {'update_every': 1,
+               'priority': 90000,
+               'retries': 10}
 
 # -----------------------------------------------------------------------------
 # logging functions
@@ -80,9 +83,6 @@ if CONFIG_DIR[-1] != "/":
     CONFIG_DIR += "/"
 sys.path.append(MODULES_DIR + "python_modules")
 
-BASE_CONFIG = {'update_every': 1,
-               'priority': 90000,
-               'retries': 10}
 
 try:
     assert sys.version_info >= (3, 1)