Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions .claude-plugin/marketplace.json
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,26 @@
"deployment"
],
"category": "database"
},
{
"name": "clickstack-otel-collector",
"source": "./skills/clickstack-otel-collector/",
"description": "Step-by-step workflow for wiring an OpenTelemetry collector into a Managed ClickStack service on ClickHouse Cloud — deploying a new local collector or configuring an existing one, creating a dedicated ingest user, sending synthetic telemetry, and verifying it in ClickStack",
"version": "0.6.0",
"author": {
"name": "ClickHouse Inc"
},
"homepage": "https://clickhouse.ai",
"repository": "https://github.com/ClickHouse/agent-skills",
"license": "Apache-2.0",
"keywords": [
"clickhouse",
"clickstack",
"opentelemetry",
"observability",
"collector"
],
"category": "database"
}
]
}
2 changes: 1 addition & 1 deletion .claude-plugin/plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@
"repository": "https://github.com/ClickHouse/agent-skills",
"license": "Apache-2.0",
"keywords": ["clickhouse", "database", "query-optimization", "schema-design", "best-practices", "data-ingestion"],
"skills": ["./skills/clickhouse-best-practices/", "./skills/clickhouse-architecture-advisor/", "./skills/clickhouse-js-node-troubleshooting/", "./skills/chdb-datastore/", "./skills/chdb-sql/", "./skills/clickhousectl-local-dev/", "./skills/clickhousectl-cloud-deploy/"]
"skills": ["./skills/clickhouse-best-practices/", "./skills/clickhouse-architecture-advisor/", "./skills/clickhouse-js-node-troubleshooting/", "./skills/chdb-datastore/", "./skills/chdb-sql/", "./skills/clickhousectl-local-dev/", "./skills/clickhousectl-cloud-deploy/", "./skills/clickstack-otel-collector/"]
}
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,14 @@ Complements `clickhouse-best-practices` by answering *when*, *why*, and *how*

**For agents:** The skill activates when a user wants to deploy ClickHouse to production, host a managed ClickHouse service, or migrate from a local setup to ClickHouse Cloud.

### ClickStack OTel Collector

**Step-by-step workflow** for wiring an OpenTelemetry collector into a Managed ClickStack service on ClickHouse Cloud. Covers deploying a new local collector (Docker run or Docker Compose) or configuring an existing collector, creating a dedicated ingest SQL user, sending rich synthetic telemetry, and verifying the data is visible in ClickStack.

**Location:** [`skills/clickstack-otel-collector/`](./skills/clickstack-otel-collector/)

**For agents:** The skill activates when a user wants to connect an OpenTelemetry collector to a Managed ClickStack service, send telemetry (logs, traces, metrics) into ClickStack, or verify their observability data pipeline end-to-end.

## Quick Start

After installation, your AI agent will reference these skills when:
Expand All @@ -131,6 +139,7 @@ After installation, your AI agent will reference these skills when:
- Joining data across different sources (MySQL + S3 + local files)
- Setting up a local ClickHouse development environment with `clickhousectl`
- Deploying to ClickHouse Cloud with `clickhousectl`
- Wiring an OpenTelemetry collector into Managed ClickStack

Example prompts:
> "Create a table for storing user events with fields for user_id, event_type, properties (JSON), and timestamp"
Expand Down
Loading