mirror of
https://github.com/scylladb/scylladb.git
synced 2026-05-22 07:42:16 +00:00
Drop the AGPL license in favor of a source-available license. See the blog post [1] for details. [1] https://www.scylladb.com/2024/12/18/why-were-moving-to-a-source-available-license/
57 lines
1.7 KiB
Python
Executable File
57 lines
1.7 KiB
Python
Executable File
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
#
|
|
# Copyright (C) 2019-present ScyllaDB
|
|
#
|
|
#
|
|
# SPDX-License-Identifier: LicenseRef-ScyllaDB-Source-Available-1.0
|
|
#
|
|
|
|
import argparse
|
|
import json
|
|
import matplotlib.pyplot as plt
|
|
|
|
cmdline_parser = argparse.ArgumentParser(formatter_class=argparse.ArgumentDefaultsHelpFormatter)
|
|
cmdline_parser.add_argument('results', nargs=1, help='JSON file with full perf_fast_forward results')
|
|
cmdline_parser.add_argument('-o', '--output', help='name of the output file')
|
|
cmdline_parser.add_argument('--histogram', action='store_true', help='plot a histogram of the frag/s results')
|
|
cmdline_parser.add_argument('--histogram-bins-count', default=50, help='number of histogram bins')
|
|
cmdline_parser.add_argument('--histogram-stats', default='frag/s', help='comma-separated list of result statistic to prepare histograms of')
|
|
|
|
args = cmdline_parser.parse_args()
|
|
|
|
results = json.loads(open(args.results[0]).read())
|
|
|
|
if args.histogram:
|
|
histogram_stats = args.histogram_stats.split(',')
|
|
|
|
stats = results['results']['stats']
|
|
|
|
dpi = 96
|
|
width = 1200
|
|
height = 400 * len(histogram_stats)
|
|
plt.figure(figsize=(width/dpi, height/dpi), dpi=dpi)
|
|
|
|
count = 0
|
|
for histogram_stat in histogram_stats:
|
|
values = [stat[histogram_stat] for stat in stats]
|
|
|
|
count = count + 1
|
|
|
|
ax = plt.subplot(len(histogram_stats), 1, count)
|
|
if count == 1:
|
|
plt.title(args.results[0])
|
|
|
|
ax.set_axisbelow(True)
|
|
plt.grid(True)
|
|
plt.ylabel('count')
|
|
plt.xlabel(histogram_stat)
|
|
plt.hist(values, int(args.histogram_bins_count))
|
|
|
|
if args.output:
|
|
plt.savefig(args.output)
|
|
else:
|
|
plt.show()
|
|
else:
|
|
print('No action chosen. Doing nothing.')
|