Skip to content

Commit

Permalink
fix(ci): update metric name for sanity check
Browse files Browse the repository at this point in the history
Signed-off-by: Clément Nussbaumer <clement.nussbaumer@postfinance.ch>
  • Loading branch information
clementnuss committed Apr 11, 2024
1 parent bd91d7d commit c3e7287
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/actions/check-deployment/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,14 @@ runs:
curl -k -s --resolve \
${{ inputs.svc-domain }}:443:127.0.0.1 \
https://${{ inputs.svc-domain }}:443/metrics \
| grep "kubenurse_request_" > /dev/null
| grep "kubenurse_httpclient_request_" > /dev/null
- shell: bash
run: |
echo "Check that metrics contain neighbours"
curl -k -s --resolve \
${{ inputs.svc-domain }}:443:127.0.0.1 \
https://${{ inputs.svc-domain }}:443/metrics \
| grep "kubenurse_request_" | grep 'type="path_' > /dev/null
| grep "kubenurse_httpclient_request_" | grep 'type="path_' > /dev/null
- shell: bash
run: |
echo "Check that metrics contain no errors"
Expand Down

0 comments on commit c3e7287

Please sign in to comment.