1
0
Fork 0

deprecate str

This commit is contained in:
chris 2020-10-01 11:44:08 +02:00
parent e44d8b32ae
commit 5e35db615d
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ def json_to_prom(json, prefix, instance):
prefix = prefix + "_" + v.index(item)
if type(item) is bool:
outlines += '{}_{}{{instance="{}"}} {}\n'.format(prefix, k, instance, 1 if item else 0)
if type(item) in [int, str]:
if type(item) in [int, float]:
outlines += '{}_{}{{instance="{}"}} {}\n'.format(prefix, k, instance,item)
if type(item) is dict:
outlines += json_to_prom(item, "{}_{}".format(prefix, k), instance)