Remove infinite block in benchmark

pull/5805/head
Fabian Reinartz 7 years ago
parent 3870ec285c
commit 8214dc82a7

@ -139,7 +139,7 @@ func (b *writeBenchmark) run(cmd *cobra.Command, args []string) {
dur := measureTime("ingestScrapes", func() {
b.startProfiling()
total, err = b.ingestScrapes(metrics, 15000)
total, err = b.ingestScrapes(metrics, 2000)
if err != nil {
exitWithError(err)
}
@ -147,7 +147,6 @@ func (b *writeBenchmark) run(cmd *cobra.Command, args []string) {
fmt.Println(" > total samples:", total)
fmt.Println(" > samples/sec:", float64(total)/dur.Seconds())
select {}
measureTime("stopStorage", func() {
if err := b.storage.Close(); err != nil {

Loading…
Cancel
Save