Releases: go-faster/oteldb
Releases · go-faster/oteldb
v0.15.0
Changelog
New Features
- 941e22c: feat(autometric): add package for automatic metric initialization (@tdakkota)
- c804add: feat(chsql): add string search token iterator (@tdakkota)
- 998771c: feat(chstorage): collect tokens from line filter (@tdakkota)
- 368705c: feat(chstorage): instrument inserter using
autometric
(@tdakkota) - 780cfdd: feat(chstorage): offload unaffected label filters (@tdakkota)
- c10f915: feat(cliversion): add package to retrive debug version info (@tdakkota)
- 954b9f7: feat(docker-logql): make
docker-logql
part of oteldb (@tdakkota) - 84f765a: feat(dockerlog): add
steam
label to entries (@tdakkota) - 74227df: feat(dockerlog): add package to query logs from Docker daemon (@tdakkota)
- 6c30131: feat(oas): add
infos
to prometheus responses (@tdakkota) - a0e7de8: feat(otelstorage): add
Len
method toAttrs
(@tdakkota) - f5652b1: feat(typedpool): add typed
sync.Pool
wrapper (@tdakkota)
Bug fixes
- 7a36d6a: fix(chstorage): check buckets size for overflow (@tdakkota)
- 69e8223: fix(chstorage): do not use
hasToken
if line filter value is an ID (@tdakkota) - 7325edd: fix(chstorage): properly initialize
inserts
metric (@tdakkota) - afd266b: fix(chstorage): re-use
query_id
when retrying (@tdakkota) - 185f1a0: fix(chstorage): update querier due to changes in Prometheus storage API (@tdakkota)
- 68c4ef1: fix(chstorage): use right enum values (@tdakkota)
- 86424df: fix(logql): properly count regexp captures (@tdakkota)
- 75199df: fix(logqlpattern): properly count named captures (@tdakkota)
- cafb86e: fix(otelbench): check packet for overflow (@tdakkota)
- a806327: fix(oteldb): bind OTLP receivers on all interfaces by default (@tdakkota)
- 23a1341: fix(oteldb): remove
UseLocalHostAsDefaultHost
feature gate (@tdakkota) - 1364027: fix(otelstorage): replace unicode characters with underscore (@tdakkota)
- db7462d: fix(promhandler): support
limit
parameter (@tdakkota)
Performance updates
- 753e84d: perf(chstorage): compute column list only once (@tdakkota)
- 154ac12: perf(chstorage): generate insert body only once (@tdakkota)
- 6eecac1: perf(chstorage): re-use log inserter columns (@tdakkota)
- b635ad8: perf(chstorage): re-use log inserter columns
proto.Input
(@tdakkota) - a249e32: perf(otelstorage): increase
Attrs
on-stack sorting threshold (@tdakkota) - db78d4b: perf(otelstorage): optimize replacer (@tdakkota)
- 34b4988: perf(otelstorage): write converted label right to column (@tdakkota)
CI/CD updates
- 364829e: ci(golangci-lint): disable
G115
check (@tdakkota) - 72eb42b: ci: run bench on github runners (@ernado)
Updates to tests
- 253c790: test(dockerlog): add
ParseLog
benchmark (@tdakkota) - b65379e: test(lokie2e): add inserter benchmark (@tdakkota)
- 9eceb31: test(lokie2e): ensure that tokens are collected (@tdakkota)
- 00f4c17: test(otelstorage): add
KeyToLabel
benchmark (@tdakkota) - c311fe4: test(otelstorage): ensure that Unicode is properly handled (@tdakkota)
- 5ff9560: test(tempoe2e): add traces insereter benchmark (@tdakkota)
- 06783f7: test(tempoe2e): compare span attributes (@tdakkota)
Other work
- 102fd87: refactor(logstorage): create batch writer (@tdakkota)
- a18c67c: refactor(tracestorage): create batch writer (@tdakkota)
- 41a1d54: refactor(xsync): move all sync utilities to
xsync
(@tdakkota) - 8da36bf: refactor: use
xsync.Pool
instead ofsync.Pool
(@tdakkota)
Docker images
ghcr.io/go-faster/oteldb:v0.15.0
v0.14.1
v0.14.0
Changelog
New Features
- 4885d72: feat(chsql): add
CAST
function (@tdakkota) - 4753363: feat(chstorage): offload OR line filters (@tdakkota)
- 1bdd70f: feat(chstorage): offload label predicates (@tdakkota)
- d3c7238: feat(lexer): add
@explain
token (@tdakkota) - b255f2b: feat(logql): add
explain
expression (@tdakkota) - c25de28: feat(logql): implement
fmt.Stringer
forLabelPredicate
(@tdakkota) - 1a67c55: feat(logqlengine): explain query (@tdakkota)
- f59f962: feat(logqlengine): implement
or
in line filters (@tdakkota) - a72d0fd: feat(logqlengine): use
FastRegexMatcher
for label matching (@tdakkota)
Bug fixes
- d9bf1d7: fix(chstorage): cast
String
toLowCardinality(String)
(@tdakkota) - 7b9af32: fix(chstorage): do not offload label predicates after line format (@tdakkota)
- 3266f22: fix(chstorage): use proper column type when querying samples (@tdakkota)
- 5b7ffa7: fix(logql): incorrect
String
forBinOp
(@tdakkota) - c06e3c9: fix(logqlengine): handle mapped IPv4 address (@tdakkota)
- 721e905: fix(logqlengine): properly handle negated OR line filter (@tdakkota)
- 94ace20: fix(logqlengine): properly negate IP matcher (@tdakkota)
- cf06b0a: fix(oteldb): disalbe
UseLocalHostAsDefaultHost
feature gate (@tdakkota)
CI/CD updates
Updates to tests
- ca2673b: test(ch-logql-compliance): add OR lip line filter test (@tdakkota)
- a04597b: test(ch-logql-compliance): add negated line filter test (@tdakkota)
- fd980f5: test(logqlengine): add more line filter tests (@tdakkota)
- 16a1c77: test(logqlengine): update test due to API changes (@tdakkota)
- 9049a51: test(lokie2e): add OR line filter test (@tdakkota)
- 0a01405: test(lokie2e): add
trace_id
/span_id
lookup tests (@tdakkota) - e40c2d9: test(lokie2e): add explain query test (@tdakkota)
- 213b469: test(lokie2e): add more label predicate tests (@tdakkota)
- 0db5f62: test(lokie2e): ensure empty sample results are well-handled (@tdakkota)
Other work
- 9f61d6f: refactor(logql): compile pattern during parsing (@tdakkota)
- 30d395b: refactor(logqlengine): use
UnparenLabelPredicate
(@tdakkota)
Docker images
ghcr.io/go-faster/oteldb:v0.14.0
v0.13.0
Changelog
New Features
- cba958c: feat(ch-bench-read): add
Series
benchmark (@tdakkota) - c5422c3: feat(ch-bench-read): add option to set benchmark runs (@tdakkota)
- a2414c4: feat(ch-bench-read): add script to run benchmark locally (@tdakkota)
- 3fcc6d7: feat(chsql): add
IsSingleToken
to check whether string is a token (@tdakkota) - 24a5d8d: feat(chsql): add
ORDER BY
expression (@tdakkota) - 3473bf0: feat(chsql): add
PREWHERE
(@tdakkota) - cef5f8f: feat(chsql): add
hasToken
andlike
functions (@tdakkota) - 703a3e5: feat(chsql): add more helpers to build predicates (@tdakkota)
- ab07bf6: feat(chsql): add query builder package (@tdakkota)
- f9f9048: feat(chsql): add subquery support (@tdakkota)
- 2428d85: feat(chsql): use
simpleJSONHas
to find attributes (@tdakkota) - 40896e2: feat(chstorage): lookup attribute scope before querying data (@tdakkota)
- a78de4d: feat(chstorage): offload
Series
(@tdakkota) - ca0d905: feat(chstorage): query only labels when possible (@tdakkota)
- 2140e95: feat(iterators): add
Reset
method toSliceIterator
(@tdakkota) - 96619b4: feat(logql): implement
fmt.Stringer
forSelector
(@tdakkota) - a8580d9: feat(logqlbench): add LogQL benchmark tool (@tdakkota)
- 6010beb: feat(otelbench): add
logql analyze
command (@tdakkota) - ed30e30: feat(otelbench): add option to seed log generator (@tdakkota)
- 86e10ec: feat(otelbench): collect received bytes and rows too (@tdakkota)
- ac16a14: feat(otelbench): teach
promql analyze
to print reports in benchstat format (@tdakkota) - 459d963: feat(promhandler): do
Labels
/LabelValues
queries in parallel (@tdakkota) - c9e455e: feat(promhandler): query series concurrently (@tdakkota)
- 4a37f01: feat(promhandler): use optimized API for
Series
queries (@tdakkota) - 1c77c7c: feat(traceql): implement stringer for
Autocomplete
(@tdakkota) - 8c3dad8: feat(xattribute): add
Duration
to pass duration attribute (@tdakkota) - 567c14c: feat(xattribute): add unix timestamp attribute (@tdakkota)
Bug fixes
- 1794195: fix(ch-bench-read): remove unnecessary
-O
flag (@tdakkota) - 19bcf51: fix(chsql): convert expression to
DateTime64
before comparing (@tdakkota) - 6604bc7: fix(chsql): convert timestamp to
DateTime64
before comparing (@tdakkota) - b11d586: fix(chsql): do not wrap where/prewhere expression (@tdakkota)
- 36c3572: fix(chsql): ensure time is not zero in
InTimeRange
(@tdakkota) - 7b7ddd0: fix(chsql): pass proper columns to results (@tdakkota)
- 5eb101c: fix(chsql): properly handle column aliasing (@tdakkota)
- 6c319ad: fix(chsql): put binary expression into parenthesis (@tdakkota)
- 84f90e9: fix(chstorage): add
DISTINCT
to series query (@tdakkota) - 5665fe3: fix(chstorage): check for MinTime/MaxTime when querying exemplars (@tdakkota)
- 94ff446: fix(chstorage): convert log abel value to string (@tdakkota)
- 73773f0: fix(chstorage): do not return
__name__
label if there is no match (@tdakkota) - a7e6f79: fix(chstorage): do not return empty label names in log series (@tdakkota)
- d77b43b: fix(chstorage): do not return high cardinality labels as part of series (@tdakkota)
- f75bd30: fix(chstorage): do not skip
level
log label when returning series (@tdakkota) - 4ad0b3a: fix(chstorage): filter root span names, when
rootName
is queried (@tdakkota) - 2184b0a: fix(chstorage): handle autocompelete query when getting span names (@tdakkota)
- 01b5d25: fix(chstorage): handle trace-to-logs line filter properly (@tdakkota)
- fa245c7: fix(chstorage): hash exemplar scope attributes too (@tdakkota)
- 0a08770: fix(chstorage): lookup by scope labels too (@tdakkota)
- a37910e: fix(chstorage): lookup by stringified attribute value (@tdakkota)
- 8c264c8: fix(chstorage): make
trace_id
/span_id
case-insensitive (@tdakkota) - 80c232c: fix(chstorage): make label limit configurable (@tdakkota)
- 8a0c014: fix(chstorage): properly handle Prometheus min/max time (@tdakkota)
- cdb9ae0: fix(chstorage): properly handle matchers in
LabelNames
(@tdakkota) - a130d78: fix(chstorage): properly handle matchers in
LabelValues
(@tdakkota) - a62d8ad: fix(chstorage): properly negate matchers (@tdakkota)
- cedd89d: fix(chstorage): query scope attributes (@tdakkota)
- 1550ef9: fix(chstorage): remove trailing comma in migration table DDL (@tdakkota)
- d214c03: fix(chstorage): remove unnecessary label conversion (@tdakkota)
- a976b34: fix(chstorage): respect
query
parameter when selecting log label values (@tdakkota) - e3116c5: fix(chstorage): save metrics scope attributes (@tdakkota)
- 64e7127: fix(chstorage): sort attributes keys before encoding (@tdakkota)
- ae6e549: fix(chstorage): sort log labels and label values before returning (@tdakkota)
- 9f3598e: fix(chstorage): sort metric labels and label values before returning (@tdakkota)
- 7be284b: fix(chstorage): use
chsql
forgetMetricsLabelMapping
too (@tdakkota) - d637972: fix(chstorage): use normalized metric name to lookup (@tdakkota)
- bedbddf: fix(chstorage): use right column name for
service.namespace
(@tdakkota) - 878b7f6: fix(dev): pass a proper image name when building (@tdakkota)
- 306b12d: fix(lokihandler): parse
query
parameter (@tdakkota) - 48fc0a5: fix(lokihandler): use engine's parsing options (@tdakkota)
- fdc0ba4: fix(otelbench): avoid data race when collecting PromQL queries (@tdakkota)
- d912283: fix(otelbench): disallow positional arguments to avoid confusion (@tdakkota)
- d4ba238: fix(otelbench): return proper benchstat units (@tdakkota)
- 3adaf57: fix(otelbench): use query title to output, if available (@tdakkota)
- 17b6361: fix(promhandler): sort labels and label values after merge (@tdakkota)
- e430f2c: fix(promhandler): sort series before merging (@tdakkota)
- 4971482: fix(tempohandler): sort traces before returning (@tdakkota)
- a1a5a49: fix(traceqlengine): sort traces before returning (@tdakkota)
Performance updates
- 7e7fe5a: perf(chstorage): use
hasToken
to skip blocks (@tdakkota) - 2082cc7: perf(logqlabels): use stack-allocated slices for keys (@tdakkota)
- d760d30: perf(logqlengine): re-use key buffer (@tdakkota)
- b085670: perf(logqlengine): use index map to avoid result slice allocation (@tdakkota)
Documentation updates
- b50f638: docs(ch-bench-read): describe how to compare changes (@tdakkota)
- 10af804: docs(integration): describe how to get debug traces for tests (@tdakkota)
Benchmarking tooling changes
- a9cc7fe: ci(bench): disable
CheckBenchAPI
until it fixed (@tdakkota) - 7122c98: ci(ch-log-bench-read): add LogQL benchmark setup (@tdakkota)
CI/CD updates
- 11e62f4: ci(deploy): disable deploy until it fixed (@tdakkota)
- 02721b1: ci: increase deploy timeouts (@ernado)
Updates to tests
- b7e9bd8: test(chstorage): ensure that attributes are
simpleJSON
-compatible (@tdakkota) - 137e1fb: test(logql): do not fail test unconditionally (@tdakkota)
- 2ebd4a4: test(logqlables): add
groupEntries
benchmark and test (@tdakkota) - 60fcf9a: test(logqlengine): reduce cardinality in
groupEntries
benchmark (@Tdakk...
v0.12.2
Changelog
New Features
- f9f3da3: feat(logql): implement
fmt.Stringer
for matchers (@tdakkota) - 04e265c: feat(oas): handle
buildinfo
requests to Tempo API (@tdakkota) - 56280c0: feat(traceql): implement
fmt.Stringer
for matchers (@tdakkota) - 16c696d: feat(xattribute): add utility package for building attributes (@tdakkota)
Bug fixes
- d2a006a: fix(lokicompliance): ignore stats (@tdakkota)
- 9398bdc: fix(lokihandler): return proper error status code (@tdakkota)
- e3ef2ef: fix(tempohandler): implement buildinfo handler (@tdakkota)
CI/CD updates
Other work
Docker images
ghcr.io/go-faster/oteldb:v0.12.2
v0.12.1
Changelog
Bug fixes
- 07ae77e: fix(chstorage): return right tag name when querying span names (@tdakkota)
- 5c05979: fix(chstorage): use proper enum DDL for tag scopes (@tdakkota)
- 6f4aa6b: fix(tempo): return correct type for keyword tags (@tdakkota)
Updates to tests
- fc42f1e: test(tempoe2e): ensure API returns proper tag types (@tdakkota)
- 3b439b1: test(tempoe2e): ensure
SearchTagValues
properly handles scoped tags (@tdakkota)
Docker images
ghcr.io/go-faster/oteldb:v0.12.1
v0.12.0
Changelog
New Features
- d6ef0ec: feat(integration): filter ch-go logs (@tdakkota)
- d283fba: feat(oas): add autocomplete parameter to
searchTagValues
(@tdakkota) - 8e271d2: feat(oas): update Tempo API (@tdakkota)
- 1005db6: feat(tempohandler): implement
SearchTagsV2
(@tdakkota) - 0a617d7: feat(tempohandler): update handler to latest API (@tdakkota)
- 5d32a86: feat(traceql): add
ParseAttribute
function (@tdakkota) - 4b1d48d: feat(traceql): implement stringer for
AttributeScope
(@tdakkota) - 4f5cf41: feat(traceql): parse autocomplete queries (@tdakkota)
- bd41c67: feat(tracestorage): collect tag scope (@tdakkota)
Bug fixes
- 392c83c: fix(chstorage): return valid intrinsic enum values (@tdakkota)
- b19f545: fix(tempoe2e): do not add span name to the tag set (@tdakkota)
- 2b314de: fix(tempohandler): deduplicate tag names (@tdakkota)
- 36bd388: fix(tempohandler): make autocomplete queries opt-in (@tdakkota)
- c377a6c: fix(traceql): do not return empty intrinsic names (@tdakkota)
CI/CD updates
Updates to tests
- 9d60e6d: test(tempoe2e): add test for
SearchTagsV2
(@tdakkota) - 91c13d2: test(tempoe2e): update tests to latest API (@tdakkota)
Other work
Docker images
ghcr.io/go-faster/oteldb:v0.12.0
v0.11.1
v0.11.0
Changelog
CI/CD updates
Updates to tests
Other work
- a2ded9d: --- (@dependabot[bot])
- 380d0a6: --- (@dependabot[bot])
Docker images
ghcr.io/go-faster/oteldb:v0.11.0
v0.10.0
Changelog
New Features
- d51c1b8: feat(chstorage): offload sampling to Clickhouse (@tdakkota)
- ef690b6: feat(logql): parse
or
in line filters (@tdakkota) - 2250aa6: feat(logql): parse logfmt flags (@tdakkota)
- df1dc3a: feat(logql): parse pattern line filters (@tdakkota)
- f29231d: feat(logql-compliance-tester): add a flag to print diffs to stdout (@tdakkota)
- 46887fc: feat(logql-compliance-tester): add an option to exclude unsupported (@tdakkota)
- bce26df: feat(logql-compliance-tester): add tool to test LogQL compliance (@tdakkota)
- d6da84e: feat(logql-compliance-tester): count unsuccessful results (@tdakkota)
- 07bdbf0: feat(logql-compliance-tester): generate logs outside the query range (@tdakkota)
- 2ce3c99: feat(logql-compliance-tester): print diff of incompatiable results (@tdakkota)
- 57b524b: feat(logqlabels): add label utilities package (@tdakkota)
- b781f38: feat(logqlmetric): implement
absent_over_time
(@tdakkota) - 7498c4b: feat(logqlmetric): implement
rate_counter
(@tdakkota) - bb3c124: feat(logqlpattern): support line filter patterns (@tdakkota)
- d25e5d1: feat(lokicompliance): add more fields to generated logs (@tdakkota)
- a6a326b: feat(lokicompliance): add package to test LogQL engine compliance (@tdakkota)
- 6b0d5ca: feat(lokicompliance): add responses to resulting json (@tdakkota)
- 0d46f36: feat(lokicompliance): add simple log generator (@tdakkota)
- fd40d8d: feat(lokicompliance): add unexpected non-empty result to report (@tdakkota)
- db662d2: feat(lokicompliance): check if result is empty (@tdakkota)
- c5e4fb5: feat(lokicompliance): detect template args automatically (@tdakkota)
- 748eb1b: feat(lokicompliance): disallow unknown config fields (@tdakkota)
- 9b5755a: feat(lokicompliance): emit more fields (@tdakkota)
- d7fb867: feat(lokicompliance): generate IP labels (@tdakkota)
- bc1f436: feat(lokicompliance): generate duration and bytes labels (@tdakkota)
- caeb80f: feat(otelbench): add SubmitReport stub (@ernado)
- 097737a: feat(otelbench): add
otel logs
benchmark (@tdakkota) - 64762cb: feat(otelbench): init submitReport (@ernado)
- 5f7d972: feat(otelbench): report written entries and bytes per second (@tdakkota)
- e6dce74: feat(oteldb): enable chstorage optimizer (@tdakkota)
- 3539891: feat(prometheusremotewrite): map exemplars too (@tdakkota)
- a5bb9bf: feat(prometheusremotewrite): support native histograms (@tdakkota)
- adc6b2b: feat(prompb): implement exemplar and histogram parsing (@tdakkota)
- 30cedaf: feat(prompb): implement timestamp getters (@tdakkota)
Bug fixes
- e3817d1: fix(chstorage): do not offload heap aggregation sampling (@tdakkota)
- b7a7e5a: fix(chstorage): do not offload new line filters (@tdakkota)
- 7d7c2ef: fix(chstorage): do not optimize sampling for unwrapped range aggregation (@tdakkota)
- c949711: fix(chstorage): insert observed timetamp in case if timestamp is zero (@tdakkota)
- 3059bfc: fix(chstorage): map grouping labels too (@tdakkota)
- 4073dd8: fix(chstorage): properly instrument sample query (@tdakkota)
- 63f1c76: fix(chstorage): remove async metric batching (@ernado)
- a721e64: fix(chstorage): use right field name for log message (@tdakkota)
- dd7d201: fix(logql): allow single
=
when parsing IP label matcher (@tdakkota) - ddc2c07: fix(logql): binary expression can be applied only to metric expressions (@tdakkota)
- fbb5ade: fix(logql): properly parse rename in
label_format
(@tdakkota) - 4fc933f: fix(logql): properly parse right-assoc operators (@tdakkota)
- ebb92a4: fix(logql-compliance): add non-literal queries (@tdakkota)
- 0e9c2a1: fix(logql-compliance): adjust Loki query limit (@tdakkota)
- 9f321f5: fix(logql-compliance): collect logs from promtail (@tdakkota)
- 62c9eb1: fix(logql-compliance): remove invalid queries (@tdakkota)
- a7c61c7: fix(logql-compliance-tester): do not try to read
nil
result (@tdakkota) - 37980bd: fix(logql-compliance-tester): print actual total (@tdakkota)
- 302b214: fix(logql-compliance-tester): print test summary anyway (@tdakkota)
- b2e4186: fix(logql-compliance-tester): properly expand test cases (@tdakkota)
- e430dbc: fix(logql-compliance-tester): respect
output-passing
flag (@tdakkota) - 5b5d31a: fix(logql-compliance-tester): respect parallelism setting (@tdakkota)
- 41b7fad: fix(logql-compliance-tester): use exponential back off when pinging (@tdakkota)
- 7765ec3: fix(logql-compliance-tester): use predicatable log generator (@tdakkota)
- 33eb5c6: fix(logql-compliance-tester): use proper time range to do ping query (@tdakkota)
- 284a6d0: fix(logql-compliance-tester): wait until ingester is available (@tdakkota)
- 445e781: fix(logql-compliance-tester): wait until instance gets some data (@tdakkota)
- 8dda095: fix(logqlabels): sort entries after adding a new one (@tdakkota)
- 4b76a40: fix(logqlengine): do not set message as label (@tdakkota)
- 39bcfb9: fix(logqlengine): include one step after end (@tdakkota)
- b08f77d: fix(logqlengine): make otel adapter opt-in (@tdakkota)
- d75a852: fix(logqlengine): remove unwrap label from sampled entry (@tdakkota)
- 09724e8: fix(logqlengine): remove unwrap label from sampled entry (@tdakkota)
- fc5759d: fix(logqlengine): respect direction parameter (@tdakkota)
- 1c0e7ad: fix(logqlengine): restore otel adapter (@tdakkota)
- 650fc73: fix(logqlengine): sort labels before computing hash (@tdakkota)
- d7f11b3: fix(logqlengine): truncate range by step (@tdakkota)
- c8ee43d: fix(logqlmetric): do not group vector aggregation by default (@tdakkota)
- 87ce232: fix(logqlmetric): make range aggregation Loki-compatiable (@tdakkota)
- 585e4e1: fix(logqlmetric): properly handle
bool
modifier (@tdakkota) - d51b6fb: fix(logqlpattern): validate UTF-8 in pattern (@tdakkota)
- efea944: fix(lokiapi): return all errors as JSON string (@tdakkota)
- daabe93: fix(lokicompliance): add more expand variables (@tdakkota)
- e1f28e5: fix(lokicompliance): convert fpoint strings to floats (@tdakkota)
- 49eae85: fix(lokicompliance): exclude
absent_over_time
from simple range aggregations (@tdakkota) - d6ece80: fix(lokicompliance): ignore stats (@tdakkota)
- 75ae255: fix(lokicompliance): properly handle not implemented errors (@tdakkota)
- 2d626a9: fix(lokicompliance): sort collected variant args (@tdakkota)
- 51f7842: fix(lokicompliance): sort response data before compare (@tdakkota)
- d9bbeb8: fix(lokicompliance): use only valid quantiles (@tdakkota)
- 2c14d78: fix(lokihandler): properly handle unsupported error (@tdakkota)
- 57c2fde: fix(oas): remove log entries limit from spec (@tdakkota)
- aa18f7e: fix(otelbench): report formatting (@tdakkota)
- 052a57e: fix(otelbench): run clickhouse reporter (@tdakkota)
- af125d8: fix(otelbench): wait for receiver readiness (@tdakkota)
- 8ba294f: fix(prometheusremotewrite): update code due to collector changes (@tdakkota)
- a2c0505: fix(prometheusremotewritereceiver): do not use deprecated error (@tdakkota)
- 1ff96e6: fix(prompb): re-use timeseries (@tdakkota)
###...