diff options
| author | Thomas Richter <tmricht@linux.ibm.com> | 2019-05-13 04:02:20 -0400 |
|---|---|---|
| committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2019-05-16 13:17:24 -0400 |
| commit | 6cf626563998d3f8770cc25146986810ee4a5969 (patch) | |
| tree | 1f0d26d7f1e76154bdaba8db0753da857b528ced | |
| parent | 1b6599a9d8e6c9f7e9b0476012383b1777f7fc93 (diff) | |
perf docs: Add description for stderr
'perf report' displays recorded data on the screen and emits warnings
and debug messages in the status line (last one on screen).
perf also supports the possibility to write all debug messages to stderr
(instead of writing them to the status line).
This is achieved with the following command:
# ./perf --debug stderr=1 report -vvvvv -i ~/fast.data 2>/tmp/2
# ll /tmp/2
-rw-rw-r-- 1 tmricht tmricht 5420835 May 7 13:46 /tmp/2
#
The usage of variable stderr=1 is not documented, so add it to the perf
man page.
Signed-off-by: Thomas Richter <tmricht@linux.ibm.com>
Cc: Heiko Carstens <heiko.carstens@de.ibm.com>
Cc: Hendrik Brueckner <brueckner@linux.vnet.ibm.com>
Cc: Martin Schwidefsky <schwidefsky@de.ibm.com>
Link: http://lkml.kernel.org/r/20190513080220.91966-1-tmricht@linux.ibm.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
| -rw-r--r-- | tools/perf/Documentation/perf.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/perf/Documentation/perf.txt b/tools/perf/Documentation/perf.txt index 864e37597252..401f0ed67439 100644 --- a/tools/perf/Documentation/perf.txt +++ b/tools/perf/Documentation/perf.txt | |||
| @@ -22,6 +22,8 @@ OPTIONS | |||
| 22 | verbose - general debug messages | 22 | verbose - general debug messages |
| 23 | ordered-events - ordered events object debug messages | 23 | ordered-events - ordered events object debug messages |
| 24 | data-convert - data convert command debug messages | 24 | data-convert - data convert command debug messages |
| 25 | stderr - write debug output (option -v) to stderr | ||
| 26 | in browser mode | ||
| 25 | 27 | ||
| 26 | --buildid-dir:: | 28 | --buildid-dir:: |
| 27 | Setup buildid cache directory. It has higher priority than | 29 | Setup buildid cache directory. It has higher priority than |
