nvfleetint

작성자: nvidia

NVIDIA Fleet Intelligence를 nvfleetint CLI로 쿼리합니다. 플릿, 노드, GPU, 노드 그룹, 컴퓨트 존, 알림, 에이전트 상태 등에 대한 임시 질문에 사용합니다.

npx skills add https://github.com/nvidia/fleet-intelligence-client --skill nvfleetint

Query Fleet Intelligence

Use live nvfleetint JSON; never answer fleet-state questions from memory. Read references/cli-contract.md before querying. Read references/auth.md only for setup/profile work.

Method

  1. Run the smallest server-filtered query that answers the question.
  2. Use --output json; give the user prose, not command dumps.
  3. For counts, use --page-size 1 and read .total. For identities, add --view basic. Use --all only when every row is required.
  4. Lead with the answer; add a small table only for comparisons/listings.
  5. Never infer absent fields or mistake auth failure for no results.

Choose a command

NeedCommand
Fleet totals/health/metricsoverview
Zones or node groupscomputezone list, nodegroup list
Nodes/current detailnode list, node describe <uuid>
Node health historynode health <uuid>
Fleet alert recordsalert list
Alert impact/investigationalert summary, alert node, alert describe, alert options
Raw events/histogramevent list, event buckets
Customer tagstag list
Inventory/error reportsreport inventory, report error
Verify signed reportreport verify
Filter/sort values a command acceptsnode options, nodegroup options, alert options, xidburst options

Overview and inventory

nvfleetint overview --output json
nvfleetint overview --include-metrics=false --output json
nvfleetint computezone list --include-metrics=false --output json
nvfleetint computezone list --output json
nvfleetint nodegroup list --compute-zone-ids <zone-id> --health Degraded,Unhealthy --output json
nvfleetint nodegroup list --gpu-type H100 --sort-by health --order desc --output json

overview is one non-paginated object. Use lists for rows behind its counts.

Nodes

nvfleetint node list --health Degraded,Unhealthy --output json
nvfleetint node list --agent-status Offline --output json
nvfleetint node list --hostname gpu-node-7 --view basic --output json
nvfleetint node list --compute-zone-names ord --output json
nvfleetint node list --nodegroup-names training --output json
nvfleetint node list --agent-type oob --bmc-hostname bmc-01 --output json
nvfleetint node describe <node-uuid> --output json
nvfleetint node describe <node-uuid> --agent-type oob --output json
nvfleetint node health <node-uuid> --start <rfc3339> --end <rfc3339> --output json

Ask users for human-readable zone/group names, never IDs. Name filters are comma-separated partial matches. For exact scope, resolve with computezone list --view basic or nodegroup list --view basic, clarify ambiguous names with recognizable detail metadata, then use IDs internally. Accept an ID already supplied by the user.

Detailed node list and describe query both agent views by default and return {inband: ..., oob: ...} in JSON. Use --agent-type inband|oob when only one view is needed. OOB list supports --bmc-hostname; OOB describe includes full inventory JSON and supports table sections managers, systems, chassis, and firmware. Node basic rejects health, agent, verification, and firmware filters and supports sorting by hostname, nodeUUID, or bmcHostname. node health requires both absolute boundaries. It does not support --window.

Filter values:

FlagValues
--healthHealthy, Degraded, Unhealthy, Unknown
--agent-statusOnline, Offline, Unknown
--verification-checkVerified, Unverified, Degraded, Pending, Unsupported, Unknown
--firmware-checkPassed, Failed, Unknown

Node sort keys are hostname, nodeUUID, healthStatus, nodegroup, computezone, gpuType, gpuCount, verificationCheck, agentStatus, agentVersion, kernelVersion, gpuDriverVersion, gpuFirmwareVersions, and bmcHostname. The backend spelling integrityCheck remains accepted as an alias for verificationCheck. Node-group sort keys are health and nodes.

Alerts and events

nvfleetint alert list --severity Critical --output json
nvfleetint alert list --node <node-uuid> --state Triggered --output json
nvfleetint alert summary --output json
nvfleetint alert summary --view historical --output json
nvfleetint alert node <node-uuid> --output json
nvfleetint alert node <node-uuid> --view historical --output json
nvfleetint alert describe <alert-uuid> --node <node-uuid> --output json
nvfleetint alert options --output json
nvfleetint event list --window 24h --output json
nvfleetint event buckets --window 168h --max-buckets 50 --output json

