mirror of https://github.com/prometheus/prometheus
Remove infinite block in benchmark
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…
Reference in New Issue