Troubleshooting techniques for SEA™ Forge services.
1
2
3
SELECT * FROM logs
WHERE trace_id = '12345...'
ORDER BY _timestamp
curl localhost:13133localhost:4317Ensure resource attributes are set:
1
2
3
4
resource = Resource.create({
"sea.platform": "sea-forge",
"sea.domain": "my-domain"
})
Avoid high-cardinality labels:
1
2
3
4
5
# ❌ Bad
span.set_attribute("user.id", user_id)
# ✅ Good
span.set_attribute("user.tier", "premium")
1
2
3
4
5
6
# Collector zpages
open http://localhost:55679/debug/tracez
open http://localhost:55679/debug/pipelinez
# Service health
curl http://localhost:8080/health
Last Updated: January 2026