| 
									
										
										
										
											2015-11-11 05:02:41 -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.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-03 04:35:24 -07:00
										 |  |  | //go:build !noksmd
 | 
					
						
							| 
									
										
										
										
											2015-11-11 05:02:41 -08:00
										 |  |  | // +build !noksmd
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | package collector | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							|  |  |  | 	"fmt" | 
					
						
							| 
									
										
										
										
											2024-09-11 01:51:28 -07:00
										 |  |  | 	"log/slog" | 
					
						
							| 
									
										
										
										
											2019-02-05 07:37:27 -08:00
										 |  |  | 	"path/filepath" | 
					
						
							| 
									
										
										
										
											2015-11-11 05:02:41 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	"github.com/prometheus/client_golang/prometheus" | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | var ( | 
					
						
							|  |  |  | 	ksmdFiles = []string{"full_scans", "merge_across_nodes", "pages_shared", "pages_sharing", | 
					
						
							|  |  |  | 		"pages_to_scan", "pages_unshared", "pages_volatile", "run", "sleep_millisecs"} | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | type ksmdCollector struct { | 
					
						
							|  |  |  | 	metricDescs map[string]*prometheus.Desc | 
					
						
							| 
									
										
										
										
											2024-09-11 01:51:28 -07:00
										 |  |  | 	logger      *slog.Logger | 
					
						
							| 
									
										
										
										
											2015-11-11 05:02:41 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func init() { | 
					
						
							| 
									
										
										
										
											2017-09-28 06:06:26 -07:00
										 |  |  | 	registerCollector("ksmd", defaultDisabled, NewKsmdCollector) | 
					
						
							| 
									
										
										
										
											2015-11-11 05:02:41 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func getCanonicalMetricName(filename string) string { | 
					
						
							|  |  |  | 	switch filename { | 
					
						
							|  |  |  | 	case "full_scans": | 
					
						
							|  |  |  | 		return filename + "_total" | 
					
						
							|  |  |  | 	case "sleep_millisecs": | 
					
						
							|  |  |  | 		return "sleep_seconds" | 
					
						
							|  |  |  | 	default: | 
					
						
							|  |  |  | 		return filename | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-28 08:44:53 -08:00
										 |  |  | // NewKsmdCollector returns a new Collector exposing kernel/system statistics.
 | 
					
						
							| 
									
										
										
										
											2024-09-11 01:51:28 -07:00
										 |  |  | func NewKsmdCollector(logger *slog.Logger) (Collector, error) { | 
					
						
							| 
									
										
										
										
											2015-11-11 05:02:41 -08:00
										 |  |  | 	subsystem := "ksmd" | 
					
						
							|  |  |  | 	descs := make(map[string]*prometheus.Desc) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for _, n := range ksmdFiles { | 
					
						
							|  |  |  | 		descs[n] = prometheus.NewDesc( | 
					
						
							| 
									
										
										
										
											2017-09-28 06:06:26 -07:00
										 |  |  | 			prometheus.BuildFQName(namespace, subsystem, getCanonicalMetricName(n)), | 
					
						
							| 
									
										
										
										
											2015-11-11 05:02:41 -08:00
										 |  |  | 			fmt.Sprintf("ksmd '%s' file.", n), nil, nil) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2019-12-31 08:19:37 -08:00
										 |  |  | 	return &ksmdCollector{descs, logger}, nil | 
					
						
							| 
									
										
										
										
											2015-11-11 05:02:41 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-28 08:44:53 -08:00
										 |  |  | // Update implements Collector and exposes kernel and system statistics.
 | 
					
						
							| 
									
										
										
										
											2017-02-28 10:47:20 -08:00
										 |  |  | func (c *ksmdCollector) Update(ch chan<- prometheus.Metric) error { | 
					
						
							| 
									
										
										
										
											2015-11-11 05:02:41 -08:00
										 |  |  | 	for _, n := range ksmdFiles { | 
					
						
							| 
									
										
										
										
											2019-02-05 07:37:27 -08:00
										 |  |  | 		val, err := readUintFromFile(sysFilePath(filepath.Join("kernel/mm/ksm", n))) | 
					
						
							| 
									
										
										
										
											2015-11-11 05:02:41 -08:00
										 |  |  | 		if err != nil { | 
					
						
							|  |  |  | 			return err | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		t := prometheus.GaugeValue | 
					
						
							|  |  |  | 		v := float64(val) | 
					
						
							|  |  |  | 		switch n { | 
					
						
							|  |  |  | 		case "full_scans": | 
					
						
							|  |  |  | 			t = prometheus.CounterValue | 
					
						
							|  |  |  | 		case "sleep_millisecs": | 
					
						
							|  |  |  | 			v /= 1000 | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		ch <- prometheus.MustNewConstMetric(c.metricDescs[n], t, v) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return nil | 
					
						
							|  |  |  | } |