Skip to content

Commit

Permalink
add script to test skip instrumentation in skip paths
Browse files Browse the repository at this point in the history
  • Loading branch information
dhontecillas committed Apr 25, 2024
1 parent 40af4a8 commit bfd49a2
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions example/client/make_skip_paths_requests.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
#!/bin/bash

for i in {1..1000}
do
# curl localhost:54444/fake/fsf
# curl localhost:54444/combination/2
echo -e "\n/__stats/"
curl localhost:54444/__stats/
echo -e "\n/__health"
curl localhost:54444/__health
echo -e "\n/__echo/"
curl localhost:54444/__echo/
# uncomment this to see real 404 not found error codes
# echo -e "\n/this_does_not_exist/"
# curl localhost:54444/this_does_not_exist/
echo -e "\n----\n"
sleep 1
done

0 comments on commit bfd49a2

Please sign in to comment.