-
Notifications
You must be signed in to change notification settings - Fork 87
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Rocket health sensors #1546
Rocket health sensors #1546
Conversation
/integration sha=6ac2cec5a0d146aed9ff69c1176a6a915efc3256 |
PR Summary
|
⌛ Integration tests are running... Check their status here 👈 |
❌ Oh no! Integration tests have failed |
1 similar comment
❌ Oh no! Integration tests have failed |
⌛ Integration tests are running... Check their status here 👈 |
❌ Oh no! Integration tests have failed |
/integration sha=89abb5de0b448907e9684ea16518068f1efb32b9 |
⌛ Integration tests are running... Check their status here 👈 |
# Conflicts: # common/config/rush/pnpm-lock.yaml
❌ Oh no! Integration tests have failed |
/integration sha=cf75012030de7b062dda7433a33ea4cf31d5f3a7 |
⌛ Integration tests are running... Check their status here 👈 |
✅ Integration tests have finished successfully! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Description
The changes in this PR extend the capabilities introduced in #1421 and add an endpoint for checking the health of the Rockets used by a Booster app deployed to Azure.
Calling this new endpoint will return a result like the following:
The main Booster function app will check each Rocket's health by calling its function app URL, which should return a 200 HTTP code if it's up and running.
Changes
framework-provider-azure-infrastructure
package for adding the Rocket function app names as environment variables to the main Booster function app.framework-provider-azure
package for implementing health check requests to the Rocket function apps.framework-core
andframework-types
packages for adding the new sensor endpoint for Rockets and configuration.Checks