Skip to content

Commit

Permalink
Update simulation tests results to show matched tasks per tasklist (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
Shaddoll authored Sep 11, 2024
1 parent 1771349 commit 55a29b1
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions scripts/run_matching_simulator.sh
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,11 @@ tmp=$(cat "$eventLogsFile" \
| jq -c '.' | wc -l)
echo "Async matches: $tmp" | tee -a $testSummaryFile

echo "Matched tasks per tasklist:" | tee -a $testSummaryFile
cat "$eventLogsFile" \
| jq -c 'select(.EventName | contains("Matched Task"))' \
| jq '.TaskListName' \
| jq -c '.' | sort -n | uniq -c | sed -e 's/^/ /' | tee -a $testSummaryFile

echo "AddDecisionTask request per tasklist (excluding forwarded):" | tee -a $testSummaryFile
cat "$eventLogsFile" \
Expand Down

0 comments on commit 55a29b1

Please sign in to comment.