// Copyright 2024 RustFS Team // // 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. use crate::GlobalError; use crate::system::attributes::ProcessAttributes; use crate::system::metrics::Metrics; use nvml_wrapper::Nvml; use nvml_wrapper::enums::device::UsedGpuMemory; use sysinfo::Pid; use tracing::warn; /// `GpuCollector` is responsible for collecting GPU memory usage metrics. pub struct GpuCollector { nvml: Nvml, pid: Pid, } impl GpuCollector { pub fn new(pid: Pid) -> Result { let nvml = Nvml::init().map_err(|e| GlobalError::GpuInitError(e.to_string()))?; Ok(GpuCollector { nvml, pid }) } pub fn collect(&self, metrics: &Metrics, attributes: &ProcessAttributes) -> Result<(), GlobalError> { if let Ok(device) = self.nvml.device_by_index(0) { if let Ok(gpu_stats) = device.running_compute_processes() { for stat in gpu_stats.iter() { if stat.pid == self.pid.as_u32() { let memory_used = match stat.used_gpu_memory { UsedGpuMemory::Used(bytes) => bytes, UsedGpuMemory::Unavailable => 0, }; metrics.gpu_memory_usage.record(memory_used, &attributes.attributes); return Ok(()); } } } else { warn!("Could not get GPU stats, recording 0 for GPU memory usage"); } } else { return Err(GlobalError::GpuDeviceError("No GPU device found".to_string())); } metrics.gpu_memory_usage.record(0, &attributes.attributes); Ok(()) } }