diff options
| author | Stefan Boberg <[email protected]> | 2025-10-22 17:57:29 +0200 |
|---|---|---|
| committer | GitHub Enterprise <[email protected]> | 2025-10-22 17:57:29 +0200 |
| commit | 5c139e2d8a260544bc5e730de0440edbab4b0f03 (patch) | |
| tree | b477208925fe3b373d4833460b90d61a8051cf05 /src/zenstore/include | |
| parent | 5.7.7-pre3 (diff) | |
| download | zen-5c139e2d8a260544bc5e730de0440edbab4b0f03.tar.xz zen-5c139e2d8a260544bc5e730de0440edbab4b0f03.zip | |
add support for OTLP logging/tracing (#599)
- adds `zentelemetry` project which houses new functionality for serializing logs and traces in OpenTelemetry Protocol format (OTLP)
- moved existing stats functionality from `zencore` to `zentelemetry`
- adds `TRefCounted<T>` for vtable-less refcounting
- adds `MemoryArena` class which allows for linear allocation of memory from chunks
- adds `protozero` which is used to encode OTLP protobuf messages
Diffstat (limited to 'src/zenstore/include')
4 files changed, 4 insertions, 4 deletions
diff --git a/src/zenstore/include/zenstore/cache/cachedisklayer.h b/src/zenstore/include/zenstore/cache/cachedisklayer.h index 10c61681b..1b501e9ae 100644 --- a/src/zenstore/include/zenstore/cache/cachedisklayer.h +++ b/src/zenstore/include/zenstore/cache/cachedisklayer.h @@ -5,10 +5,10 @@ #include "cacheshared.h" #include <zencore/compactbinary.h> -#include <zencore/stats.h> #include <zenstore/accesstime.h> #include <zenstore/blockstore.h> #include <zenstore/caslog.h> +#include <zentelemetry/stats.h> ZEN_THIRD_PARTY_INCLUDES_START #include <tsl/robin_map.h> diff --git a/src/zenstore/include/zenstore/cache/structuredcachestore.h b/src/zenstore/include/zenstore/cache/structuredcachestore.h index 1ba469431..75692cfcd 100644 --- a/src/zenstore/include/zenstore/cache/structuredcachestore.h +++ b/src/zenstore/include/zenstore/cache/structuredcachestore.h @@ -4,10 +4,10 @@ #include <zencore/compactbinary.h> #include <zencore/iohash.h> -#include <zencore/stats.h> #include <zenstore/cache/cache.h> #include <zenstore/cache/cachedisklayer.h> #include <zenstore/gc.h> +#include <zentelemetry/stats.h> #include <zenutil/statsreporter.h> #include <atomic> diff --git a/src/zenstore/include/zenstore/cache/upstreamcacheclient.h b/src/zenstore/include/zenstore/cache/upstreamcacheclient.h index 2f3b6b0d7..ff4a8c3f7 100644 --- a/src/zenstore/include/zenstore/cache/upstreamcacheclient.h +++ b/src/zenstore/include/zenstore/cache/upstreamcacheclient.h @@ -6,9 +6,9 @@ #include <zencore/compress.h> #include <zencore/iobuffer.h> #include <zencore/iohash.h> -#include <zencore/stats.h> #include <zencore/zencore.h> #include <zenstore/cache/cache.h> +#include <zentelemetry/stats.h> #include <functional> #include <memory> diff --git a/src/zenstore/include/zenstore/cidstore.h b/src/zenstore/include/zenstore/cidstore.h index 8918b119f..d54062476 100644 --- a/src/zenstore/include/zenstore/cidstore.h +++ b/src/zenstore/include/zenstore/cidstore.h @@ -5,8 +5,8 @@ #include "zenstore.h" #include <zencore/iohash.h> -#include <zencore/stats.h> #include <zenstore/hashkeyset.h> +#include <zentelemetry/stats.h> #include <zenutil/statsreporter.h> #include <filesystem> |