fix logging commands for Linux (#2882)

This commit is contained in:
Daiki AMINAKA 2022-07-11 06:01:05 -07:00 коммит произвёл GitHub
Родитель 4c26129432
Коммит aba4d533c9
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -134,7 +134,7 @@ To start collecting a trace, you can use the following commands:
```
mkdir msquic_lttng
lttng create msquic -o=./msquic_lttng
lttng enable-event --userspace CLOG_*
lttng enable-event --userspace "CLOG_*"
lttng add-context --userspace --type=vpid --type=vtid
lttng start
```
@ -176,7 +176,7 @@ To convert the trace, you can use the following commands:
```
babeltrace --names all ./msquic_lttng/* > quic.babel.txt
clog2text_lttng -i quic.babel.txt -s clog.sidecar -o quic.log --showTimestamp --showCpuInfo
~/.dotnet/tools/clog2text_lttng -i quic.babel.txt -s clog.sidecar -o quic.log --showTimestamp --showCpuInfo
```
> **Note**