2018-02-23 13:19:59 +00:00
|
|
|
// Copyright 2018 The go-ethereum Authors
|
|
|
|
// This file is part of the go-ethereum library.
|
|
|
|
//
|
|
|
|
// The go-ethereum library is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// The go-ethereum library 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 Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public License
|
|
|
|
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
package metrics
|
|
|
|
|
|
|
|
import (
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/ethereum/go-ethereum/cmd/utils"
|
|
|
|
gethmetrics "github.com/ethereum/go-ethereum/metrics"
|
|
|
|
"github.com/ethereum/go-ethereum/metrics/influxdb"
|
2018-06-20 12:06:27 +00:00
|
|
|
"github.com/ethereum/go-ethereum/swarm/log"
|
2019-01-29 08:14:24 +00:00
|
|
|
cli "gopkg.in/urfave/cli.v1"
|
2018-02-23 13:19:59 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
2018-12-11 08:21:58 +00:00
|
|
|
MetricsEnableInfluxDBExportFlag = cli.BoolFlag{
|
2018-02-23 15:22:16 +00:00
|
|
|
Name: "metrics.influxdb.export",
|
|
|
|
Usage: "Enable metrics export/push to an external InfluxDB database",
|
|
|
|
}
|
2019-01-24 17:57:20 +00:00
|
|
|
MetricsEnableInfluxDBAccountingExportFlag = cli.BoolFlag{
|
|
|
|
Name: "metrics.influxdb.accounting",
|
|
|
|
Usage: "Enable accounting metrics export/push to an external InfluxDB database",
|
|
|
|
}
|
2018-12-11 08:21:58 +00:00
|
|
|
MetricsInfluxDBEndpointFlag = cli.StringFlag{
|
2018-02-23 13:19:59 +00:00
|
|
|
Name: "metrics.influxdb.endpoint",
|
|
|
|
Usage: "Metrics InfluxDB endpoint",
|
|
|
|
Value: "http://127.0.0.1:8086",
|
|
|
|
}
|
2018-12-11 08:21:58 +00:00
|
|
|
MetricsInfluxDBDatabaseFlag = cli.StringFlag{
|
2018-02-23 13:19:59 +00:00
|
|
|
Name: "metrics.influxdb.database",
|
2018-02-23 15:22:16 +00:00
|
|
|
Usage: "Metrics InfluxDB database",
|
2018-02-23 13:19:59 +00:00
|
|
|
Value: "metrics",
|
|
|
|
}
|
2018-12-11 08:21:58 +00:00
|
|
|
MetricsInfluxDBUsernameFlag = cli.StringFlag{
|
2018-02-23 13:19:59 +00:00
|
|
|
Name: "metrics.influxdb.username",
|
2018-02-23 15:22:16 +00:00
|
|
|
Usage: "Metrics InfluxDB username",
|
2018-02-23 13:19:59 +00:00
|
|
|
Value: "",
|
|
|
|
}
|
2018-12-11 08:21:58 +00:00
|
|
|
MetricsInfluxDBPasswordFlag = cli.StringFlag{
|
2018-02-23 13:19:59 +00:00
|
|
|
Name: "metrics.influxdb.password",
|
2018-02-23 15:22:16 +00:00
|
|
|
Usage: "Metrics InfluxDB password",
|
2018-02-23 13:19:59 +00:00
|
|
|
Value: "",
|
|
|
|
}
|
2019-01-29 08:14:24 +00:00
|
|
|
// Tags are part of every measurement sent to InfluxDB. Queries on tags are faster in InfluxDB.
|
|
|
|
// For example `host` tag could be used so that we can group all nodes and average a measurement
|
|
|
|
// across all of them, but also so that we can select a specific node and inspect its measurements.
|
2018-02-23 13:19:59 +00:00
|
|
|
// https://docs.influxdata.com/influxdb/v1.4/concepts/key_concepts/#tag-key
|
2019-01-29 08:14:24 +00:00
|
|
|
MetricsInfluxDBTagsFlag = cli.StringFlag{
|
|
|
|
Name: "metrics.influxdb.tags",
|
|
|
|
Usage: "Comma-separated InfluxDB tags (key/values) attached to all measurements",
|
|
|
|
Value: "host=localhost",
|
2018-02-23 13:19:59 +00:00
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
// Flags holds all command-line flags required for metrics collection.
|
|
|
|
var Flags = []cli.Flag{
|
|
|
|
utils.MetricsEnabledFlag,
|
2018-12-11 08:21:58 +00:00
|
|
|
MetricsEnableInfluxDBExportFlag,
|
2019-01-24 17:57:20 +00:00
|
|
|
MetricsEnableInfluxDBAccountingExportFlag,
|
2018-12-11 08:21:58 +00:00
|
|
|
MetricsInfluxDBEndpointFlag,
|
|
|
|
MetricsInfluxDBDatabaseFlag,
|
|
|
|
MetricsInfluxDBUsernameFlag,
|
|
|
|
MetricsInfluxDBPasswordFlag,
|
2019-01-29 08:14:24 +00:00
|
|
|
MetricsInfluxDBTagsFlag,
|
2018-02-23 13:19:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func Setup(ctx *cli.Context) {
|
|
|
|
if gethmetrics.Enabled {
|
2018-02-23 15:22:16 +00:00
|
|
|
log.Info("Enabling swarm metrics collection")
|
2018-02-23 13:19:59 +00:00
|
|
|
var (
|
2019-01-24 17:57:20 +00:00
|
|
|
endpoint = ctx.GlobalString(MetricsInfluxDBEndpointFlag.Name)
|
|
|
|
database = ctx.GlobalString(MetricsInfluxDBDatabaseFlag.Name)
|
|
|
|
username = ctx.GlobalString(MetricsInfluxDBUsernameFlag.Name)
|
|
|
|
password = ctx.GlobalString(MetricsInfluxDBPasswordFlag.Name)
|
2019-01-29 08:14:24 +00:00
|
|
|
enableExport = ctx.GlobalBool(MetricsEnableInfluxDBExportFlag.Name)
|
|
|
|
enableAccountingExport = ctx.GlobalBool(MetricsEnableInfluxDBAccountingExportFlag.Name)
|
2018-02-23 13:19:59 +00:00
|
|
|
)
|
|
|
|
|
2018-07-09 12:11:49 +00:00
|
|
|
// Start system runtime metrics collection
|
|
|
|
go gethmetrics.CollectProcessMetrics(2 * time.Second)
|
|
|
|
|
2019-01-29 08:14:24 +00:00
|
|
|
tagsMap := utils.SplitTagsFlag(ctx.GlobalString(MetricsInfluxDBTagsFlag.Name))
|
|
|
|
|
2018-02-23 15:22:16 +00:00
|
|
|
if enableExport {
|
|
|
|
log.Info("Enabling swarm metrics export to InfluxDB")
|
2019-01-29 08:14:24 +00:00
|
|
|
go influxdb.InfluxDBWithTags(gethmetrics.DefaultRegistry, 10*time.Second, endpoint, database, username, password, "swarm.", tagsMap)
|
2018-02-23 15:22:16 +00:00
|
|
|
}
|
2019-01-24 17:57:20 +00:00
|
|
|
|
|
|
|
if enableAccountingExport {
|
2019-01-29 08:14:24 +00:00
|
|
|
log.Info("Exporting swarm accounting metrics to InfluxDB")
|
|
|
|
go influxdb.InfluxDBWithTags(gethmetrics.AccountingRegistry, 10*time.Second, endpoint, database, username, password, "accounting.", tagsMap)
|
2019-01-24 17:57:20 +00:00
|
|
|
}
|
2018-02-23 13:19:59 +00:00
|
|
|
}
|
|
|
|
}
|