1
0
mirror of https://git.yoctoproject.org/poky synced 2026-05-09 17:39:31 +00:00

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
+2 -1
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):