Skip to content
Merged
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
16 changes: 13 additions & 3 deletions grafana-pyroscope-1.13.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package:
name: grafana-pyroscope-1.13
version: "1.13.6"
epoch: 3 # CVE-2025-61729
epoch: 4 # CVE-2025-61729
description: Continuous Profiling Platform. Debug performance issues down to a single line of code
copyright:
- license: AGPL-3.0-only
Expand Down Expand Up @@ -94,8 +94,18 @@ test:
Pyroscope started
server listening on addresses
post: |
# check for the ready endpoint
curl -s http://localhost:4040/ready
# check for the ready endpoint - pyroscope needs ~15s after startup to become ready
wait-for-it -t 15 --strict localhost:4040 -- echo "Server is up"

# wait for the service to become fully ready (ingester needs 15s warmup)
for i in $(seq 1 30); do
if curl -sf http://localhost:4040/ready; then
echo "Service is ready"
break
fi
echo "Waiting for ready... attempt $i"
sleep 1
done

# check for the metrics endpoint
curl -s http://localhost:4040/metrics | grep -i "pyroscopedb_block_opening_duration_bucket"
Expand Down
Loading