log-schema-generator
SolidGenerate structured logging schemas with correlation ID patterns and ELK/Splunk integration
AI & Automation 1,160 stars
71 forks Updated today MIT
Install
Quality Score: 96/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# Log Schema Generator Skill
## Overview
Generates structured logging schema definitions including log level standards, correlation ID patterns, and ELK/Splunk integration templates.
## Capabilities
- Structured logging schema definition
- Log level standards (RFC 5424)
- Correlation ID patterns
- ELK Stack integration templates
- Splunk integration templates
- Log format standardization (JSON, logfmt)
- Context propagation patterns
- PII masking rules
## Target Processes
- observability-implementation
## Input Schema
```json
{
"type": "object",
"required": ["services"],
"properties": {
"services": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": { "type": "string" },
"language": { "type": "string" },
"framework": { "type": "string" }
}
}
},
"format": {
"type": "string",
"enum": ["json", "logfmt", "ecs"],
"default": "json"
},
"integration": {
"type": "string",
"enum": ["elk", "splunk", "datadog", "cloudwatch"],
"default": "elk"
},
"options": {
"type": "object",
"properties": {
"includeCorrelationId": {
"type": "boolean",
"default": true
},
"includePiiMasking": {
"type": "boolean",
"default": true
},
"logLevels": {
"type": "array",
"default": ["debug", "info", "warn", "error", "fatal"]
},
...
Details
- Author
- a5c-ai
- Repository
- a5c-ai/babysitter
- Created
- 4 months ago
- Last Updated
- today
- Language
- JavaScript
- License
- MIT
Integrates with
Similar Skills
Semantically similar based on skill content — not just same category
AI & Automation Solid
tracing-schema-generator
Generate distributed tracing schemas for OpenTelemetry with Jaeger/Zipkin integration
1,160 Updated today
a5c-ai AI & Automation Solid
metrics-schema-generator
Generate metrics schemas for Prometheus, OpenTelemetry, and Grafana dashboards
1,160 Updated today
a5c-ai DevOps & Infrastructure Solid
logging-migrator
Migrate logging infrastructure with format standardization, structured logging, and aggregation setup
1,160 Updated today
a5c-ai AI & Automation Solid
dashboard-generator
Generate monitoring dashboards for Grafana and DataDog with alert integration
1,160 Updated today
a5c-ai AI & Automation Solid
json-schema
JSON Schema validation and API contract design.
1,160 Updated today
a5c-ai