deprecate str
This commit is contained in:
parent
e44d8b32ae
commit
5e35db615d
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue