Token导航 LogoToken导航TokenDH.com
图像处理需要联网clawhub未标认证来源可访问clear审计通过

influxdbinfluxdb 图像

Agent Skill

用于辅助图像生成、图片编辑、视觉素材处理或图像模型工作流。它适合让 Agent 根据文本生成图片、处理背景、整理视觉提示词或调用相关图像工具。使用时需要确认输入图片、版权来源、输出格式和模型限制;涉及人物、品牌、商品或公开展示素材时,应额外核对授权、真实性和内容合规边界。

总安装

29,760

周安装

1,240

GitHub Stars

3

下载量

9,920
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:influxdb(influxdb 图像)
来源仓库:https://github.com/ivangdavila/influxdb
安装命令:
openclaw skills install influxdb
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install influxdb

简介

InfluxDB 技能用于时间序列数据存储与查询。

  • 适合在 OpenClaw 中处理监控指标、日志或实时数据流。
  • 通过 clawhub 安装,需配置数据库连接与安全凭证。
  • 使用前应确认数据保留策略与写入频率,避免资源浪费。
  • 注意敏感数据需脱敏处理,防止泄露风险。influxdb 属于图像处理类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
InfluxDB
description
Store and query time-series data with proper schema design and retention.
metadata
{"clawdbot":{"emoji":"📈","requires":{"anyBins":["influx","curl"]},"os":["linux","darwin","win32"]}}

Version Differences

  • InfluxDB 2.x uses Flux query language, 1.x uses InfluxQL—syntax completely different
  • 2.x: buckets, organizations, tokens; 1.x: databases, retention policies, users
  • Don't mix documentation—check version before copying queries

Tags vs Fields (Critical)

  • Tags are indexed, fields are not—filter on tags, aggregate on fields
  • Tag values must be strings—numbers as tags work but waste index space
  • Fields support numbers, strings, booleans—store metrics as fields
  • Wrong choice kills query performance—can't change after data written

Cardinality Trap

  • High-cardinality tags destroy performance—unique user IDs as tags = disaster
  • Cardinality = unique combinations of tag values—grows multiplicatively
  • Check with SHOW CARDINALITY (1.x) or influx bucket inspect (2.x)
  • Rule of thumb: <100K series per measurement; millions = problems

Line Protocol

  • Format: measurement,tag1=v1,tag2=v2 field1=1,field2="str" timestamp
  • No spaces around = in tags—space separates tags from fields
  • String fields need quotes, tag values don't—field="text" vs tag=text
  • Timestamps in nanoseconds by default—specify precision to avoid mistakes

Timestamps

  • Default precision is nanoseconds—sending seconds without precision flag = year 2000 data
  • Specify on write: precision=s for seconds, precision=ms for milliseconds
  • Missing timestamp uses server time—usually fine for real-time ingestion
  • Timestamps are UTC—client timezone doesn't matter

Retention and Downsampling

  • Set retention policy/bucket duration—data older than retention auto-deleted
  • Raw data at 10s intervals for 7 days, downsample to 1min for 30 days, 1h for 1 year
  • 2.x: Tasks for downsampling; 1.x: Continuous Queries
  • Without downsampling, storage grows forever and queries slow down

Flux Query Patterns (2.x)

  • Always start with from(bucket:) then |> range(start:)—range is required
  • |> filter(fn: (r) => r._measurement == "cpu") for filtering
  • |> aggregateWindow(every: 1h, fn: mean) for time-based aggregation
  • Chain transforms with |> pipe operator—order matters for performance

InfluxQL Patterns (1.x)

  • SELECT mean("value") FROM "measurement" WHERE time > now() - 1h GROUP BY time(5m)
  • Double quotes for identifiers, single quotes for string literals
  • GROUP BY time() for time-based aggregation—required for most dashboards
  • FILL(none) to skip empty intervals, FILL(previous) to carry forward

Schema Design

  • Measurement name = table name—one per metric type (cpu, memory, requests)
  • Tag for dimensions you filter/group by—host, region, service
  • Field for values you aggregate—usage_percent, count, latency_ms
  • Avoid encoding data in measurement names—cpu.host1 wrong, cpu + host=host1 right

Write Performance

  • Batch writes—individual points have HTTP overhead
  • Telegraf for production ingestion—handles batching, buffering, retry
  • Write to localhost if possible—network latency adds up at high throughput
  • async writes in client libraries—don't block on each write

Query Performance

  • Always include time range—unbounded queries scan everything
  • Filter on tags before fields—tags use index, fields scan data
  • Limit results with LIMIT or |> limit()—dashboard doesn't need 1M points
  • Use GROUP BY / aggregateWindow to reduce data before returning

Common Errors

  • "partial write: field type conflict"—same field with different types; fix at source
  • "max-values-per-tag limit exceeded"—cardinality too high; redesign schema
  • "database not found"—2.x uses buckets, not databases; check API version
  • Query timeout—add narrower time range or aggregate more aggressively

适合场景

01

文本生成图片

02

图片风格化

03

产品图和创意图

04

需要 FLUX 模型时

能力概览

能力 1

调用 FLUX 图像模型

能力 2

支持文本生图和图像改写

能力 3

覆盖 LoRA 或风格适配

能力 4

适合创意视觉生成

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

平台分布

OpenClaw

70.54%
按下载量换算6,998

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills