Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -83,12 +83,6 @@
"matchDatasources": ["docker"],
"matchPackageNames": ["dice"],
"enabled": false
},
{
// Tests fails with oats 0.10.0
"matchPackageNames": ["grafana/oats"],
"matchUpdateTypes": ["minor"],
"enabled": false
}
],
"kubernetes": {
Expand Down
3 changes: 3 additions & 0 deletions doc-snippets/extensions-minimal/oats/oats-case.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,10 @@ interval: 5s
seed:
type: app
input:
# retry: the compose fixture reports "running" before Spring finishes booting,
# so the first request(s) can hit a closed port; retry until the app is ready.
- path: /hello
retry: {}
expected:
traces:
- traceql: '{ span.http.route = "/hello" }'
Expand Down
5 changes: 5 additions & 0 deletions javaagent-declarative-configuration/oats/oats-case.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,14 @@ fixture:
seed:
type: app
input:
# retry: the compose fixture reports "running" before Spring finishes booting,
# so the first request(s) can hit a closed port; retry until the app is ready.
- path: /api/example
retry: {}
- path: /actuator/health
retry: {}
- path: /api/remote
retry: {}
expected:
traces:
- traceql: '{ span.http.route = "/api/example" }'
Expand Down
5 changes: 5 additions & 0 deletions logging-k8s-stdout-otlp-json/oats-case.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,12 @@ fixture:
app_docker_tag: dice:1.1-SNAPSHOT
app_port: 8080
input:
# RollController seeds its Random with a fixed 0, so call 1 always succeeds
# and call 2 always throws. Two calls are needed since oats now drives each
# input exactly once instead of retrying it on every assertion poll.
- path: /rolldice
- path: /rolldice
status: "500"
expected:
logs:
- logql: '{service_name="dice"} |~ `.*Anonymous player is rolling the dice:.*`'
Expand Down
2 changes: 1 addition & 1 deletion mise.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tools]
"aqua:grafana/gcx" = "v1.2.0"
"aqua:grafana/oats" = "0.8.0"
"aqua:grafana/oats" = "0.10.0"
k3d = "5.9.0"
kubectl = "1.37.0"

Expand Down
4 changes: 4 additions & 0 deletions spring-declarative-configuration/oats/oats-case.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,12 @@ fixture:
seed:
type: app
input:
# retry: the compose fixture reports "running" before Spring finishes booting,
# so the first request(s) can hit a closed port; retry until the app is ready.
- path: /api/example
retry: {}
- path: /actuator/health
retry: {}
expected:
traces:
- traceql: '{ span.http.route = "/api/example" }'
Expand Down
Loading