| 
									
										
										
										
											2015-11-02 20:31:34 -08: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.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-08-03 06:29:03 -07:00
										 |  |  | //go:build !nonetdev && !amd64
 | 
					
						
							|  |  |  | // +build !nonetdev,!amd64
 | 
					
						
							| 
									
										
										
										
											2015-11-02 20:31:34 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | package collector | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							|  |  |  | 	"errors" | 
					
						
							| 
									
										
										
										
											2024-09-11 01:51:28 -07:00
										 |  |  | 	"log/slog" | 
					
						
							| 
									
										
										
										
											2015-11-02 20:31:34 -08:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* | 
					
						
							|  |  |  | #include <sys/types.h> | 
					
						
							|  |  |  | #include <sys/socket.h> | 
					
						
							|  |  |  | #include <ifaddrs.h> | 
					
						
							|  |  |  | #include <net/if.h> | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | import "C" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-09-11 01:51:28 -07:00
										 |  |  | func getNetDevStats(filter *deviceFilter, logger *slog.Logger) (netDevStats, error) { | 
					
						
							| 
									
										
										
										
											2020-08-24 08:43:27 -07:00
										 |  |  | 	netDev := netDevStats{} | 
					
						
							| 
									
										
										
										
											2015-11-02 20:31:34 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	var ifap, ifa *C.struct_ifaddrs | 
					
						
							|  |  |  | 	if C.getifaddrs(&ifap) == -1 { | 
					
						
							|  |  |  | 		return nil, errors.New("getifaddrs() failed") | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	defer C.freeifaddrs(ifap) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for ifa = ifap; ifa != nil; ifa = ifa.ifa_next { | 
					
						
							| 
									
										
										
										
											2020-08-24 08:43:27 -07:00
										 |  |  | 		if ifa.ifa_addr.sa_family != C.AF_LINK { | 
					
						
							|  |  |  | 			continue | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		dev := C.GoString(ifa.ifa_name) | 
					
						
							| 
									
										
										
										
											2019-12-02 06:16:00 -08:00
										 |  |  | 		if filter.ignored(dev) { | 
					
						
							| 
									
										
										
										
											2024-09-11 01:51:28 -07:00
										 |  |  | 			logger.Debug("Ignoring device", "device", dev) | 
					
						
							| 
									
										
										
										
											2020-08-24 08:43:27 -07:00
										 |  |  | 			continue | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2015-11-02 20:31:34 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-24 08:43:27 -07:00
										 |  |  | 		data := (*C.struct_if_data)(ifa.ifa_data) | 
					
						
							| 
									
										
										
										
											2015-11-02 20:31:34 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-09 02:44:03 -07:00
										 |  |  | 		// https://github.com/openbsd/src/blob/master/sys/net/if.h#L101-L126
 | 
					
						
							| 
									
										
										
										
											2020-08-24 08:43:27 -07:00
										 |  |  | 		netDev[dev] = map[string]uint64{ | 
					
						
							|  |  |  | 			"receive_packets":    uint64(data.ifi_ipackets), | 
					
						
							|  |  |  | 			"transmit_packets":   uint64(data.ifi_opackets), | 
					
						
							|  |  |  | 			"receive_bytes":      uint64(data.ifi_ibytes), | 
					
						
							|  |  |  | 			"transmit_bytes":     uint64(data.ifi_obytes), | 
					
						
							| 
									
										
										
										
											2021-07-09 02:44:03 -07:00
										 |  |  | 			"receive_errors":     uint64(data.ifi_ierrors), | 
					
						
							|  |  |  | 			"transmit_errors":    uint64(data.ifi_oerrors), | 
					
						
							|  |  |  | 			"receive_dropped":    uint64(data.ifi_iqdrops), | 
					
						
							|  |  |  | 			"transmit_dropped":   uint64(data.ifi_oqdrops), | 
					
						
							| 
									
										
										
										
											2020-08-24 08:43:27 -07:00
										 |  |  | 			"receive_multicast":  uint64(data.ifi_imcasts), | 
					
						
							|  |  |  | 			"transmit_multicast": uint64(data.ifi_omcasts), | 
					
						
							| 
									
										
										
										
											2021-07-09 02:44:03 -07:00
										 |  |  | 			"collisions":         uint64(data.ifi_collisions), | 
					
						
							|  |  |  | 			"noproto":            uint64(data.ifi_noproto), | 
					
						
							| 
									
										
										
										
											2015-11-02 20:31:34 -08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return netDev, nil | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2024-09-11 00:26:34 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | func getNetDevLabels() (map[string]map[string]string, error) { | 
					
						
							|  |  |  | 	// to be implemented if needed
 | 
					
						
							|  |  |  | 	return nil, nil | 
					
						
							|  |  |  | } |