logfire client for zig
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

docs: update status and fix build commands

- fix CLAUDE.md: zig build example (not run-example)
- update README status: mark batched async export and parent-child spans as done
- clarify remaining work: histograms need convenience API, protobuf not started

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>

zzstoatzz 5698fc9a 817d230f

+7 -6
+2 -2
CLAUDE.md
··· 92 92 ## testing 93 93 94 94 ```bash 95 - zig build test # run tests 96 - zig build run-example # run examples/basic.zig 95 + zig build test # run tests 96 + zig build example # run examples/basic.zig 97 97 ``` 98 98 99 99 test with real export requires LOGFIRE_WRITE_TOKEN in .env
+5 -4
README.md
··· 145 145 - [x] Metrics (counter, gauge) 146 146 - [x] OTLP HTTP/JSON export 147 147 - [x] Environment-based configuration 148 - - [ ] Histograms export (instruments implemented, export WIP) 149 - - [ ] Protobuf encoding 150 - - [ ] Trace context propagation 151 - - [ ] Batched async export 148 + - [x] Batched async export (background flush thread) 149 + - [x] Parent-child span linking (thread-local) 150 + - [ ] Histograms (types implemented, no convenience API yet) 151 + - [ ] Protobuf encoding (JSON only) 152 + - [ ] W3C trace context propagation (cross-service) 152 153 153 154 ## License 154 155