Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计未展示

dcgm_exporterdcgm 出口商

Agent Skill

用于辅助前端页面、组件、样式和交互逻辑的开发与维护。它适合让 Agent 生成或审查 React、Next.js、Vue、Tailwind、CSS 等相关代码,整理组件结构,或定位布局和性能问题。使用时需要结合项目现有设计系统、路由和构建方式,避免只生成孤立片段;涉及页面改动时,应配合本地预览和构建检查确认视觉效果。

总安装

235

周安装

10

GitHub Stars

公开资料未说明

下载量

82
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:dcgm_exporter(dcgm 出口商)
来源仓库:https://github.com/davidcastagnetoa/skills
仓库路径:skills/dcgm_exporter
安装命令:
npx skills add https://github.com/davidcastagnetoa/skills --skill dcgm_exporter
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/davidcastagnetoa/skills --skill dcgm_exporter

简介

dcgm_exporter 用于监控数据中心 GPU 的性能指标,包括显存使用率、温度和功耗等关键参数。

  • 适合在机器学习推理流水线中实时追踪 GPU 资源状态,诊断性能瓶颈或优化硬件利用率时调用。
  • 支持整理 ECC 错误计数和 VRAM 使用情况,为面部识别和反欺诈模型的部署提供运维洞察。
  • 使用前需确保 DCGM 服务已正确安装,并配置好与 Prometheus 等监控系统的集成路径。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

dcgm_exporter

NVIDIA Data Center GPU Manager (DCGM) Exporter para recopilar metricas detalladas de GPU de los nodos de inferencia del pipeline KYC. Monitorea utilizacion de GPU, memoria VRAM, temperatura, consumo energetico y errores ECC en las tarjetas que ejecutan los modelos de reconocimiento facial (ArcFace/InsightFace), deteccion de vida y analisis antifraude.

When to use

Usa esta skill cuando necesites monitorear el estado y rendimiento de las GPUs que ejecutan inferencia ML en el pipeline de verificacion KYC. Pertenece al observability_agent y se aplica cuando hay que diagnosticar cuellos de botella en GPU, planificar escalado de nodos de inferencia o detectar degradacion de hardware en las tarjetas graficas.

