aboutsummaryrefslogtreecommitdiff
path: root/src/zenstore/xmake.lua
diff options
context:
space:
mode:
authorStefan Boberg <[email protected]>2025-12-11 16:12:02 +0100
committerGitHub Enterprise <[email protected]>2025-12-11 16:12:02 +0100
commit567293ab1baa8cb0eca843977c520e5b8f400b4d (patch)
tree1f54f12d3fb19b91695bbfea33fa9abd8de49f69 /src/zenstore/xmake.lua
parent5.7.14 (diff)
downloadzen-567293ab1baa8cb0eca843977c520e5b8f400b4d.tar.xz
zen-567293ab1baa8cb0eca843977c520e5b8f400b4d.zip
add otel instrumentation (#581)
this change adds OTEL tracing to a few places * Top-level application lifecycle (config/init/cleanup, main loop) * http.sys requests it also brings some otlptrace optimizations and dynamic configuration of tracing. OTLP tracing is currently always disabled
Diffstat (limited to 'src/zenstore/xmake.lua')
-rw-r--r--src/zenstore/xmake.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/zenstore/xmake.lua b/src/zenstore/xmake.lua
index 31289a573..ea8155e94 100644
--- a/src/zenstore/xmake.lua
+++ b/src/zenstore/xmake.lua
@@ -6,6 +6,6 @@ target('zenstore')
add_headerfiles("**.h")
add_files("**.cpp")
add_includedirs("include", {public=true})
- add_deps("zencore", "zenutil", "zenvfs")
+ add_deps("zencore", "zentelemetry", "zenutil", "zenvfs")
add_deps("robin-map")
add_packages("eastl", {public=true});