2015-02-18 21:40:55 +00:00
// Copyright 2013 The Prometheus Authors
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
2013-07-02 16:16:39 +00:00
//
2015-02-18 21:40:55 +00:00
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
2013-07-02 16:16:39 +00:00
package main
import (
"flag"
2016-05-04 19:16:17 +00:00
"fmt"
2013-07-02 16:16:39 +00:00
"net"
"net/http"
2016-05-04 19:16:17 +00:00
"os"
2013-07-02 16:16:39 +00:00
"strconv"
2013-07-08 18:37:12 +00:00
"github.com/howeyc/fsnotify"
2013-07-02 16:16:39 +00:00
"github.com/prometheus/client_golang/prometheus"
2016-05-04 19:16:17 +00:00
"github.com/prometheus/common/log"
"github.com/prometheus/common/version"
2018-08-10 12:28:38 +00:00
2018-08-14 09:20:00 +00:00
"github.com/prometheus/statsd_exporter/pkg/mapper"
2013-07-02 16:16:39 +00:00
)
2016-05-04 19:16:17 +00:00
func init ( ) {
prometheus . MustRegister ( version . NewCollector ( "statsd_exporter" ) )
}
2016-05-03 17:16:44 +00:00
2016-05-04 19:16:17 +00:00
var (
2015-02-08 22:57:53 +00:00
listenAddress = flag . String ( "web.listen-address" , ":9102" , "The address on which to expose the web interface and generated Prometheus metrics." )
metricsEndpoint = flag . String ( "web.telemetry-path" , "/metrics" , "Path under which to expose metrics." )
2017-08-01 10:21:00 +00:00
statsdListenAddress = flag . String ( "statsd.listen-address" , "" , "The UDP address on which to receive statsd metric lines. DEPRECATED, use statsd.listen-udp instead." )
statsdListenUDP = flag . String ( "statsd.listen-udp" , ":9125" , "The UDP address on which to receive statsd metric lines. \"\" disables it." )
statsdListenTCP = flag . String ( "statsd.listen-tcp" , ":9125" , "The TCP address on which to receive statsd metric lines. \"\" disables it." )
2015-02-08 22:57:53 +00:00
mappingConfig = flag . String ( "statsd.mapping-config" , "" , "Metric mapping configuration file name." )
2015-09-09 11:58:18 +00:00
readBuffer = flag . Int ( "statsd.read-buffer" , 0 , "Size (in bytes) of the operating system's transmit read buffer associated with the UDP connection. Please make sure the kernel parameters net.core.rmem_max is set to a value greater than the value specified." )
2016-05-04 19:16:17 +00:00
showVersion = flag . Bool ( "version" , false , "Print version information." )
2013-07-02 18:10:01 +00:00
)
2013-07-02 16:16:39 +00:00
func serveHTTP ( ) {
2015-02-08 22:57:53 +00:00
http . Handle ( * metricsEndpoint , prometheus . Handler ( ) )
2015-10-10 00:26:05 +00:00
http . HandleFunc ( "/" , func ( w http . ResponseWriter , r * http . Request ) {
w . Write ( [ ] byte ( ` < html >
2018-01-30 20:01:29 +00:00
< head > < title > StatsD Exporter < / title > < / head >
2015-10-10 00:26:05 +00:00
< body >
2018-01-30 20:01:29 +00:00
< h1 > StatsD Exporter < / h1 >
2015-10-10 00:26:05 +00:00
< p > < a href = "` + *metricsEndpoint + `" > Metrics < / a > < / p >
< / body >
< / html > ` ) )
} )
2017-02-10 12:35:38 +00:00
log . Fatal ( http . ListenAndServe ( * listenAddress , nil ) )
2013-07-02 16:16:39 +00:00
}
2017-08-01 10:21:00 +00:00
func ipPortFromString ( addr string ) ( * net . IPAddr , int ) {
2015-02-11 21:30:57 +00:00
host , portStr , err := net . SplitHostPort ( addr )
2013-07-02 16:16:39 +00:00
if err != nil {
2015-02-11 21:30:57 +00:00
log . Fatal ( "Bad StatsD listening address" , addr )
2013-07-02 16:16:39 +00:00
}
if host == "" {
host = "0.0.0.0"
}
ip , err := net . ResolveIPAddr ( "ip" , host )
if err != nil {
log . Fatalf ( "Unable to resolve %s: %s" , host , err )
}
port , err := strconv . Atoi ( portStr )
if err != nil || port < 0 || port > 65535 {
2015-02-11 21:31:49 +00:00
log . Fatalf ( "Bad port %s: %s" , portStr , err )
2013-07-02 16:16:39 +00:00
}
2017-08-01 10:21:00 +00:00
return ip , port
}
func udpAddrFromString ( addr string ) * net . UDPAddr {
ip , port := ipPortFromString ( addr )
2013-07-02 16:16:39 +00:00
return & net . UDPAddr {
IP : ip . IP ,
Port : port ,
Zone : ip . Zone ,
}
}
2017-08-01 10:21:00 +00:00
func tcpAddrFromString ( addr string ) * net . TCPAddr {
ip , port := ipPortFromString ( addr )
return & net . TCPAddr {
IP : ip . IP ,
Port : port ,
Zone : ip . Zone ,
}
}
2018-08-10 12:28:38 +00:00
func watchConfig ( fileName string , mapper * mapper . MetricMapper ) {
2013-07-08 18:37:12 +00:00
watcher , err := fsnotify . NewWatcher ( )
if err != nil {
log . Fatal ( err )
}
err = watcher . WatchFlags ( fileName , fsnotify . FSN_MODIFY )
if err != nil {
log . Fatal ( err )
}
for {
select {
case ev := <- watcher . Event :
2016-05-04 19:16:17 +00:00
log . Infof ( "Config file changed (%s), attempting reload" , ev )
2018-08-10 12:28:38 +00:00
err = mapper . InitFromFile ( fileName )
2013-07-08 18:37:12 +00:00
if err != nil {
2016-05-04 19:16:17 +00:00
log . Errorln ( "Error reloading config:" , err )
2014-06-26 13:56:21 +00:00
configLoads . WithLabelValues ( "failure" ) . Inc ( )
2013-07-08 18:37:12 +00:00
} else {
2016-05-04 19:16:17 +00:00
log . Infoln ( "Config reloaded successfully" )
2014-06-26 13:56:21 +00:00
configLoads . WithLabelValues ( "success" ) . Inc ( )
2013-07-08 18:37:12 +00:00
}
// Re-add the file watcher since it can get lost on some changes. E.g.
// saving a file with vim results in a RENAME-MODIFY-DELETE event
// sequence, after which the newly written file is no longer watched.
2018-05-23 10:38:30 +00:00
_ = watcher . WatchFlags ( fileName , fsnotify . FSN_MODIFY )
2013-07-08 18:37:12 +00:00
case err := <- watcher . Error :
2016-05-04 19:16:17 +00:00
log . Errorln ( "Error watching config:" , err )
2013-07-08 18:37:12 +00:00
}
}
}
2013-07-02 16:16:39 +00:00
func main ( ) {
flag . Parse ( )
2016-05-04 19:16:17 +00:00
if * showVersion {
fmt . Fprintln ( os . Stdout , version . Print ( "statsd_exporter" ) )
os . Exit ( 0 )
}
2017-08-01 10:21:00 +00:00
if * statsdListenAddress != "" {
log . Warnln ( "Warning: statsd.listen-address is DEPRECATED, please use statsd.listen-udp instead." )
* statsdListenUDP = * statsdListenAddress
}
if * statsdListenUDP == "" && * statsdListenTCP == "" {
log . Fatalln ( "At least one of UDP/TCP listeners must be specified." )
}
2016-05-04 19:16:17 +00:00
log . Infoln ( "Starting StatsD -> Prometheus Exporter" , version . Info ( ) )
log . Infoln ( "Build context" , version . BuildContext ( ) )
2017-08-01 10:21:00 +00:00
log . Infof ( "Accepting StatsD Traffic: UDP %v, TCP %v" , * statsdListenUDP , * statsdListenTCP )
2016-05-04 19:16:17 +00:00
log . Infoln ( "Accepting Prometheus Requests on" , * listenAddress )
2013-07-03 13:25:52 +00:00
2013-07-02 16:16:39 +00:00
go serveHTTP ( )
events := make ( chan Events , 1024 )
defer close ( events )
2017-08-01 10:21:00 +00:00
if * statsdListenUDP != "" {
udpListenAddr := udpAddrFromString ( * statsdListenUDP )
uconn , err := net . ListenUDP ( "udp" , udpListenAddr )
if err != nil {
log . Fatal ( err )
}
if * readBuffer != 0 {
err = uconn . SetReadBuffer ( * readBuffer )
if err != nil {
log . Fatal ( "Error setting UDP read buffer:" , err )
}
}
ul := & StatsDUDPListener { conn : uconn }
go ul . Listen ( events )
2013-07-02 16:16:39 +00:00
}
2015-09-09 11:58:18 +00:00
2017-08-01 10:21:00 +00:00
if * statsdListenTCP != "" {
tcpListenAddr := tcpAddrFromString ( * statsdListenTCP )
tconn , err := net . ListenTCP ( "tcp" , tcpListenAddr )
2015-09-09 11:58:18 +00:00
if err != nil {
2017-08-01 10:21:00 +00:00
log . Fatal ( err )
2015-09-09 11:58:18 +00:00
}
2017-08-01 10:21:00 +00:00
defer tconn . Close ( )
2015-09-09 11:58:18 +00:00
2017-08-01 10:21:00 +00:00
tl := & StatsDTCPListener { conn : tconn }
go tl . Listen ( events )
}
2013-07-02 16:16:39 +00:00
2018-08-10 12:28:38 +00:00
mapper := & mapper . MetricMapper { }
2013-07-08 18:37:12 +00:00
if * mappingConfig != "" {
2018-08-10 12:28:38 +00:00
err := mapper . InitFromFile ( * mappingConfig )
2013-07-05 17:31:53 +00:00
if err != nil {
log . Fatal ( "Error loading config:" , err )
}
2013-07-08 18:37:12 +00:00
go watchConfig ( * mappingConfig , mapper )
2013-07-05 17:31:53 +00:00
}
2017-09-28 18:30:17 +00:00
exporter := NewExporter ( mapper )
2015-10-10 00:34:28 +00:00
exporter . Listen ( events )
2013-07-02 16:16:39 +00:00
}