Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计异常

fleet-management车队管理

Agent Skill

fleet-management 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,105

周安装

47

GitHub Stars

26

下载量

387
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/grafana/skills --skill fleet-management

简介

用于集中管控多个 Grafana 实例上的技能安装与更新状态。

  • 适合大型企业环境中统一技能生命周期管理。fleet-management 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 支持灰度发布与回滚机制,降低大规模更新的风险。
  • 需在各实例上预先开放技能仓库的访问权限。
  • 注意:技能更新可能引起界面变动,建议在非高峰时段操作。

SKILL.md

Grafana Fleet Management and Alloy Configuration

Fleet Management lets you author pipeline configurations once and distribute them to many Alloy collectors remotely via OpAMP. Collectors poll for updates and apply new configurations without a restart.

Key concepts:

  • Collector - an Alloy agent instance, identified by a unique ID and set of attributes
  • Pipeline - a named Alloy configuration (YAML) stored in Fleet Management
  • Matcher - a label selector that maps a pipeline to matching collectors
  • Attributes - key/value labels on a collector used for targeting (e.g. env=production)

Step 1: Check the current state

BASE=https://fleet-management-prod-us-east-0.grafana.net
TOKEN=<STACK_ID>:<API_TOKEN>

# List all registered collectors and their health status
curl -s -X POST "$BASE/collector.v1.CollectorService/ListCollectors" \
  -H "Authorization: Bearer $TOKEN" \
  -H "Content-Type: application/json" \
  -d '{}' | jq '.collectors[] | {id, name, remoteConfigStatus}'

# List all pipelines
curl -s -X POST "$BASE/pipeline.v1.PipelineService/ListPipelines" \
  -H "Authorization: Bearer $TOKEN" \
  -H "Content-Type: application/json" \
  -d '{}'

In the Grafana Cloud UI: Connections > Collector > Fleet Management > Collector Inventory.

Healthy collectors show REMOTE_CONFIG_STATUS_APPLIED. Degraded collectors show REMOTE_CONFIG_STATUS_FAILED with a remoteConfigStatusMessage describing the error.


Step 2: Understand the pipeline YAML format

Pipelines are valid Alloy configuration files. Alloy uses a HCL-like syntax called River.

// Basic metrics pipeline: scrape Prometheus metrics and forward to Grafana Cloud
prometheus.scrape "default" {
  targets    = discovery.relabel.filtered.output
  forward_to = [prometheus.remote_write.grafana_cloud.receiver]
  scrape_interval = "60s"
}

prometheus.remote_write "grafana_cloud" {
  endpoint {
    url = "https://prometheus-prod-01-eu-west-0.grafana.net/api/prom/push"
    basic_auth {
      username = "<METRICS_USERNAME>"
      password = env("GRAFANA_CLOUD_API_KEY")
    }
  }
}

Key Alloy component categories:

CategoryExample components
Discoverydiscovery.kubernetes, discovery.docker, discovery.relabel
Metricsprometheus.scrape, prometheus.remote_write, prometheus.operator.*
Logsloki.source.file, loki.source.kubernetes, loki.write
Tracesotelcol.receiver.otlp, otelcol.exporter.otlp
Profilespyroscope.scrape, pyroscope.write
Transformationotelcol.processor.batch, otelcol.processor.filter

Reference: Alloy component documentation


Step 3: Create a pipeline

# Create a pipeline via API (contents is plain text Alloy config, not base64)
curl -s -X POST "$BASE/pipeline.v1.PipelineService/CreatePipeline" \
  -H "Authorization: Bearer $TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "k8s-metrics",
    "contents": "prometheus.scrape \"default\" {\n  targets = []\n  forward_to = []\n}",
    "matchers": [
      {"name": "env", "value": "production", "type": "EQUAL"}
    ]
  }'

In the UI: Fleet Management > Remote Configuration > Create pipeline. The wizard offers:

  1. Start from a template (Kubernetes, host metrics, logs, traces, profiles)
  2. Duplicate an existing pipeline
  3. Write from scratch with the inline editor

Step 4: Assign pipelines to collectors with matchers

Matchers use label selectors to map a pipeline to collectors. A collector receives all pipelines whose matchers match its attributes.

{
  "matchers": [
    "env=\"production\"",
    "team=\"platform\""
  ]
}

This assigns the pipeline to any collector with both env=production AND team=platform.

Matcher syntax:

OperatorExampleMeaning
=env="production"Exact match
!=env!="dev"Not equal
=~region=~"us-.*"Regex match
!~region!~"eu-.*"Regex not match

Apply matchers when creating or updating a pipeline:

# Matchers are set in CreatePipeline or UpdatePipeline
curl -s -X POST "$BASE/pipeline.v1.PipelineService/UpdatePipeline" \
  -H "Authorization: Bearer $TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "id": "<PIPELINE_ID>",
    "matchers": [
      {"name": "env",  "value": "production", "type": "EQUAL"},
      {"name": "team", "value": "platform",   "type": "EQUAL"}
    ]
  }'

