Skip to content

Commit 2233c27

Browse files
committed
Fix double HeapAlloc in example command
1 parent 343a629 commit 2233c27

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Above capture is jplot monitoring a Go service's [expvar](https://golang.org/pkg
99

1010
```
1111
jplot --url http://:8080/debug/vars \
12-
memstats.HeapAlloc+memstats.HeapSys+memstats.HeapAlloc+memstats.HeapIdle+marker,counter:memstats.NumGC \
12+
memstats.HeapSys+memstats.HeapAlloc+memstats.HeapIdle+marker,counter:memstats.NumGC \
1313
counter:memstats.TotalAlloc \
1414
memstats.HeapObjects \
1515
memstats.StackSys+memstats.StackInuse
@@ -85,7 +85,7 @@ Here is an example command to graph a Go program memstats:
8585

8686
```
8787
jplot --url http://:8080/debug/vars \
88-
memstats.HeapAlloc+memstats.HeapSys+memstats.HeapAlloc+memstats.HeapIdle+marker,counter:memstats.NumGC \
88+
memstats.HeapSys+memstats.HeapAlloc+memstats.HeapIdle+marker,counter:memstats.NumGC \
8989
counter:memstats.TotalAlloc \
9090
memstats.HeapObjects \
9191
memstats.StackSys+memstats.StackInuse

0 commit comments

Comments
 (0)