1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
|
.\" SPDX-License-Identifier: MIT
.TH JITTERSAMPLES 1
.SH NAME
jittersamples \- decodes collected samples by jitterdebugger
.SH SYNOPSIS
.B jittersamples hist [OPTIONS]
.SH DESCRIPTION
.B jittersamples
prints all samples stored by jitterdebugger to standard output.
The input file is expected to be in raw format. The default output is
in CSV (Comma Separated Values) format.
The fields are:
.IP \[bu]
CPUID
.IP \[bu]
Timestamp in seconds
.IP \[bu]
Wake up latency in micro seconds
.SH OPTIONS
.TP
.BI "-h, --help"
Show help text and exit.
.TP
.BI "-f, --format" FMT
Set output format. Supported formats are CSV and HDF5. For HDF5 an
output file has to be provided via --output command line.
.TP
.BI "-o, --output" FILE
Write data to FILE instead to STDOUT.
.TP
.BI "-l, --listen" PORT
Listen on PORT for incoming samples and store the data into FILE in raw format.
.SH EXAMPLES
.EX
# jitterdebugger -o samples.raw
^C
# jittersamples samples.raw | head
0;1114.936950838;9
0;1114.937204763;3
0;1114.937458457;3
0;1114.937711970;3
0;1114.937965595;3
0;1114.938218986;3
0;1114.938472416;3
0;1114.938725788;3
0;1114.938979191;3
0;1114.939232594;3
.EE
.SH SEE ALSO
.ad l
.nh
.BR jitterdebugger (1)
.BR jitterplot (1)
|