| 
									
										
										
										
											2019-01-12 04:33:56 -08: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.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-08-03 06:29:03 -07:00
										 |  |  | //go:build !nocpu
 | 
					
						
							|  |  |  | // +build !nocpu
 | 
					
						
							| 
									
										
										
										
											2019-01-12 04:33:56 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | package collector | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							| 
									
										
										
										
											2024-09-11 01:51:28 -07:00
										 |  |  | 	"log/slog" | 
					
						
							| 
									
										
										
										
											2019-01-12 04:33:56 -08:00
										 |  |  | 	"strconv" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-06 02:42:00 -07:00
										 |  |  | 	"github.com/illumos/go-kstat" | 
					
						
							| 
									
										
										
										
											2019-01-12 04:33:56 -08:00
										 |  |  | 	"github.com/prometheus/client_golang/prometheus" | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // #include <unistd.h>
 | 
					
						
							|  |  |  | import "C" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | type cpuCollector struct { | 
					
						
							| 
									
										
										
										
											2019-12-31 08:19:37 -08:00
										 |  |  | 	cpu    typedDesc | 
					
						
							| 
									
										
										
										
											2024-09-11 01:51:28 -07:00
										 |  |  | 	logger *slog.Logger | 
					
						
							| 
									
										
										
										
											2019-01-12 04:33:56 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func init() { | 
					
						
							|  |  |  | 	registerCollector("cpu", defaultEnabled, NewCpuCollector) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-09-11 01:51:28 -07:00
										 |  |  | func NewCpuCollector(logger *slog.Logger) (Collector, error) { | 
					
						
							| 
									
										
										
										
											2019-01-12 04:33:56 -08:00
										 |  |  | 	return &cpuCollector{ | 
					
						
							| 
									
										
										
										
											2019-12-31 08:19:37 -08:00
										 |  |  | 		cpu:    typedDesc{nodeCPUSecondsDesc, prometheus.CounterValue}, | 
					
						
							|  |  |  | 		logger: logger, | 
					
						
							| 
									
										
										
										
											2019-01-12 04:33:56 -08:00
										 |  |  | 	}, nil | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (c *cpuCollector) Update(ch chan<- prometheus.Metric) error { | 
					
						
							|  |  |  | 	ncpus := C.sysconf(C._SC_NPROCESSORS_ONLN) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	tok, err := kstat.Open() | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		return err | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	defer tok.Close() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for cpu := 0; cpu < int(ncpus); cpu++ { | 
					
						
							|  |  |  | 		ksCPU, err := tok.Lookup("cpu", cpu, "sys") | 
					
						
							|  |  |  | 		if err != nil { | 
					
						
							|  |  |  | 			return err | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		for k, v := range map[string]string{ | 
					
						
							| 
									
										
										
										
											2024-05-15 00:13:32 -07:00
										 |  |  | 			"idle":   "cpu_nsec_idle", | 
					
						
							|  |  |  | 			"kernel": "cpu_nsec_kernel", | 
					
						
							|  |  |  | 			"user":   "cpu_nsec_user", | 
					
						
							|  |  |  | 			"wait":   "cpu_nsec_wait", | 
					
						
							| 
									
										
										
										
											2019-01-12 04:33:56 -08:00
										 |  |  | 		} { | 
					
						
							|  |  |  | 			kstatValue, err := ksCPU.GetNamed(v) | 
					
						
							|  |  |  | 			if err != nil { | 
					
						
							|  |  |  | 				return err | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-05-15 00:13:32 -07:00
										 |  |  | 			ch <- c.cpu.mustNewConstMetric(float64(kstatValue.UintVal)/1e9, strconv.Itoa(cpu), k) | 
					
						
							| 
									
										
										
										
											2019-01-12 04:33:56 -08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return nil | 
					
						
							|  |  |  | } |