Matcher type values: EQUAL, NOT_EQUAL, REGEX, NOT_REGEX

A pipeline with no matchers is saved but deployed to zero collectors.


Step 5: Set collector attributes

Attributes are the labels that matchers target. Set them from the UI (Collector Inventory > select collector > Edit attributes) or via API:

curl -s -X POST "$BASE/collector.v1.CollectorService/UpdateCollector" \
  -H "Authorization: Bearer $TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "id": "<COLLECTOR_ID>",
    "attributes": [
      {"name": "env",    "value": "production"},
      {"name": "team",   "value": "platform"},
      {"name": "region", "value": "us-east-1"}
    ]
  }'

Alloy sets some attributes automatically on registration:

  • platform - OS platform (linux, darwin, windows)
  • arch - CPU architecture (amd64, arm64)
  • alloy_version - Alloy version string

Custom attributes must be set explicitly — either via the API or by the collector's startup config.


Step 6: Install Alloy with remote configuration enabled

For Alloy to receive remote configuration from Fleet Management, it needs:

  1. An API token with Fleet Management access
  2. The remotecfg block in its local (bootstrap) configuration
// bootstrap.alloy -- the only local config file Alloy needs
remotecfg {
  url = "https://<FLEET_MANAGEMENT_HOST>"

  basic_auth {
    username = "<STACK_ID>"
    password = env("GRAFANA_CLOUD_API_KEY")
  }

  poll_frequency = "1m"

  // Attributes for this collector instance
  attributes = {
    "env"    = env("ENVIRONMENT"),
    "team"   = "platform",
    "region" = env("AWS_REGION"),
  }
}

Kubernetes deployment:

# values.yaml for grafana/alloy Helm chart
alloy:
  configMap:
    content: |
      remotecfg {
        url = "https://<FLEET_MANAGEMENT_HOST>"
        basic_auth {
          username = "<STACK_ID>"
          password = env("GRAFANA_CLOUD_API_KEY")
        }
        poll_frequency = "1m"
        attributes = {
          "env" = "production",
          "cluster" = env("CLUSTER_NAME"),
        }
      }
  extraEnv:
    - name: GRAFANA_CLOUD_API_KEY
      valueFrom:
        secretKeyRef:
          name: grafana-cloud-credentials
          key: api-key

Step 7: Troubleshoot collector health

Check remote config status:

# List collectors with FAILED status
curl -s -X POST "$BASE/collector.v1.CollectorService/ListCollectors" \
  -H "Authorization: Bearer $TOKEN" \
  -H "Content-Type: application/json" \
  -d '{}' | jq '.collectors[] | select(.remoteConfigStatus == "REMOTE_CONFIG_STATUS_FAILED") | {id, name, remoteConfigStatusMessage}'

Common failure patterns:

Status messageRoot causeFix
syntax error at line NInvalid Alloy River syntaxFix the pipeline YAML; validate before deploying
component not found: XAlloy version too old for a componentUpgrade Alloy or use an older API
failed to unmarshal configBase64 encoding errorRe-encode the config correctly
authentication failedWrong API tokenRotate and re-apply the token
connection refusedCollector can't reach Fleet ManagementCheck network/firewall rules

Check Alloy logs directly:

# Kubernetes
kubectl logs -n monitoring -l app.kubernetes.io/name=alloy --tail=50 | grep -i "remote\|error"

# Systemd
journalctl -u alloy --since "1h ago" | grep -i "remote\|error"

Check the Alloy UI (port 12345 by default) at http://<COLLECTOR_HOST>:12345:

  • Graph tab: shows component wiring and health per component
  • Components tab: lists all components and their current config
  • Clustering tab: shows clustering state if enabled

Step 8: Use the Grafana Assistant for pipeline work

The Grafana Assistant understands Fleet Management and can:

  • Explain what a pipeline configuration does
  • Identify syntax errors and suggest fixes
  • Optimize pipelines for performance or cost
  • Generate Mermaid diagrams of component wiring

Via the UI: In the Remote Configuration page, select a pipeline and click the Assistant button. Options: Explain, Validate/Fix, Optimize, Visualize.

Via API (for automation): The Assistant exposes Fleet Management tools:

  • fleetManagementRead - list collectors and pipelines
  • fleetManagementWrite - update pipeline configurations
  • alloyConfigValidation - validate Alloy River syntax

References

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

展示第三方安全扫描或审计结果

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

平台分布

Codex

38.51%
按下载量换算149

Claude

30.03%
按下载量换算116

Cursor

18.18%
按下载量换算70

Gemini CLI

9.33%
按下载量换算36

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

未通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills