| 
									
										
										
										
											2018-04-14 21:42:02 -07:00
										 |  |  | // Copyright 2018 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.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-11-13 01:46:14 -08:00
										 |  |  | //go:build (freebsd || dragonfly || openbsd || netbsd || darwin) && !noboottime
 | 
					
						
							|  |  |  | // +build freebsd dragonfly openbsd netbsd darwin
 | 
					
						
							| 
									
										
										
										
											2018-04-14 21:42:02 -07:00
										 |  |  | // +build !noboottime
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | package collector | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							|  |  |  | 	"github.com/prometheus/client_golang/prometheus" | 
					
						
							| 
									
										
										
										
											2021-11-13 01:46:14 -08:00
										 |  |  | 	"golang.org/x/sys/unix" | 
					
						
							| 
									
										
										
										
											2024-09-11 01:51:28 -07:00
										 |  |  | 	"log/slog" | 
					
						
							| 
									
										
										
										
											2018-04-14 21:42:02 -07:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-12-31 08:19:37 -08:00
										 |  |  | type bootTimeCollector struct { | 
					
						
							| 
									
										
										
										
											2024-09-11 01:51:28 -07:00
										 |  |  | 	logger *slog.Logger | 
					
						
							| 
									
										
										
										
											2019-12-31 08:19:37 -08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2018-04-14 21:42:02 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | func init() { | 
					
						
							|  |  |  | 	registerCollector("boottime", defaultEnabled, newBootTimeCollector) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // newBootTimeCollector returns a new Collector exposing system boot time on BSD systems.
 | 
					
						
							| 
									
										
										
										
											2024-09-11 01:51:28 -07:00
										 |  |  | func newBootTimeCollector(logger *slog.Logger) (Collector, error) { | 
					
						
							| 
									
										
										
										
											2018-04-14 21:42:02 -07:00
										 |  |  | 	return &bootTimeCollector{ | 
					
						
							| 
									
										
										
										
											2019-12-31 08:19:37 -08:00
										 |  |  | 		logger: logger, | 
					
						
							| 
									
										
										
										
											2018-04-14 21:42:02 -07:00
										 |  |  | 	}, nil | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Update pushes boot time onto ch
 | 
					
						
							|  |  |  | func (c *bootTimeCollector) Update(ch chan<- prometheus.Metric) error { | 
					
						
							| 
									
										
										
										
											2021-11-13 01:46:14 -08:00
										 |  |  | 	tv, err := unix.SysctlTimeval("kern.boottime") | 
					
						
							| 
									
										
										
										
											2018-04-14 21:42:02 -07:00
										 |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		return err | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-11-13 01:46:14 -08:00
										 |  |  | 	// This conversion maintains the usec precision.  Using the time
 | 
					
						
							|  |  |  | 	// package did not.
 | 
					
						
							|  |  |  | 	v := float64(tv.Sec) + (float64(tv.Usec) / float64(1000*1000)) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-14 21:42:02 -07:00
										 |  |  | 	ch <- prometheus.MustNewConstMetric( | 
					
						
							|  |  |  | 		prometheus.NewDesc( | 
					
						
							| 
									
										
										
										
											2021-11-13 01:46:14 -08:00
										 |  |  | 			prometheus.BuildFQName(namespace, "", "boot_time_seconds"), | 
					
						
							|  |  |  | 			"Unix time of last boot, including microseconds.", | 
					
						
							| 
									
										
										
										
											2018-04-14 21:42:02 -07:00
										 |  |  | 			nil, nil, | 
					
						
							|  |  |  | 		), prometheus.GaugeValue, v) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return nil | 
					
						
							|  |  |  | } |