Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/littlemaneuver/open-m-monit
opensource version of m/monit
https://github.com/littlemaneuver/open-m-monit
Last synced: 3 months ago
JSON representation
opensource version of m/monit
- Host: GitHub
- URL: https://github.com/littlemaneuver/open-m-monit
- Owner: littlemaneuver
- Created: 2013-01-15T14:43:45.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2024-03-25T20:41:01.000Z (8 months ago)
- Last Synced: 2024-04-15T12:35:16.256Z (7 months ago)
- Language: JavaScript
- Size: 4.19 MB
- Stars: 76
- Watchers: 11
- Forks: 24
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-repositories - littlemaneuver/open-m-monit - opensource version of m/monit (JavaScript)
README
# Open-m-monit on Nodejs
### how to run
1. Create the file config.json and add your monit servers:```javascript
{"clusterName":
[
{
"hostname": "serverHostname or ip and port",
"username": "baseAuth username",
"password": "your baseAuth password",
"protocol": "https(optional, http by default)",
"alias" : "aliasName(optional, means short name)"
},
....
],
....
}
```
2. Configure your port. U can use **tcp** or **unix** socket. Change *port.json*:```javascript
{
"type": "tcp",
"port": 3000
}
```
or:```javascript
{
"type": "unix",
"socket": "path_to_file"
}
```
3. run `node app`
Your open-m-monit is at `your.hostname:port`.All information about m-monit is available [here](http://mmonit.com/).