Alert severity is Critical/Warning; state is Detected/Triggered/Resolved. alert summary, alert node, and alert options default to the active view; use --view historical for history. Summary returns impacted nodes plus fleet-wide alert aggregates. Node returns alerts for one node. Describe returns one alert's event history. In node-alert results, Critical/Warning values are active severity; Detected/Resolved are inactive audit values. Don't count every non-Resolved row as active.

Events require --window or both --start/--end. Durations use Go units through hours—no d. Event list paginates; buckets do not.

Tags and reports

nvfleetint tag list --prefix gpu --output json
nvfleetint tag list --computezone <zone-id> --output json
nvfleetint report inventory --compute-zone-ids <zone-id> --nodegroup-ids <group-id> --all --output json
nvfleetint report inventory --format csv --signed --output-path ./reports/
nvfleetint report error --view list --group-by error --window 168h --severities Critical,Fatal --output json
nvfleetint report error --view graph --window 24h --step 5m --output json
nvfleetint report verify --csv report.csv --bundle report.sig.bundle

Use at most one tag scope flag: --node, --nodegroup, or --computezone; tag list has no pagination. tag set <node-uuid> --tags <list> is the one command here that writes: it replaces a node's tags rather than adding to them, so run it only when the user asks for that change by name, pass --yes, and never use it to gather data. Report-error list requires --group-by error|node; only list supports --all and CSV. Signed inventory requires CSV. Report filters accept compute zone IDs, node group IDs, and tags; error reports also accept --errors, --severities, and graph-only --step.

Example

For “Are any H100 nodes having problems?”, query H100 nodes filtered to Degraded/Unhealthy/Unknown. Include Unknown, read the filtered total, list only returned problem nodes, and do not claim the remaining H100 fleet is healthy without a separate query. Drill into requested UUIDs with node describe and node-scoped alerts.

nvidia의 다른 스킬

compileiq-debug
nvidia
무언가 잘못되었을 때 사용: Search()가 멈추거나, 모든 평가가 INVALID_SCORE를 반환하거나, 점수가 개선되지 않거나, 모든 설정이 동일한 숫자를 반환하거나, ptxas 오류 등이 발생할 때
create-github-pr
nvidia
gh CLI를 사용하여 GitHub 풀 리퀘스트를 생성합니다. 사용자가 새 PR을 만들거나, 코드 리뷰를 제출하거나, 풀 리퀘스트를 열고자 할 때 사용합니다. 트리거 키워드 -…
nemoclaw-maintainer-cross-issue-sweep
nvidia
다른 열린 이슈들을 스캔하여 주어진 PR이 함께 수정하거나 실수로 망가뜨릴 수 있는 이슈를 찾습니다. 인접 수정 기회와 모순 위험을 file:line…과 함께 출력합니다.
fhir-basics
nvidia
에이전트에게 FHIR R4 API의 작동 방식, 사용 가능한 리소스, 검색 매개변수를 사용한 쿼리 방법, 모든 응답 형식을 올바르게 파싱하는 방법을 가르칩니다…
compileiq-validate-result
nvidia
검색이 완료된 후, 속도 향상을 청구하거나 ACF를 발송하기 전에 사용합니다. dump_results CSV를 로드하고, 상위 K개 후보(단일 목표)를 추출합니다…
changelog-audit
nvidia
릴리스 전에 Warp CHANGELOG.md를 감사합니다: 누락된 항목 복구, 사용자 영향별 정렬, 항목 언어 다듬기, 줄 바꿈, (릴리스 브랜치 모드) 비교 업데이트…
maintain-dynamic-plugins
nvidia
NeMo Relay 동적 플러그인 로더, 매니페스트, Rust 네이티브 SDK, gRPC 워커 프로토콜, Python 워커 SDK, 문서, 테스트 및 릴리스 워크플로 커버리지를 유지 관리합니다.
dgx-diagnose
nvidia
일반적인 DGX Station GB300 문제 진단 — CUDA 충돌, 잘못된 GPU 타겟팅, vLLM/SGLang 컨테이너 버그, MIG 상태 문제, NVLink/Fabric Manager 오류,…