Anton Nikiforov
3a997d1207
All checks were successful
DCO action / DCO (pull_request) Successful in 3m31s
Vulncheck / Vulncheck (pull_request) Successful in 3m17s
Build / Build Components (1.21) (pull_request) Successful in 3m56s
Tests and linters / Staticcheck (pull_request) Successful in 5m13s
Tests and linters / Lint (pull_request) Successful in 5m50s
Tests and linters / Tests (1.20) (pull_request) Successful in 7m31s
Build / Build Components (1.20) (pull_request) Successful in 7m44s
Tests and linters / Tests (1.21) (pull_request) Successful in 7m32s
Tests and linters / Tests with -race (pull_request) Successful in 7m33s
Signed-off-by: Anton Nikiforov <an.nikiforov@yadro.com>
52 lines
1,016 B
Go
52 lines
1,016 B
Go
package main
|
|
|
|
import (
|
|
"encoding/json"
|
|
"flag"
|
|
"fmt"
|
|
"os"
|
|
|
|
local_metrics "git.frostfs.info/TrueCloudLab/frostfs-node/pkg/metrics"
|
|
"git.frostfs.info/TrueCloudLab/frostfs-observability/metrics"
|
|
)
|
|
|
|
var (
|
|
node = flag.String("node", "", "File to export storage node metrics to.")
|
|
ir = flag.String("ir", "", "File to export innerring node metrics to.")
|
|
)
|
|
|
|
func main() {
|
|
flag.Parse()
|
|
|
|
if *node != "" && *ir != "" {
|
|
fmt.Println("-node and -ir flags are mutually exclusive")
|
|
os.Exit(1)
|
|
}
|
|
|
|
var filename string
|
|
switch {
|
|
case *node != "":
|
|
_ = local_metrics.NewNodeMetrics()
|
|
filename = *node
|
|
case *ir != "":
|
|
_ = local_metrics.NewInnerRingMetrics()
|
|
filename = *ir
|
|
|
|
default:
|
|
flag.Usage()
|
|
os.Exit(1)
|
|
}
|
|
|
|
ds := metrics.DescribeAll()
|
|
|
|
data, err := json.Marshal(ds)
|
|
if err != nil {
|
|
fmt.Fprintf(os.Stderr, "Could not parse marshal: %v\n", err)
|
|
os.Exit(1)
|
|
}
|
|
|
|
if err := os.WriteFile(filename, data, 0644); err != nil {
|
|
fmt.Fprintf(os.Stderr, "Could write to file: %v\n", err)
|
|
os.Exit(1)
|
|
}
|
|
}
|