Skip to content
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

feat: added option to specify error pubtopic #102

Merged
merged 8 commits into from Oct 19, 2022
Merged

Conversation

xytxytxyt
Copy link
Contributor

currently in ergo it is not possible for a component to subscribe to the error queues of multiple components

this feature is useful for a 3rd party outage detector that we're working on that will subscribe to errors from api connectors, categorize them, and report them to slack

this pr adds this feature

@@ -80,6 +81,9 @@ def topics(dot: graphviz.Digraph, configs: List[Dict[str, Union[None, str, List[
for topic_element in format_topic('pubtopic', config):
dot.edge(format_component(config)[0], topic_element[0])
dot.node(*topic_element, shape='box')
for topic_element in format_topic('error_pubtopic', config):
dot.edge(format_component(config)[0], topic_element[0])
dot.node(*topic_element, shape='octagon')
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

chose octagon because it is used for stop signs: http://www.trafficsign.us/signshape.html

sample:
image

@@ -12,3 +12,4 @@ requests
docker
pytest
pytest-timeout
importlib-metadata==4.13.0
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@xytxytxyt xytxytxyt merged commit 75788fe into master Oct 19, 2022
@xytxytxyt xytxytxyt deleted the feat/error-pubtopic branch October 19, 2022 17:24
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants