| 
									
										
										
										
											2019-02-05 08:39:24 -08:00
										 |  |  | // Copyright 2019 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.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-12 03:35:08 -07:00
										 |  |  | //go:build (darwin || freebsd || openbsd || netbsd || linux || aix) && !nouname
 | 
					
						
							|  |  |  | // +build darwin freebsd openbsd netbsd linux aix
 | 
					
						
							| 
									
										
										
										
											2019-02-05 08:39:24 -08:00
										 |  |  | // +build !nouname
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | package collector | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							| 
									
										
										
										
											2024-09-11 01:51:28 -07:00
										 |  |  | 	"log/slog" | 
					
						
							| 
									
										
										
										
											2024-11-10 02:58:03 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	"github.com/prometheus/client_golang/prometheus" | 
					
						
							| 
									
										
										
										
											2019-02-05 08:39:24 -08:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | var unameDesc = prometheus.NewDesc( | 
					
						
							|  |  |  | 	prometheus.BuildFQName(namespace, "uname", "info"), | 
					
						
							|  |  |  | 	"Labeled system information as provided by the uname system call.", | 
					
						
							|  |  |  | 	[]string{ | 
					
						
							|  |  |  | 		"sysname", | 
					
						
							|  |  |  | 		"release", | 
					
						
							|  |  |  | 		"version", | 
					
						
							|  |  |  | 		"machine", | 
					
						
							|  |  |  | 		"nodename", | 
					
						
							|  |  |  | 		"domainname", | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	nil, | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-12-31 08:19:37 -08:00
										 |  |  | type unameCollector struct { | 
					
						
							| 
									
										
										
										
											2024-09-11 01:51:28 -07:00
										 |  |  | 	logger *slog.Logger | 
					
						
							| 
									
										
										
										
											2019-12-31 08:19:37 -08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2019-02-05 08:39:24 -08:00
										 |  |  | type uname struct { | 
					
						
							|  |  |  | 	SysName    string | 
					
						
							|  |  |  | 	Release    string | 
					
						
							|  |  |  | 	Version    string | 
					
						
							|  |  |  | 	Machine    string | 
					
						
							|  |  |  | 	NodeName   string | 
					
						
							|  |  |  | 	DomainName string | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func init() { | 
					
						
							|  |  |  | 	registerCollector("uname", defaultEnabled, newUnameCollector) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // NewUnameCollector returns new unameCollector.
 | 
					
						
							| 
									
										
										
										
											2024-09-11 01:51:28 -07:00
										 |  |  | func newUnameCollector(logger *slog.Logger) (Collector, error) { | 
					
						
							| 
									
										
										
										
											2019-12-31 08:19:37 -08:00
										 |  |  | 	return &unameCollector{logger}, nil | 
					
						
							| 
									
										
										
										
											2019-02-05 08:39:24 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-13 09:44:12 -07:00
										 |  |  | func (c *unameCollector) Update(ch chan<- prometheus.Metric) error { | 
					
						
							| 
									
										
										
										
											2019-02-05 08:39:24 -08:00
										 |  |  | 	uname, err := getUname() | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		return err | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ch <- prometheus.MustNewConstMetric(unameDesc, prometheus.GaugeValue, 1, | 
					
						
							|  |  |  | 		uname.SysName, | 
					
						
							|  |  |  | 		uname.Release, | 
					
						
							|  |  |  | 		uname.Version, | 
					
						
							|  |  |  | 		uname.Machine, | 
					
						
							|  |  |  | 		uname.NodeName, | 
					
						
							|  |  |  | 		uname.DomainName, | 
					
						
							|  |  |  | 	) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return nil | 
					
						
							|  |  |  | } |