pw-profiler: Move clients' legend away from graph data

With a large number of clients, some of them might be obscured by the
graph. Separate out the legend for now. We might be able to do better
formatting, but for now, this should do.
This commit is contained in:
Arun Raghavan 2024-07-17 08:11:49 -04:00 committed by Wim Taymans
parent 585106df04
commit ab5fadec2b

View file

@ -356,6 +356,7 @@ static void dump_scripts(struct data *d)
"set terminal svg\n"
"set multiplot\n"
"set grid\n"
"set key tmargin\n"
"set title \"Clients end date (scheduled -> finished)\"\n"
"set xlabel \"audio cycles\"\n"
"set ylabel \"usec\"\n"
@ -386,6 +387,7 @@ static void dump_scripts(struct data *d)
"set terminal svg\n"
"set multiplot\n"
"set grid\n"
"set key tmargin\n"
"set title \"Clients scheduling latency (scheduled -> active)\"\n"
"set xlabel \"audio cycles\"\n"
"set ylabel \"usec\"\n"
@ -413,6 +415,7 @@ static void dump_scripts(struct data *d)
"set terminal svg\n"
"set multiplot\n"
"set grid\n"
"set key tmargin\n"
"set title \"Clients duration (active -> finished)\"\n"
"set xlabel \"audio cycles\"\n"
"set ylabel \"usec\"\n"