Create alloc and inuse space heap profile

This commit is contained in:
Fabian Reinartz 2017-03-02 21:54:30 +01:00
parent ffb24a98f4
commit cc0a7c8279

View file

@ -5,5 +5,6 @@ bench: build
@echo ">> running benchmark"
@./tsdb bench write --metrics=$(NUM_METRICS) testdata.1m
@go tool pprof -svg ./tsdb benchout/cpu.prof > benchout/cpuprof.svg
@go tool pprof -svg ./tsdb benchout/mem.prof > benchout/memprof.svg
@go tool pprof --inuse_space -svg ./tsdb benchout/mem.prof > benchout/memprof.inuse.svg
@go tool pprof --alloc_space -svg ./tsdb benchout/mem.prof > benchout/memprof.alloc.svg
@go tool pprof -svg ./tsdb benchout/block.prof > benchout/blockprof.svg