Make Moody's and Slack endpoints reachable for demo capture#156
Merged
Conversation
Both transactions-service and accounts-service were crashing under continuous simulator traffic with 128m heap inside a 512Mi container. Bump to 384m heap / 1Gi limit. Disable the ErrorSpikeFilter on transactions to get clean captured traffic for mock building. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
The OTel collector scrape config references speedscale-forwarder-metrics and speedscale-nettap-metrics Services on port 4145 but they didn't exist, so all Speedscale infra metrics panels in Grafana were empty. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
- createTransaction: POST /api/transactions -> /api/transactions/create
(sim was hitting the controller root which has no POST handler)
- getTransaction: GET /api/transactions/{id} doesn't exist on the
backend; fall back to list+filter
- check-username/check-email: add to gateway's open endpoints since
they're called pre-registration without a token
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Moody's URL was hardcoded to api.ratings.moodys.com which is NXDOMAIN. Slack webhook defaulted to slack-webhook.example.com (also NXDOMAIN). Both now configurable via env vars (MOODYS_API_URL, SLACK_WEBHOOK_URL) with httpbin.org fallbacks so traffic is capturable for mock building. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Moody's URL was hardcoded to api.ratings.moodys.com (NXDOMAIN) and Slack defaulted to slack-webhook.example.com (also NXDOMAIN). Both now configurable via env vars with httpbin.org fallbacks so all 15 external APIs generate capturable traffic.
🤖 Generated with Claude Code