| 
									
										
										
										
											2019-07-10 00:16:24 -07: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.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-03 04:35:24 -07:00
										 |  |  | //go:build !noshedstat
 | 
					
						
							| 
									
										
										
										
											2020-06-12 01:26:30 -07:00
										 |  |  | // +build !noshedstat
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-07-10 00:16:24 -07:00
										 |  |  | package collector | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							| 
									
										
										
										
											2020-06-15 13:27:14 -07:00
										 |  |  | 	"errors" | 
					
						
							| 
									
										
										
										
											2019-07-10 00:16:24 -07:00
										 |  |  | 	"fmt" | 
					
						
							| 
									
										
										
										
											2024-09-11 01:51:28 -07:00
										 |  |  | 	"log/slog" | 
					
						
							| 
									
										
										
										
											2020-03-19 11:50:36 -07:00
										 |  |  | 	"os" | 
					
						
							| 
									
										
										
										
											2019-07-10 00:16:24 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	"github.com/prometheus/client_golang/prometheus" | 
					
						
							|  |  |  | 	"github.com/prometheus/procfs" | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-06 10:08:06 -07:00
										 |  |  | const nsPerSec = 1e9 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-07-10 00:16:24 -07:00
										 |  |  | var ( | 
					
						
							|  |  |  | 	runningSecondsTotal = prometheus.NewDesc( | 
					
						
							|  |  |  | 		prometheus.BuildFQName(namespace, "schedstat", "running_seconds_total"), | 
					
						
							|  |  |  | 		"Number of seconds CPU spent running a process.", | 
					
						
							|  |  |  | 		[]string{"cpu"}, | 
					
						
							|  |  |  | 		nil, | 
					
						
							|  |  |  | 	) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	waitingSecondsTotal = prometheus.NewDesc( | 
					
						
							|  |  |  | 		prometheus.BuildFQName(namespace, "schedstat", "waiting_seconds_total"), | 
					
						
							|  |  |  | 		"Number of seconds spent by processing waiting for this CPU.", | 
					
						
							|  |  |  | 		[]string{"cpu"}, | 
					
						
							|  |  |  | 		nil, | 
					
						
							|  |  |  | 	) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	timeslicesTotal = prometheus.NewDesc( | 
					
						
							|  |  |  | 		prometheus.BuildFQName(namespace, "schedstat", "timeslices_total"), | 
					
						
							|  |  |  | 		"Number of timeslices executed by CPU.", | 
					
						
							|  |  |  | 		[]string{"cpu"}, | 
					
						
							|  |  |  | 		nil, | 
					
						
							|  |  |  | 	) | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // NewSchedstatCollector returns a new Collector exposing task scheduler statistics
 | 
					
						
							| 
									
										
										
										
											2024-09-11 01:51:28 -07:00
										 |  |  | func NewSchedstatCollector(logger *slog.Logger) (Collector, error) { | 
					
						
							| 
									
										
										
										
											2019-07-10 00:16:24 -07:00
										 |  |  | 	fs, err := procfs.NewFS(*procPath) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2019-11-29 05:51:31 -08:00
										 |  |  | 		return nil, fmt.Errorf("failed to open procfs: %w", err) | 
					
						
							| 
									
										
										
										
											2019-07-10 00:16:24 -07:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-12-31 08:19:37 -08:00
										 |  |  | 	return &schedstatCollector{fs, logger}, nil | 
					
						
							| 
									
										
										
										
											2019-07-10 00:16:24 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | type schedstatCollector struct { | 
					
						
							| 
									
										
										
										
											2019-12-31 08:19:37 -08:00
										 |  |  | 	fs     procfs.FS | 
					
						
							| 
									
										
										
										
											2024-09-11 01:51:28 -07:00
										 |  |  | 	logger *slog.Logger | 
					
						
							| 
									
										
										
										
											2019-07-10 00:16:24 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func init() { | 
					
						
							|  |  |  | 	registerCollector("schedstat", defaultEnabled, NewSchedstatCollector) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (c *schedstatCollector) Update(ch chan<- prometheus.Metric) error { | 
					
						
							|  |  |  | 	stats, err := c.fs.Schedstat() | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2020-06-15 13:27:14 -07:00
										 |  |  | 		if errors.Is(err, os.ErrNotExist) { | 
					
						
							| 
									
										
										
										
											2024-09-11 01:51:28 -07:00
										 |  |  | 			c.logger.Debug("schedstat file does not exist") | 
					
						
							| 
									
										
										
										
											2020-03-19 11:50:36 -07:00
										 |  |  | 			return ErrNoData | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2019-07-10 00:16:24 -07:00
										 |  |  | 		return err | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for _, cpu := range stats.CPUs { | 
					
						
							|  |  |  | 		ch <- prometheus.MustNewConstMetric( | 
					
						
							|  |  |  | 			runningSecondsTotal, | 
					
						
							|  |  |  | 			prometheus.CounterValue, | 
					
						
							| 
									
										
										
										
											2019-08-06 10:08:06 -07:00
										 |  |  | 			float64(cpu.RunningNanoseconds)/nsPerSec, | 
					
						
							| 
									
										
										
										
											2019-07-10 00:16:24 -07:00
										 |  |  | 			cpu.CPUNum, | 
					
						
							|  |  |  | 		) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		ch <- prometheus.MustNewConstMetric( | 
					
						
							|  |  |  | 			waitingSecondsTotal, | 
					
						
							|  |  |  | 			prometheus.CounterValue, | 
					
						
							| 
									
										
										
										
											2019-08-06 10:08:06 -07:00
										 |  |  | 			float64(cpu.WaitingNanoseconds)/nsPerSec, | 
					
						
							| 
									
										
										
										
											2019-07-10 00:16:24 -07:00
										 |  |  | 			cpu.CPUNum, | 
					
						
							|  |  |  | 		) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		ch <- prometheus.MustNewConstMetric( | 
					
						
							|  |  |  | 			timeslicesTotal, | 
					
						
							|  |  |  | 			prometheus.CounterValue, | 
					
						
							|  |  |  | 			float64(cpu.RunTimeslices), | 
					
						
							|  |  |  | 			cpu.CPUNum, | 
					
						
							|  |  |  | 		) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return nil | 
					
						
							|  |  |  | } |