Update deb/rpm package config, package script
This commit is contained in:
parent
ec9819071a
commit
f7b38dc270
|
@ -1,8 +1,5 @@
|
||||||
# Telegraf configuration
|
# Telegraf configuration
|
||||||
|
|
||||||
# If this file is missing an [agent] section, you must first generate a
|
|
||||||
# valid config with 'telegraf -sample-config > telegraf.toml'
|
|
||||||
|
|
||||||
# Telegraf is entirely plugin driven. All metrics are gathered from the
|
# Telegraf is entirely plugin driven. All metrics are gathered from the
|
||||||
# declared plugins.
|
# declared plugins.
|
||||||
|
|
||||||
|
@ -22,33 +19,60 @@
|
||||||
# NOTE: The configuration has a few required parameters. They are marked
|
# NOTE: The configuration has a few required parameters. They are marked
|
||||||
# with 'required'. Be sure to edit those to make this configuration work.
|
# with 'required'. Be sure to edit those to make this configuration work.
|
||||||
|
|
||||||
|
# Tags can also be specified via a normal map, but only one form at a time:
|
||||||
[tags]
|
[tags]
|
||||||
# dc = "us-east-1"
|
# dc = "us-east-1"
|
||||||
|
|
||||||
# Configuration for telegraf itself
|
# Configuration for telegraf agent
|
||||||
[agent]
|
[agent]
|
||||||
|
# Default data collection interval for all plugins
|
||||||
interval = "10s"
|
interval = "10s"
|
||||||
debug = false
|
|
||||||
hostname = ""
|
# If utc = false, uses local time (utc is highly recommended)
|
||||||
utc = true
|
utc = true
|
||||||
|
|
||||||
|
# Precision of writes, valid values are n, u, ms, s, m, and h
|
||||||
|
# note: using second precision greatly helps InfluxDB compression
|
||||||
precision = "s"
|
precision = "s"
|
||||||
|
|
||||||
# Configuration for influxdb server to send metrics to
|
# run telegraf in debug mode
|
||||||
|
debug = false
|
||||||
|
|
||||||
|
# Override default hostname, if empty use os.Hostname()
|
||||||
|
hostname = ""
|
||||||
|
|
||||||
|
|
||||||
|
###############################################################################
|
||||||
|
# OUTPUTS #
|
||||||
|
###############################################################################
|
||||||
|
|
||||||
[outputs]
|
[outputs]
|
||||||
|
|
||||||
|
# Configuration for influxdb server to send metrics to
|
||||||
[outputs.influxdb]
|
[outputs.influxdb]
|
||||||
# The full HTTP endpoint URL for your InfluxDB instance
|
# The full HTTP endpoint URL for your InfluxDB instance
|
||||||
|
# Multiple urls can be specified for InfluxDB cluster support. Server to
|
||||||
|
# write to will be randomly chosen each interval.
|
||||||
urls = ["http://localhost:8086"] # required.
|
urls = ["http://localhost:8086"] # required.
|
||||||
|
|
||||||
# The target database for metrics. This database must already exist
|
# The target database for metrics. This database must already exist
|
||||||
database = "telegraf" # required.
|
database = "telegraf" # required.
|
||||||
|
|
||||||
|
# Connection timeout (for the connection with InfluxDB), formatted as a string.
|
||||||
|
# Valid time units are "ns", "us" (or "µs"), "ms", "s", "m", "h".
|
||||||
|
# If not provided, will default to 0 (no timeout)
|
||||||
|
# timeout = "5s"
|
||||||
|
|
||||||
# username = "telegraf"
|
# username = "telegraf"
|
||||||
# password = "metricsmetricsmetricsmetrics"
|
# password = "metricsmetricsmetricsmetrics"
|
||||||
|
|
||||||
# Set the user agent for the POSTs (can be useful for log differentiation)
|
# Set the user agent for the POSTs (can be useful for log differentiation)
|
||||||
# user_agent = "telegraf"
|
# user_agent = "telegraf"
|
||||||
|
|
||||||
# PLUGINS
|
|
||||||
|
###############################################################################
|
||||||
|
# PLUGINS #
|
||||||
|
###############################################################################
|
||||||
|
|
||||||
# Read metrics about cpu usage
|
# Read metrics about cpu usage
|
||||||
[cpu]
|
[cpu]
|
||||||
|
@ -56,6 +80,8 @@
|
||||||
percpu = true
|
percpu = true
|
||||||
# Whether to report total system cpu stats or not
|
# Whether to report total system cpu stats or not
|
||||||
totalcpu = true
|
totalcpu = true
|
||||||
|
# Comment this line if you want the raw CPU time metrics
|
||||||
|
drop = ["cpu_time"]
|
||||||
|
|
||||||
# Read metrics about disk usage by mount point
|
# Read metrics about disk usage by mount point
|
||||||
[disk]
|
[disk]
|
||||||
|
@ -69,8 +95,10 @@
|
||||||
[mem]
|
[mem]
|
||||||
# no configuration
|
# no configuration
|
||||||
|
|
||||||
[system]
|
# Read metrics about swap memory usage
|
||||||
# no configuration
|
|
||||||
|
|
||||||
[swap]
|
[swap]
|
||||||
# no configuration
|
# no configuration
|
||||||
|
|
||||||
|
# Read metrics about system load & uptime
|
||||||
|
[system]
|
||||||
|
# no configuration
|
||||||
|
|
|
@ -209,9 +209,12 @@ EOF
|
||||||
|
|
||||||
if [ "$1" == "-h" ]; then
|
if [ "$1" == "-h" ]; then
|
||||||
usage 0
|
usage 0
|
||||||
|
elif [ "$1" == "" ]; then
|
||||||
|
VERSION=`git describe --always --tags | tr -d v`
|
||||||
|
else
|
||||||
|
VERSION="$1"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
VERSION=`git describe --always --tags | tr -d v`
|
|
||||||
cd `git rev-parse --show-toplevel`
|
cd `git rev-parse --show-toplevel`
|
||||||
echo -e "\nStarting package process, version: $VERSION\n"
|
echo -e "\nStarting package process, version: $VERSION\n"
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue