mirror of https://github.com/prometheus/prometheus
create output directory before backfilling
Signed-off-by: yeya24 <yb532204897@gmail.com>pull/8315/head
parent
70c69aaa6c
commit
cedd2dbec9
|
@ -621,5 +621,9 @@ func backfillOpenMetrics(path string, outputDir string) (err error) {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
defer inputFile.Close()
|
defer inputFile.Close()
|
||||||
|
|
||||||
|
if err := os.MkdirAll(outputDir, 0777); err != nil {
|
||||||
|
return errors.Wrap(err, "create output dir")
|
||||||
|
}
|
||||||
return backfill(5000, inputFile.Bytes(), outputDir)
|
return backfill(5000, inputFile.Bytes(), outputDir)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue