Implement vLLM VM Monitoring and Metrics Export Pipeline#2331
Merged
cb-github-robot merged 3 commits intocloud-barista:mainfrom Feb 26, 2026
Merged
Implement vLLM VM Monitoring and Metrics Export Pipeline#2331cb-github-robot merged 3 commits intocloud-barista:mainfrom
cb-github-robot merged 3 commits intocloud-barista:mainfrom
Conversation
Member
|
/approve |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Implement vLLM VM Monitoring and Metrics Export Pipeline
Overview
This PR introduces a comprehensive monitoring and data extraction pipeline for our GPU VMs serving models via vLLM.
Pipeline Architecture & Features
1. Target VM Setup (
setup_gpu_sensor.sh)This script is executed on the target GPU VMs to set up the data collection endpoints.
Auto-GPU Detection & Profiling: Automatically detects the underlying GPU architecture and deploys the dedicated official exporter:
DCGM Exporterfor deep GPU insights.ROCm Device Metrics Exporterfor AMD-specific metrics.System Metrics: Deploys
node-exporterto track host-level information (CPU, Memory, Network).vLLM Metrics: Exposes native serving and inference metrics provided by the vLLM engine.
Telegraf Aggregation: Uses Telegraf to collect and aggregate these three data sources (System, GPU, vLLM) and route them efficiently to the central monitoring VM.
2. Central Monitoring Setup (
setup_monitoring.sh)This script sets up the central control tower to gather data from the target VMs.
3. Data Extraction Tool (
export_metrics.sh)A custom extraction tool for data analysis and reporting.
.conf) to customize the extraction.