1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140
|
// Copyright 2021 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.
//go:build !nogpu
// +build !nogpu
package collector
import (
"fmt"
"log/slog"
"github.com/prometheus/client_golang/prometheus"
"github.com/prometheus/procfs/sysfs"
)
const (
drmCollectorSubsystem = "drm"
)
type drmCollector struct {
fs sysfs.FS
logger *slog.Logger
CardInfo *prometheus.Desc
GPUBusyPercent *prometheus.Desc
MemoryGTTSize *prometheus.Desc
MemoryGTTUsed *prometheus.Desc
MemoryVisibleVRAMSize *prometheus.Desc
MemoryVisibleVRAMUsed *prometheus.Desc
MemoryVRAMSize *prometheus.Desc
MemoryVRAMUsed *prometheus.Desc
}
func init() {
registerCollector("drm", defaultDisabled, NewDrmCollector)
}
// NewDrmCollector returns a new Collector exposing /sys/class/drm/card?/device stats.
func NewDrmCollector(logger *slog.Logger) (Collector, error) {
fs, err := sysfs.NewFS(*sysPath)
if err != nil {
return nil, fmt.Errorf("failed to open sysfs: %w", err)
}
return &drmCollector{
fs: fs,
logger: logger,
CardInfo: prometheus.NewDesc(
prometheus.BuildFQName(namespace, drmCollectorSubsystem, "card_info"),
"Card information",
[]string{"card", "memory_vendor", "power_performance_level", "unique_id", "vendor"}, nil,
),
GPUBusyPercent: prometheus.NewDesc(
prometheus.BuildFQName(namespace, drmCollectorSubsystem, "gpu_busy_percent"),
"How busy the GPU is as a percentage.",
[]string{"card"}, nil,
),
MemoryGTTSize: prometheus.NewDesc(
prometheus.BuildFQName(namespace, drmCollectorSubsystem, "memory_gtt_size_bytes"),
"The size of the graphics translation table (GTT) block in bytes.",
[]string{"card"}, nil,
),
MemoryGTTUsed: prometheus.NewDesc(
prometheus.BuildFQName(namespace, drmCollectorSubsystem, "memory_gtt_used_bytes"),
"The used amount of the graphics translation table (GTT) block in bytes.",
[]string{"card"}, nil,
),
MemoryVisibleVRAMSize: prometheus.NewDesc(
prometheus.BuildFQName(namespace, drmCollectorSubsystem, "memory_vis_vram_size_bytes"),
"The size of visible VRAM in bytes.",
[]string{"card"}, nil,
),
MemoryVisibleVRAMUsed: prometheus.NewDesc(
prometheus.BuildFQName(namespace, drmCollectorSubsystem, "memory_vis_vram_used_bytes"),
"The used amount of visible VRAM in bytes.",
[]string{"card"}, nil,
),
MemoryVRAMSize: prometheus.NewDesc(
prometheus.BuildFQName(namespace, drmCollectorSubsystem, "memory_vram_size_bytes"),
"The size of VRAM in bytes.",
[]string{"card"}, nil,
),
MemoryVRAMUsed: prometheus.NewDesc(
prometheus.BuildFQName(namespace, drmCollectorSubsystem, "memory_vram_used_bytes"),
"The used amount of VRAM in bytes.",
[]string{"card"}, nil,
),
}, nil
}
func (c *drmCollector) Update(ch chan<- prometheus.Metric) error {
return c.updateAMDCards(ch)
}
func (c *drmCollector) updateAMDCards(ch chan<- prometheus.Metric) error {
vendor := "amd"
stats, err := c.fs.ClassDRMCardAMDGPUStats()
if err != nil {
return err
}
for _, s := range stats {
ch <- prometheus.MustNewConstMetric(
c.CardInfo, prometheus.GaugeValue, 1,
s.Name, s.MemoryVRAMVendor, s.PowerDPMForcePerformanceLevel, s.UniqueID, vendor)
ch <- prometheus.MustNewConstMetric(
c.GPUBusyPercent, prometheus.GaugeValue, float64(s.GPUBusyPercent), s.Name)
ch <- prometheus.MustNewConstMetric(
c.MemoryGTTSize, prometheus.GaugeValue, float64(s.MemoryGTTSize), s.Name)
ch <- prometheus.MustNewConstMetric(
c.MemoryGTTUsed, prometheus.GaugeValue, float64(s.MemoryGTTUsed), s.Name)
ch <- prometheus.MustNewConstMetric(
c.MemoryVRAMSize, prometheus.GaugeValue, float64(s.MemoryVRAMSize), s.Name)
ch <- prometheus.MustNewConstMetric(
c.MemoryVRAMUsed, prometheus.GaugeValue, float64(s.MemoryVRAMUsed), s.Name)
ch <- prometheus.MustNewConstMetric(
c.MemoryVisibleVRAMSize, prometheus.GaugeValue, float64(s.MemoryVisibleVRAMSize), s.Name)
ch <- prometheus.MustNewConstMetric(
c.MemoryVisibleVRAMUsed, prometheus.GaugeValue, float64(s.MemoryVisibleVRAMUsed), s.Name)
}
return nil
}
|