Prometheus metrics for library and application developers
0

Configure Feed

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

update readme for version info

+12 -1
+9 -1
build.zig.zon
··· 1 1 .{ 2 2 .name = .metrics, 3 - .paths = .{""}, 3 + .paths = .{ 4 + "LICENSE", 5 + "build.zig", 6 + "build.zig.zon", 7 + "readme.md", 8 + "src", 9 + "example", 10 + }, 4 11 .version = "0.0.0", 12 + .minimum_zig_version = "0.16.0", 5 13 .fingerprint = 0x228aaae778b8b15b, 6 14 }
+3
readme.md
··· 5 5 6 6 Please see the example project. It demonstrates how a <a href="https://github.com/karlseguin/metrics.zig/blob/master/example/lib/metrics.zig">library developer</a>, and how an <a href="https://github.com/karlseguin/metrics.zig/blob/master/example/main.zig">application developer</a> can initialize and output them.</a> 7 7 8 + ## Zig Version 9 + This is for Zig 0.16.0. Use the [zig-0.15](https://github.com/karlseguin/metrics.zig/tree/zig-0.15) branch for Zig 0.15.2 or the [dev](https://github.com/karlseguin/metrics.zig/tree/dev) which may or may not be up to date with zig dev. 10 + 8 11 ## Metric Setup 9 12 Setup is a bit tedious, and I welcome suggestions for improvement. 10 13