mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-19 18:32:23 +00:00
added influxdb flags
This commit is contained in:
parent
eac3fdb218
commit
e176fe5bbd
1 changed files with 5 additions and 0 deletions
|
|
@ -20,6 +20,8 @@ import (
|
|||
"os"
|
||||
"sort"
|
||||
|
||||
swarmmetrics "github.com/ethereum/go-ethereum/swarm/metrics"
|
||||
|
||||
"github.com/ethereum/go-ethereum/log"
|
||||
|
||||
cli "gopkg.in/urfave/cli.v1"
|
||||
|
|
@ -100,6 +102,9 @@ func main() {
|
|||
},
|
||||
}
|
||||
|
||||
app.Flags = append(app.Flags, swarmmetrics.Flags[0])
|
||||
app.Flags = append(app.Flags, swarmmetrics.Flags[1:]...)
|
||||
|
||||
app.Commands = []cli.Command{
|
||||
{
|
||||
Name: "upload_and_sync",
|
||||
|
|
|
|||
Loading…
Reference in a new issue