| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195 |
- // Copyright 2018 The go-ethereum Authors
- // This file is part of go-ethereum.
- //
- // go-ethereum is free software: you can redistribute it and/or modify
- // it under the terms of the GNU General Public License as published by
- // the Free Software Foundation, either version 3 of the License, or
- // (at your option) any later version.
- //
- // go-ethereum is distributed in the hope that it will be useful,
- // but WITHOUT ANY WARRANTY; without even the implied warranty of
- // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- // GNU General Public License for more details.
- //
- // You should have received a copy of the GNU General Public License
- // along with go-ethereum. If not, see <http://www.gnu.org/licenses/>.
- package main
- import (
- "fmt"
- "os"
- "sort"
- "github.com/ethereum/go-ethereum/cmd/utils"
- gethmetrics "github.com/ethereum/go-ethereum/metrics"
- "github.com/ethereum/go-ethereum/metrics/influxdb"
- swarmmetrics "github.com/ethereum/go-ethereum/swarm/metrics"
- "github.com/ethereum/go-ethereum/swarm/tracing"
- "github.com/ethereum/go-ethereum/log"
- cli "gopkg.in/urfave/cli.v1"
- )
- var (
- gitCommit string // Git SHA1 commit hash of the release (set via linker flags)
- )
- var (
- allhosts string
- hosts []string
- filesize int
- syncDelay bool
- inputSeed int
- httpPort int
- wsPort int
- verbosity int
- timeout int
- single bool
- onlyUpload bool
- )
- func main() {
- app := cli.NewApp()
- app.Name = "smoke-test"
- app.Usage = ""
- app.Flags = []cli.Flag{
- cli.StringFlag{
- Name: "hosts",
- Value: "",
- Usage: "comma-separated list of swarm hosts",
- Destination: &allhosts,
- },
- cli.IntFlag{
- Name: "http-port",
- Value: 80,
- Usage: "http port",
- Destination: &httpPort,
- },
- cli.IntFlag{
- Name: "ws-port",
- Value: 8546,
- Usage: "ws port",
- Destination: &wsPort,
- },
- cli.IntFlag{
- Name: "seed",
- Value: 0,
- Usage: "input seed in case we need deterministic upload",
- Destination: &inputSeed,
- },
- cli.IntFlag{
- Name: "filesize",
- Value: 1024,
- Usage: "file size for generated random file in KB",
- Destination: &filesize,
- },
- cli.BoolFlag{
- Name: "sync-delay",
- Usage: "wait for content to be synced",
- Destination: &syncDelay,
- },
- cli.IntFlag{
- Name: "verbosity",
- Value: 1,
- Usage: "verbosity",
- Destination: &verbosity,
- },
- cli.IntFlag{
- Name: "timeout",
- Value: 180,
- Usage: "timeout in seconds after which kill the process",
- Destination: &timeout,
- },
- cli.BoolFlag{
- Name: "single",
- Usage: "whether to fetch content from a single node or from all nodes",
- Destination: &single,
- },
- cli.BoolFlag{
- Name: "only-upload",
- Usage: "whether to only upload content to a single node without fetching",
- Destination: &onlyUpload,
- },
- }
- app.Flags = append(app.Flags, []cli.Flag{
- utils.MetricsEnabledFlag,
- swarmmetrics.MetricsInfluxDBEndpointFlag,
- swarmmetrics.MetricsInfluxDBDatabaseFlag,
- swarmmetrics.MetricsInfluxDBUsernameFlag,
- swarmmetrics.MetricsInfluxDBPasswordFlag,
- swarmmetrics.MetricsInfluxDBTagsFlag,
- }...)
- app.Flags = append(app.Flags, tracing.Flags...)
- app.Commands = []cli.Command{
- {
- Name: "upload_and_sync",
- Aliases: []string{"c"},
- Usage: "upload and sync",
- Action: wrapCliCommand("upload-and-sync", uploadAndSyncCmd),
- },
- {
- Name: "feed_sync",
- Aliases: []string{"f"},
- Usage: "feed update generate, upload and sync",
- Action: wrapCliCommand("feed-and-sync", feedUploadAndSyncCmd),
- },
- {
- Name: "upload_speed",
- Aliases: []string{"u"},
- Usage: "measure upload speed",
- Action: wrapCliCommand("upload-speed", uploadSpeedCmd),
- },
- {
- Name: "sliding_window",
- Aliases: []string{"s"},
- Usage: "measure network aggregate capacity",
- Action: wrapCliCommand("sliding-window", slidingWindowCmd),
- },
- }
- sort.Sort(cli.FlagsByName(app.Flags))
- sort.Sort(cli.CommandsByName(app.Commands))
- app.Before = func(ctx *cli.Context) error {
- tracing.Setup(ctx)
- return nil
- }
- app.After = func(ctx *cli.Context) error {
- return emitMetrics(ctx)
- }
- err := app.Run(os.Args)
- if err != nil {
- log.Error(err.Error())
- os.Exit(1)
- }
- }
- func emitMetrics(ctx *cli.Context) error {
- if gethmetrics.Enabled {
- var (
- endpoint = ctx.GlobalString(swarmmetrics.MetricsInfluxDBEndpointFlag.Name)
- database = ctx.GlobalString(swarmmetrics.MetricsInfluxDBDatabaseFlag.Name)
- username = ctx.GlobalString(swarmmetrics.MetricsInfluxDBUsernameFlag.Name)
- password = ctx.GlobalString(swarmmetrics.MetricsInfluxDBPasswordFlag.Name)
- tags = ctx.GlobalString(swarmmetrics.MetricsInfluxDBTagsFlag.Name)
- )
- tagsMap := utils.SplitTagsFlag(tags)
- tagsMap["version"] = gitCommit
- tagsMap["filesize"] = fmt.Sprintf("%v", filesize)
- return influxdb.InfluxDBWithTagsOnce(gethmetrics.DefaultRegistry, endpoint, database, username, password, "swarm-smoke.", tagsMap)
- }
- return nil
- }
|