Instructions

  1. Desplegar DCGM Exporter como DaemonSet en los nodos con GPU del cluster: # k8s/dcgm-exporter-daemonset.yml apiVersion: apps/v1 kind: DaemonSet metadata: name: dcgm-exporter namespace: monitoring spec: selector: matchLabels: app: dcgm-exporter template: metadata: labels: app: dcgm-exporter spec: nodeSelector: nvidia.com/gpu.present: "true" containers: - name: dcgm-exporter image: nvcr.io/nvidia/k8s/dcgm-exporter:3.3.8-3.6.0-ubuntu22.04 ports: - containerPort: 9400 name: metrics securityContext: runAsNonRoot: false capabilities: add: ["SYS_ADMIN"] volumeMounts: - name: dcgm-counters mountPath: /etc/dcgm-exporter/customized.csv subPath: customized.csv volumes: - name: dcgm-counters configMap: name: dcgm-custom-counters
  2. Definir contadores personalizados relevantes para la carga de inferencia KYC: # customized.csv DCGM_FI_DEV_GPU_UTIL, gauge, GPU utilization DCGM_FI_DEV_MEM_COPY_UTIL, gauge, Memory utilization DCGM_FI_DEV_FB_FREE, gauge, Free framebuffer memory (MB) DCGM_FI_DEV_FB_USED, gauge, Used framebuffer memory (MB) DCGM_FI_DEV_GPU_TEMP, gauge, GPU temperature (C) DCGM_FI_DEV_POWER_USAGE, gauge, Power usage (W) DCGM_FI_DEV_ECC_SBE_VOL_TOTAL, counter, Single-bit ECC errors DCGM_FI_DEV_ECC_DBE_VOL_TOTAL, counter, Double-bit ECC errors DCGM_FI_DEV_SM_CLOCK, gauge, SM clock frequency (MHz) DCGM_FI_DEV_PCIE_TX_THROUGHPUT, counter, PCIe TX throughput DCGM_FI_DEV_PCIE_RX_THROUGHPUT, counter, PCIe RX throughput DCGM_FI_PROF_GR_ENGINE_ACTIVE, gauge, Graphics engine active ratio
  3. Configurar el scrape de Prometheus para los endpoints de DCGM Exporter: scrape_configs: - job_name: 'dcgm-exporter' scrape_interval: 15s kubernetes_sd_configs: - role: pod relabel_configs: - source_labels: [__meta_kubernetes_pod_label_app] regex: dcgm-exporter action: keep - source_labels: [__meta_kubernetes_pod_node_name] target_label: node
  4. Crear alertas para condiciones criticas de GPU en los nodos de inferencia: groups: - name: gpu-health rules: - alert: GPUHighTemperature expr: DCGM_FI_DEV_GPU_TEMP > 85 for: 2m labels: severity: critical annotations: summary: "GPU {{$labels.gpu}} en nodo {{$labels.node}} a {{$value}}C" - alert: GPUMemoryExhausted expr: DCGM_FI_DEV_FB_FREE < 512 for: 1m labels: severity: critical annotations: summary: "GPU {{$labels.gpu}} con menos de 512MB VRAM libre" - alert: GPUECCErrors expr: rate(DCGM_FI_DEV_ECC_DBE_VOL_TOTAL[5m]) > 0 for: 1m labels: severity: critical annotations: summary: "Errores ECC double-bit detectados en GPU {{$labels.gpu}}"
  5. Definir alertas de rendimiento para detectar degradacion de la inferencia: - alert: GPUUtilizationLow expr: DCGM_FI_DEV_GPU_UTIL < 10 and on(node) kube_node_status_condition{condition="Ready",status="true"} == 1 for: 10m labels: severity: warning annotations: summary: "GPU infrautilizada en {{$labels.node}}, considerar consolidar carga" - alert: GPUUtilizationSaturated expr: DCGM_FI_DEV_GPU_UTIL > 95 for: 5m labels: severity: warning annotations: summary: "GPU saturada en {{$labels.node}}, posible cuello de botella en inferencia"
  6. Crear un dashboard de Grafana especifico para los nodos de inferencia KYC: {"panels": [{"title": "GPU Utilization por Nodo", "targets": [{"expr": "DCGM_FI_DEV_GPU_UTIL", "legendFormat": "{{node}}/{{gpu}}"}]}, {"title": "VRAM Usada vs Disponible", "targets": [{"expr": "DCGM_FI_DEV_FB_USED", "legendFormat": "Usada {{gpu}}"}, {"expr": "DCGM_FI_DEV_FB_FREE", "legendFormat": "Libre {{gpu}}"}]}, {"title": "Correlacion GPU vs Latencia KYC", "targets": [{"expr": "DCGM_FI_DEV_GPU_UTIL"}, {"expr": "histogram_quantile(0.95, rate(kyc_verification_duration_seconds_bucket{stage='face_match'}[5m]))"}]}]}
  7. Verificar que el NVIDIA device plugin y los drivers estan correctamente instalados: kubectl get nodes -o json | jq '.items[].status.allocatable["nvidia.com/gpu"]' dcgmi discovery -l

Notes

  • Los modelos ArcFace e InsightFace requieren VRAM significativa; la alerta de GPUMemoryExhausted debe ajustarse segun el tamano de los modelos cargados y el batch size de inferencia configurado.
  • Los errores ECC double-bit son criticos e indican degradacion del hardware de la GPU; cuando se detecten, se debe drenar el nodo y reemplazar la tarjeta para evitar resultados de inferencia corruptos en las comparaciones faciales.
  • El throughput de PCIe es relevante para detectar cuellos de botella en la transferencia de imagenes entre CPU y GPU, especialmente cuando se procesan multiples sesiones de verificacion en paralelo.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

37.25%
按下载量换算31

Claude

31.33%
按下载量换算26

Cursor

17.41%
按下载量换算14

Gemini CLI

9.79%
按下载量换算8

安全审计

暂无安全审计结果可展示。

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills