-
-
Notifications
You must be signed in to change notification settings - Fork 168
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
Agentless remote monitors #341
Comments
How's your Python? :) I like the idea; it could either connect to the remote host and run commands directly, or could connect to it and send Python modules over to run the monitors (like how Ansible works). The former is probably more simple, which would be in keeping with the name of the project. I'd definitely have a class which implements the remote aspect, and then subclasses which do specific things. Writing it from scratch, I'd say probably treat local monitors as just ones which "remote" to localhost, but that would be quite a retro-fit now I think. |
I thought about running ssh commands as well, that way we don't require any python interpreter to be present at the remote host. I thought about making special monitor types for remote monitoring, for example "remotemount","remoteservice","remotecpu"... I am pretty well versed in python, but unfortunately I don't have any public repositories to share... Is it possible for me to get permissions to create a feature branch to implement this? B.T.W: What branching method do you use? from what i can see there is a main 'develop' branch, from which every 'feature/myfeature' branch out of. is this correct? |
Sounds good. I was thinking a "RemoteMonitor" class which will have the logic for making a remote connection (e.g. ssh) and methods for performing a command remotely and collecting the outputs, and then the RemoteMountMonitor (e.g.) would inherit from that and provide the specifics of the command and parsing the output. To contribute, the model on GitHub is for you to fork my repo which gives you your own copy of it, then you can do work on a branch on that, and when you're ready, do a pull request against mine from yours. Have a look at https://help.github.com/en/articles/fork-a-repo And yes, I am now (although historically on this repo I didn't, because it's one of my oldest projects) collecting work on the develop branch ready to release (on master), so feature branches should be based off develop. What you name your branch is up to you, I quite like the "feature/", "bugfix/" etc prefixes but I don't need it to be anything in particular for a contribution :) (You may want to branch off the feature/properties branch this time, as that's nearly ready to merge to develop and includes some changes to the Monitor base class. Once it's merged into develop, your pull request can go against develop too.) |
Is there still interest for this? I would like to give it a try because I have several machines I would prefer to query remotely rather than having a |
Yup :) SimpleMonitor already pulls in the paramiko library for ssh (used by the unifi monitors) so you can just use that instead of |
Yes, I am now conceptualizing the whole thing in my head, but it will probably have for parameters the ssh call, a regex to extract a value, and a test for that value. It may be that there will be two monitors, one for a text and one for a number comparison (but that's "under construction" now :)) |
The conceptualization part is done: #1398 |
I would like to add a support for agentless monitors, that can monitor servers via ssh (or any other native protocol).
This has the advantage of not requiring installation of anything on the server you want to monitor.
possible monitors can be:
I would very much like to help develop some of these monitors, but i'm new at contributing to open source projects.
The text was updated successfully, but these errors were encountered: