From aj-geddes-useful-ai-prompts-4
Centralizes log collection, parsing, storage, and analysis using ELK Stack, Loki, or Splunk. Useful for debugging distributed systems, monitoring, and compliance auditing.
How this skill is triggered — by the user, by Claude, or both
Slash command
/aj-geddes-useful-ai-prompts-4:log-aggregationThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
- [Overview](#overview)
references/elk-stack-configuration.mdreferences/filebeat-configuration.mdreferences/kibana-dashboard-and-alerts.mdreferences/log-aggregation-deployment-script.mdreferences/logstash-pipeline-configuration.mdreferences/loki-configuration-kubernetes.mdscripts/validate-config.shtemplates/config-starter.yamlBuild comprehensive log aggregation systems to collect, parse, and analyze logs from multiple sources, enabling centralized monitoring, debugging, and compliance auditing.
Minimal working example:
# docker-compose.yml - ELK Stack setup
version: "3.8"
services:
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:8.5.0
environment:
- discovery.type=single-node
- xpack.security.enabled=false
- "ES_JAVA_OPTS=-Xms512m -Xmx512m"
ports:
- "9200:9200"
volumes:
- elasticsearch_data:/usr/share/elasticsearch/data
healthcheck:
test: curl -s http://localhost:9200 >/dev/null || exit 1
interval: 10s
timeout: 5s
retries: 5
logstash:
image: docker.elastic.co/logstash/logstash:8.5.0
volumes:
- ./logstash.conf:/usr/share/logstash/pipeline/logstash.conf
ports:
// ... (see reference guides for full implementation)
Detailed implementations in the references/ directory:
| Guide | Contents |
|---|---|
| ELK Stack Configuration | ELK Stack Configuration |
| Logstash Pipeline Configuration | Logstash Pipeline Configuration |
| Filebeat Configuration | Filebeat Configuration |
| Kibana Dashboard and Alerts | Kibana Dashboard and Alerts |
| Loki Configuration (Kubernetes) | Loki Configuration (Kubernetes) |
| Log Aggregation Deployment Script | Log Aggregation Deployment Script |
npx claudepluginhub joshuarweaver/cascade-code-languages-misc-1 --plugin aj-geddes-useful-ai-prompts-4Deploys ELK Stack, Grafana Loki, or Splunk for centralized log aggregation with shippers, parsing rules, retention policies, dashboards, alerting, and RBAC on Docker or Kubernetes.
ELK Stack, structured logging, log query patterns, and centralized log management.
Sets up centralized log aggregation with Loki/Promtail or ELK stack, including log parsing, label extraction, retention policies, and metric correlation for cross-service troubleshooting.