victoriatraces: 0.6.0 -> 0.7.0

Closes #482237
ChangeLog: https://github.com/VictoriaMetrics/VictoriaTraces/releases/tag/v0.7.0
This commit is contained in:
Maximilian Bosch
2026-01-22 09:36:47 +01:00
parent ce83efa0c1
commit 1b90c6833c
2 changed files with 7 additions and 4 deletions

View File

@@ -60,6 +60,9 @@ in
services.victoriatraces = {
enable = true;
retentionPeriod = "1d";
extraOptions = [
"-search.latencyOffset=0s"
];
};
environment.systemPackages = with pkgs; [
@@ -82,10 +85,10 @@ in
""", timeout=10)
# Query for traces from our test service
machine.succeed("""
machine.wait_until_succeeds("""
curl -s 'http://localhost:10428/select/jaeger/api/traces?service=test-service' | \
jq -e '.data[0].spans[0].operationName' | grep -q 'test-span'
""")
""", timeout=10)
# Verify the trace has the expected attributes
machine.succeed("""

View File

@@ -13,13 +13,13 @@
buildGoModule (finalAttrs: {
pname = "VictoriaTraces";
version = "0.6.0";
version = "0.7.0";
src = fetchFromGitHub {
owner = "VictoriaMetrics";
repo = "VictoriaTraces";
tag = "v${finalAttrs.version}";
hash = "sha256-gXdOPRC3oxMAimMc4v0CjTb224qiocFY9/1PFH4hbRw=";
hash = "sha256-MWPw2SJlqjQCyBYT++A0KcwccdpTP7Ome4RfA7lcjAM=";
};
vendorHash = null;