| 
									
										
										
										
											2015-09-26 08:36:40 -07:00
										 |  |  | // Copyright 2015 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
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // 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.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-12 04:06:41 -07:00
										 |  |  | // +build !notcpstat
 | 
					
						
							| 
									
										
										
										
											2015-03-24 04:34:48 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | package collector | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							|  |  |  | 	"bufio" | 
					
						
							|  |  |  | 	"fmt" | 
					
						
							|  |  |  | 	"io" | 
					
						
							|  |  |  | 	"os" | 
					
						
							|  |  |  | 	"strconv" | 
					
						
							|  |  |  | 	"strings" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	"github.com/prometheus/client_golang/prometheus" | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-28 08:44:53 -08:00
										 |  |  | type tcpConnectionState int | 
					
						
							| 
									
										
										
										
											2015-03-24 04:34:48 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | const ( | 
					
						
							| 
									
										
										
										
											2017-02-28 08:44:53 -08:00
										 |  |  | 	// TCP_ESTABLISHED
 | 
					
						
							|  |  |  | 	tcpEstablished tcpConnectionState = iota + 1 | 
					
						
							|  |  |  | 	// TCP_SYN_SENT
 | 
					
						
							|  |  |  | 	tcpSynSent | 
					
						
							|  |  |  | 	// TCP_SYN_RECV
 | 
					
						
							|  |  |  | 	tcpSynRecv | 
					
						
							|  |  |  | 	// TCP_FIN_WAIT1
 | 
					
						
							|  |  |  | 	tcpFinWait1 | 
					
						
							|  |  |  | 	// TCP_FIN_WAIT2
 | 
					
						
							|  |  |  | 	tcpFinWait2 | 
					
						
							|  |  |  | 	// TCP_TIME_WAIT
 | 
					
						
							|  |  |  | 	tcpTimeWait | 
					
						
							|  |  |  | 	// TCP_CLOSE
 | 
					
						
							|  |  |  | 	tcpClose | 
					
						
							|  |  |  | 	// TCP_CLOSE_WAIT
 | 
					
						
							|  |  |  | 	tcpCloseWait | 
					
						
							|  |  |  | 	// TCP_LAST_ACK
 | 
					
						
							|  |  |  | 	tcpLastAck | 
					
						
							|  |  |  | 	// TCP_LISTEN
 | 
					
						
							|  |  |  | 	tcpListen | 
					
						
							|  |  |  | 	// TCP_CLOSING
 | 
					
						
							|  |  |  | 	tcpClosing | 
					
						
							| 
									
										
										
										
											2015-03-24 04:34:48 -07:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | type tcpStatCollector struct { | 
					
						
							| 
									
										
										
										
											2016-12-28 06:21:31 -08:00
										 |  |  | 	desc typedDesc | 
					
						
							| 
									
										
										
										
											2015-03-24 04:34:48 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func init() { | 
					
						
							|  |  |  | 	Factories["tcpstat"] = NewTCPStatCollector | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-14 04:23:57 -07:00
										 |  |  | // NewTCPStatCollector returns a new Collector exposing network stats.
 | 
					
						
							| 
									
										
										
										
											2015-05-20 11:04:49 -07:00
										 |  |  | func NewTCPStatCollector() (Collector, error) { | 
					
						
							| 
									
										
										
										
											2015-03-24 04:34:48 -07:00
										 |  |  | 	return &tcpStatCollector{ | 
					
						
							| 
									
										
										
										
											2016-12-28 06:21:31 -08:00
										 |  |  | 		desc: typedDesc{prometheus.NewDesc( | 
					
						
							|  |  |  | 			prometheus.BuildFQName(Namespace, "tcp", "connection_states"), | 
					
						
							|  |  |  | 			"Number of connection states.", | 
					
						
							|  |  |  | 			[]string{"state"}, nil, | 
					
						
							|  |  |  | 		), prometheus.GaugeValue}, | 
					
						
							| 
									
										
										
										
											2015-03-24 04:34:48 -07:00
										 |  |  | 	}, nil | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-28 10:47:20 -08:00
										 |  |  | func (c *tcpStatCollector) Update(ch chan<- prometheus.Metric) error { | 
					
						
							| 
									
										
										
										
											2015-09-26 05:53:46 -07:00
										 |  |  | 	tcpStats, err := getTCPStats(procFilePath("net/tcp")) | 
					
						
							| 
									
										
										
										
											2015-03-24 04:34:48 -07:00
										 |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		return fmt.Errorf("couldn't get tcpstats: %s", err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// if enabled ipv6 system
 | 
					
						
							| 
									
										
										
										
											2015-09-26 05:53:46 -07:00
										 |  |  | 	tcp6File := procFilePath("net/tcp6") | 
					
						
							|  |  |  | 	if _, hasIPv6 := os.Stat(tcp6File); hasIPv6 == nil { | 
					
						
							|  |  |  | 		tcp6Stats, err := getTCPStats(tcp6File) | 
					
						
							| 
									
										
										
										
											2015-03-24 04:34:48 -07:00
										 |  |  | 		if err != nil { | 
					
						
							|  |  |  | 			return fmt.Errorf("couldn't get tcp6stats: %s", err) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		for st, value := range tcp6Stats { | 
					
						
							|  |  |  | 			tcpStats[st] += value | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for st, value := range tcpStats { | 
					
						
							| 
									
										
										
										
											2016-12-28 06:21:31 -08:00
										 |  |  | 		ch <- c.desc.mustNewConstMetric(value, st.String()) | 
					
						
							| 
									
										
										
										
											2015-03-24 04:34:48 -07:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-02-28 08:44:53 -08:00
										 |  |  | 	return nil | 
					
						
							| 
									
										
										
										
											2015-03-24 04:34:48 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-28 08:44:53 -08:00
										 |  |  | func getTCPStats(statsFile string) (map[tcpConnectionState]float64, error) { | 
					
						
							| 
									
										
										
										
											2015-03-24 04:34:48 -07:00
										 |  |  | 	file, err := os.Open(statsFile) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		return nil, err | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	defer file.Close() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return parseTCPStats(file) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-28 08:44:53 -08:00
										 |  |  | func parseTCPStats(r io.Reader) (map[tcpConnectionState]float64, error) { | 
					
						
							| 
									
										
										
										
											2015-03-24 04:34:48 -07:00
										 |  |  | 	var ( | 
					
						
							| 
									
										
										
										
											2017-02-28 08:44:53 -08:00
										 |  |  | 		tcpStats = map[tcpConnectionState]float64{} | 
					
						
							| 
									
										
										
										
											2015-03-24 04:34:48 -07:00
										 |  |  | 		scanner  = bufio.NewScanner(r) | 
					
						
							|  |  |  | 	) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for scanner.Scan() { | 
					
						
							|  |  |  | 		parts := strings.Fields(scanner.Text()) | 
					
						
							|  |  |  | 		if len(parts) == 0 { | 
					
						
							|  |  |  | 			continue | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		if strings.HasPrefix(parts[0], "sl") { | 
					
						
							|  |  |  | 			continue | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		st, err := strconv.ParseInt(parts[3], 16, 8) | 
					
						
							|  |  |  | 		if err != nil { | 
					
						
							|  |  |  | 			return nil, err | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-28 08:44:53 -08:00
										 |  |  | 		tcpStats[tcpConnectionState(st)]++ | 
					
						
							| 
									
										
										
										
											2015-03-24 04:34:48 -07:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-28 10:31:35 -08:00
										 |  |  | 	return tcpStats, scanner.Err() | 
					
						
							| 
									
										
										
										
											2015-03-24 04:34:48 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-28 08:44:53 -08:00
										 |  |  | func (st tcpConnectionState) String() string { | 
					
						
							| 
									
										
										
										
											2015-03-24 04:34:48 -07:00
										 |  |  | 	switch st { | 
					
						
							| 
									
										
										
										
											2017-02-28 08:44:53 -08:00
										 |  |  | 	case tcpEstablished: | 
					
						
							| 
									
										
										
										
											2015-03-24 04:34:48 -07:00
										 |  |  | 		return "established" | 
					
						
							| 
									
										
										
										
											2017-02-28 08:44:53 -08:00
										 |  |  | 	case tcpSynSent: | 
					
						
							| 
									
										
										
										
											2015-03-24 04:34:48 -07:00
										 |  |  | 		return "syn_sent" | 
					
						
							| 
									
										
										
										
											2017-02-28 08:44:53 -08:00
										 |  |  | 	case tcpSynRecv: | 
					
						
							| 
									
										
										
										
											2015-03-24 04:34:48 -07:00
										 |  |  | 		return "syn_recv" | 
					
						
							| 
									
										
										
										
											2017-02-28 08:44:53 -08:00
										 |  |  | 	case tcpFinWait1: | 
					
						
							| 
									
										
										
										
											2015-03-24 04:34:48 -07:00
										 |  |  | 		return "fin_wait1" | 
					
						
							| 
									
										
										
										
											2017-02-28 08:44:53 -08:00
										 |  |  | 	case tcpFinWait2: | 
					
						
							| 
									
										
										
										
											2015-03-24 04:34:48 -07:00
										 |  |  | 		return "fin_wait2" | 
					
						
							| 
									
										
										
										
											2017-02-28 08:44:53 -08:00
										 |  |  | 	case tcpTimeWait: | 
					
						
							| 
									
										
										
										
											2015-03-24 04:34:48 -07:00
										 |  |  | 		return "time_wait" | 
					
						
							| 
									
										
										
										
											2017-02-28 08:44:53 -08:00
										 |  |  | 	case tcpClose: | 
					
						
							| 
									
										
										
										
											2015-03-24 04:34:48 -07:00
										 |  |  | 		return "close" | 
					
						
							| 
									
										
										
										
											2017-02-28 08:44:53 -08:00
										 |  |  | 	case tcpCloseWait: | 
					
						
							| 
									
										
										
										
											2015-03-24 04:34:48 -07:00
										 |  |  | 		return "close_wait" | 
					
						
							| 
									
										
										
										
											2017-02-28 08:44:53 -08:00
										 |  |  | 	case tcpLastAck: | 
					
						
							| 
									
										
										
										
											2015-03-24 04:34:48 -07:00
										 |  |  | 		return "last_ack" | 
					
						
							| 
									
										
										
										
											2017-02-28 08:44:53 -08:00
										 |  |  | 	case tcpListen: | 
					
						
							| 
									
										
										
										
											2015-03-24 04:34:48 -07:00
										 |  |  | 		return "listen" | 
					
						
							| 
									
										
										
										
											2017-02-28 08:44:53 -08:00
										 |  |  | 	case tcpClosing: | 
					
						
							| 
									
										
										
										
											2015-03-24 04:34:48 -07:00
										 |  |  | 		return "closing" | 
					
						
							|  |  |  | 	default: | 
					
						
							|  |  |  | 		return "unknown" | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } |