Skip to content

Commit

Permalink
Quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
felixge committed Sep 22, 2021
1 parent f3fc8ae commit 034d66a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ FLAGS:
#### Use anon utility via web service

```
curl --data-binary @<input file> pprof.to/anon?whitelist=^runtime;^net;^encoding > <output file>
curl --data-binary @<input file> 'pprof.to/anon?whitelist=^runtime;^net;^encoding' > <output file>
```

#### Example 1: Anonymize a CPU profile
Expand Down Expand Up @@ -81,7 +81,7 @@ pprofutils avg <input file> <output file>
#### Use avg utility via web service

```
curl --data-binary @<input file> pprof.to/avg > <output file>
curl --data-binary @<input file> 'pprof.to/avg' > <output file>
```

#### Example 1: Convert block profile to avg time
Expand Down Expand Up @@ -118,7 +118,7 @@ FLAGS:
#### Use folded utility via web service

```
curl --data-binary @<input file> pprof.to/folded?headers=false > <output file>
curl --data-binary @<input file> 'pprof.to/folded?headers=false' > <output file>
```

#### Example 1: Convert folded text to pprof
Expand Down Expand Up @@ -175,7 +175,7 @@ pprofutils json <input file> <output file>
#### Use json utility via web service

```
curl --data-binary @<input file> pprof.to/json > <output file>
curl --data-binary @<input file> 'pprof.to/json' > <output file>
```

#### Example 1: Convert pprof to json
Expand Down Expand Up @@ -213,7 +213,7 @@ FLAGS:
#### Use labelframes utility via web service

```
curl --data-binary @<input file> pprof.to/labelframes?label=mylabel > <output file>
curl --data-binary @<input file> 'pprof.to/labelframes?label=mylabel' > <output file>
```

#### Example 1: Add root frames for pprof label values
Expand Down Expand Up @@ -246,7 +246,7 @@ pprofutils raw <input file> <output file>
#### Use raw utility via web service

```
curl --data-binary @<input file> pprof.to/raw > <output file>
curl --data-binary @<input file> 'pprof.to/raw' > <output file>
```

#### Example 1: Convert pprof to raw
Expand Down
2 changes: 1 addition & 1 deletion README.template.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ FLAGS:{{range $name, $flag := .Flags}}
#### Use {{.Name}} utility via web service

```
curl --data-binary @<input file> pprof.to/{{.Name}}{{queryflags .Flags}} > <output file>
curl --data-binary @<input file> 'pprof.to/{{.Name}}{{queryflags .Flags}}' > <output file>
```

{{examples .}}
Expand Down
2 changes: 1 addition & 1 deletion cmd/pprofutils/version.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 034d66a

Please sign in to comment.