27 lines
457 B
Go
27 lines
457 B
Go
// Copyright (C) 2018 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
package main
|
|
|
|
import (
|
|
"flag"
|
|
|
|
"github.com/spf13/cobra"
|
|
|
|
"storj.io/storj/pkg/process"
|
|
)
|
|
|
|
func main() {
|
|
flag.Set("metrics.interval", "1s")
|
|
process.Exec(&cobra.Command{
|
|
Use: "metric-sender",
|
|
Short: "send metrics",
|
|
RunE: run,
|
|
})
|
|
}
|
|
|
|
func run(cmd *cobra.Command, args []string) error {
|
|
// just go to sleep and let the background telemetry start sending
|
|
select {}
|
|
}
|