-
I'm trying to run the
Meanwhile, in another terminal session, RabbitMQ continuously closes the connections as shown here:
I eventually have to force quit the example because RabbitMQ just keeps accepting and closing connections. Any ideas on what's going on here? Update: Running
|
Beta Was this translation helpful? Give feedback.
Replies: 5 comments 11 replies
-
This is interesting. I'm curious if this is a timeout issue, or if this is on the initial connection. If you do a fresh |
Beta Was this translation helpful? Give feedback.
-
We should make flowcept optional, not required, in Zambeze but right now
there is a strong dependency in the code that is not being catched as an
exception.
pip install flowcept[zambeze] should fix this issue.
You'll have to export FLOWCEPT_SETTINGS_PATH with the path to the
settings.yaml file in the resources directory in flowcept repository
…On Fri, Jan 26, 2024, 3:27 PM Gavin Wiggins ***@***.***> wrote:
Running zambeze stop gives an error about ModuleNotFoundError: No module
named 'flowcept'. I thought zambeze didn't require flowcept?
—
Reply to this email directly, view it on GitHub
<#131 (reply in thread)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AANMOYU22CZJDOUX2IXMRSLYQQGT7AVCNFSM6AAAAABCMU4L52VHI2DSMVQWIX3LMV43SRDJONRXK43TNFXW4Q3PNVWWK3TUHM4DENRRGMZTA>
.
You are receiving this because you are subscribed to this thread.Message
ID: ***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
will need flowcepts docker compose as well to run both systems together.
I think will need to change queue name in the flowcept settings.yaml
…On Fri, Jan 26, 2024, 3:37 PM Renan ***@***.***> wrote:
We should make flowcept optional, not required, in Zambeze but right now
there is a strong dependency in the code that is not being catched as an
exception.
pip install flowcept[zambeze] should fix this issue.
You'll have to export FLOWCEPT_SETTINGS_PATH with the path to the
settings.yaml file in the resources directory in flowcept repository
On Fri, Jan 26, 2024, 3:27 PM Gavin Wiggins ***@***.***>
wrote:
> Running zambeze stop gives an error about ModuleNotFoundError: No module
> named 'flowcept'. I thought zambeze didn't require flowcept?
>
> —
> Reply to this email directly, view it on GitHub
> <#131 (reply in thread)>,
> or unsubscribe
> <https://github.com/notifications/unsubscribe-auth/AANMOYU22CZJDOUX2IXMRSLYQQGT7AVCNFSM6AAAAABCMU4L52VHI2DSMVQWIX3LMV43SRDJONRXK43TNFXW4Q3PNVWWK3TUHM4DENRRGMZTA>
> .
> You are receiving this because you are subscribed to this thread.Message
> ID: ***@***.***>
>
|
Beta Was this translation helpful? Give feedback.
-
I have just pushed a 'muting' capability for flowcept that checks the log for a flowcept 'active' flag and then if false (or nonexistent) don't load any of the flowcept libraries. My config now contains this block at the top level:
Let me know if this helps! |
Beta Was this translation helpful? Give feedback.
-
Turns out there were several steps that I wasn't aware of to run the example. So to answer this question, I listed the steps below that successfully runs this example for me:
plugins:
All:
default_working_directory: /Users/gavin/Desktop
shell:
config: {}
rmq:
host: localhost
port: 5672
zmq:
host: 127.0.0.1
port: 60081
|
Beta Was this translation helpful? Give feedback.
Turns out there were several steps that I wasn't aware of to run the example. So to answer this question, I listed the steps below that successfully runs this example for me:
~/.zambeze/agent.yaml
with contents similar to the following:cd zambeze/examples
zambeze agent start
python imagemagick_files.py
a.gif
shoul…