summaryrefslogtreecommitdiffstats
path: root/src/pybind/mgr/telegraf/utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/pybind/mgr/telegraf/utils.py')
-rw-r--r--src/pybind/mgr/telegraf/utils.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/pybind/mgr/telegraf/utils.py b/src/pybind/mgr/telegraf/utils.py
new file mode 100644
index 000000000..4c7fd1cad
--- /dev/null
+++ b/src/pybind/mgr/telegraf/utils.py
@@ -0,0 +1,20 @@
+def format_string(key):
+ if isinstance(key, str):
+ key = key.replace(',', r'\,')
+ key = key.replace(' ', r'\ ')
+ key = key.replace('=', r'\=')
+ return key
+
+
+def format_value(value):
+ if isinstance(value, str):
+ value = value.replace('"', '\"')
+ value = u'"{0}"'.format(value)
+ elif isinstance(value, bool):
+ value = str(value)
+ elif isinstance(value, int):
+ value = "{0}i".format(value)
+ elif isinstance(value, float):
+ value = str(value)
+ return value
+