NPX Install
npx skill4agent add posthog/skills logs-goTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →PostHog logs for Go
This skill helps you add PostHog log ingestion to Go applications.
Reference files
- - Go logs installation - docs
references/go.md - - Getting started with logs - docs
references/start-here.md - - Search logs - docs
references/search.md - - Logging best practices - docs
references/best-practices.md - - Logs troubleshooting - docs
references/troubleshooting.md - - Link session replay - docs
references/link-session-replay.md - - Debug logs with mcp - docs
references/debug-logs-mcp.md
Consult the documentation for API details and framework-specific patterns.
Key principles
- Environment variables: Always use environment variables for PostHog keys and OpenTelemetry endpoints. Never hardcode them.
- Minimal changes: Add log export alongside existing logging. Don't replace or restructure existing logging code.
- OpenTelemetry: PostHog logs use the OpenTelemetry protocol. Configure an OTLP exporter pointed at PostHog's ingest endpoint.
- Structured logging: Prefer structured log formats with key-value properties over plain text messages.
Framework guidelines
No specific framework guidelines.