You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello! 👋
We just implemented stoplight-admin to manage Stoplight circuit breakers and noticed that, unless the circuit gets at least one failure or is locked, the UI will not show it in the list. Once the first failure happens then it shows.
We are wondering if this is by design or any limitation of Stoplight gem.
The use case for seeing these lights in the UI is that we might want to manually trip the circuit to red as a prevention measure and currently, it's not possible. The only way we can do that is through Redis or Rails console and it would be great to be able to do it through the UI.
If this is a feature that other people can use, I'm happy to investigate and create a PR for it.
The text was updated successfully, but these errors were encountered:
We use Redis to store information about failures. When an error happens, we save it into Redis, and the UI can pick it up and display it. Unfortunately, without errors, there is nothing to show.
This is quite a simple design decision that does not require fancy initialization and registering circuit breakers. Thus, this is a limitation driven by design :)
Hello! 👋
We just implemented stoplight-admin to manage Stoplight circuit breakers and noticed that, unless the circuit gets at least one failure or is locked, the UI will not show it in the list. Once the first failure happens then it shows.
We are wondering if this is by design or any limitation of Stoplight gem.
The use case for seeing these lights in the UI is that we might want to manually trip the circuit to red as a prevention measure and currently, it's not possible. The only way we can do that is through Redis or Rails console and it would be great to be able to do it through the UI.
If this is a feature that other people can use, I'm happy to investigate and create a PR for it.
The text was updated successfully, but these errors were encountered: