Question about monitoring multiple harvester #129
-
Hello there, Just wanted to say that I love this project and have been using it from day 1, thanks dev. I would like to ask about monitoring multiple harvester with chiadog. The OS I'm using is ubuntu 20.04.02 server. In the wiki, it states that: and this line too: Does this means that I'll have to duplicate multiple chiadog program, each with a different config file for each harvester, and then start up each individual chiadog program? If not, how can we get chiadog to startup with ./start.sh (config file to load?) with only just one chiadog program? Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
I generally use tmux to handle my separate chiadog sessions.
And so on... you could write your own start.sh that does all of this for you |
Beta Was this translation helpful? Give feedback.
-
Flavour really 😄 |
Beta Was this translation helpful? Give feedback.
I generally use tmux to handle my separate chiadog sessions.
tmux new -s chiadog
python3 main.py --config harvester1.yaml
(make sure to setup the venv)python3 main.py --config harvester2.yaml
And so on... you could write your own start.sh that does all of this for you