mirror of
https://github.com/prometheus/prometheus.git
synced 2025-08-06 22:27:17 +02:00
Merge pull request #8315 from yeya24/create-dir
Create output directory before backfilling
This commit is contained in:
commit
ffb3ef6765
@ -621,5 +621,9 @@ func backfillOpenMetrics(path string, outputDir string) (err error) {
|
||||
return err
|
||||
}
|
||||
defer inputFile.Close()
|
||||
|
||||
if err := os.MkdirAll(outputDir, 0777); err != nil {
|
||||
return errors.Wrap(err, "create output dir")
|
||||
}
|
||||
return backfill(5000, inputFile.Bytes(), outputDir)
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user