telemetry: fix Linux bundles 40/35840/3
authorViliam Luc <vluc@cisco.com>
Thu, 31 Mar 2022 08:48:20 +0000 (10:48 +0200)
committerPeter Mikus <pmikus@cisco.com>
Thu, 31 Mar 2022 12:44:44 +0000 (12:44 +0000)
Signed-off-by: Viliam Luc <vluc@cisco.com>
Change-Id: I71c795c211652f353d3afd81908d04969dd3e067

resources/tools/telemetry/bundle_bpf.py
resources/tools/telemetry/serializer.py

index 77bc9ac..655152c 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (c) 2021 Cisco and/or its affiliates.
+# Copyright (c) 2022 Cisco and/or its affiliates.
 # Licensed under the Apache License, Version 2.0 (the "License");
 # you may not use this file except in compliance with the License.
 # You may obtain a copy of the License at:
@@ -96,7 +96,7 @@ class BundleBpf:
                     labels = dict()
                     item[u"name"] = metric[u"name"]
                     item[u"value"] = val.value
-                    for label in metric[u"labels"]:
+                    for label in metric[u"labelnames"]:
                         labels[label] = getattr(key, label)
                     item[u"labels"] = labels
                     self.api_replies_list.append(item)
index e8315c8..3da857c 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (c) 2021 Cisco and/or its affiliates.
+# Copyright (c) 2022 Cisco and/or its affiliates.
 # Licensed under the Apache License, Version 2.0 (the "License");
 # you may not use this file except in compliance with the License.
 # You may obtain a copy of the License at:
@@ -94,6 +94,7 @@ class Serializer:
                     if line.labels:
                         llabel = []
                         for k, value in sorted(line.labels.items()):
+                            value = str(value)
                             value = value.replace(u"\\", r"\\")
                             value = value.replace(u"\n", r"\n")
                             value = value.replace(u'"', r'\"')