bitbake: bitbake-hashclient: Output stats in JSON format

Outputting the stats in JSON format makes more sense as it's easier for
a downstream tool to parse if desired.

(Bitbake rev: 3a18066e479ab06bdb08e258fc4aacad5e73222e)

Signed-off-by: Joshua Watt <JPEWhacker@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Joshua Watt
2023-11-03 08:26:36 -06:00
committed by Richard Purdie
parent 92a9d6d55d
commit a607f435de
2 changed files with 4 additions and 2 deletions

View File

@@ -15,6 +15,7 @@ import threading
import time
import warnings
import netrc
import json
warnings.simplefilter("default")
try:
@@ -56,7 +57,7 @@ def main():
s = client.reset_stats()
else:
s = client.get_stats()
pprint.pprint(s)
print(json.dumps(s, sort_keys=True, indent=4))
return 0
def handle_stress(args, client):

View File

@@ -815,7 +815,8 @@ class TestHashEquivalenceClient(HashEquivalenceTestSetup, unittest.TestCase):
return "unix://" + os.path.join(self.temp_dir.name, 'sock%d' % server_idx)
def test_stats(self):
self.run_hashclient(["--address", self.server_address, "stats"], check=True)
p = self.run_hashclient(["--address", self.server_address, "stats"], check=True)
json.loads(p.stdout)
def test_stress(self):
self.run_hashclient(["--address", self.server_address, "stress"], check=True)