1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/yunomonitor_ynh.git synced 2024-09-03 17:46:11 +02:00
yunomonitor_ynh/manifest.json

74 lines
2.5 KiB
JSON
Raw Normal View History

{
"name": "YunoMonitor",
"id": "yunomonitor",
"packaging_format": 1,
"description": {
2021-08-16 09:20:33 +02:00
"en": "Home made tool to monitor automatically your servers",
"fr": "Outil pour surveiller automatiquement vos serveurs"
},
2021-08-23 09:13:30 +02:00
"version": "1.1.0~ynh2",
"url": "https://github.com/zamentur/yunomonitor",
2021-08-23 09:13:30 +02:00
"upstream": {
"license": "AGPL-3.0",
"website": "https://github.com/zamentur/yunomonitor",
"admindoc": "https://github.com/zamentur/yunomonitor/blob/master/README.md",
2021-08-23 12:03:22 +02:00
"code": "https://github.com/zamentur/yunomonitor"
2021-08-23 09:13:30 +02:00
},
"license": "AGPL-3.0",
"maintainer": {
"name": "ljf",
"email": "ljf+@reflexlibre.net",
"url": "https://reflexlibre.net"
},
"requirements": {
2021-08-16 09:20:33 +02:00
"yunohost": ">= 4.2.0"
},
"multi_instance": false,
"services": [
"nginx"
],
"arguments": {
"install" : [
{
"name": "monitored_servers",
2020-10-04 22:03:10 +02:00
"type": "string",
"ask": {
"en": "List all servers you want to monitor with this server (separated by comma)"
},
"help": {
"en": "You need to install yunomonitor on those servers or add manually a custom configuration file for each server to monitor"
},
"example": "example.com,example2.com",
"default": "localhost"
},
{
"name": "monitoring_servers",
2020-10-04 22:03:10 +02:00
"type": "string",
"ask": {
"en": "List all monitoring servers that monitored this server (separated by comma)"
},
"example": "example.com,example2.com",
"optional": true
},
{
"name": "mails",
2020-10-04 22:03:10 +02:00
"type": "string",
"ask": {
"en": "Mails to which send alerts about servers monitored by this server (separated by comma)"
},
"example": "john@example.com,jane@example.com",
"optional": true
},
{
"name": "sms_api",
2020-10-04 22:03:10 +02:00
"type": "string",
"ask": {
"en": "List here an SMS URL to use to send alerts by SMS (e.g. the internet provider 'free' offers some API for that)"
},
"example": "https://smsapi.free-mobile.fr/sendmsg?user=USERID&pass=PASSWORD&msg=",
"optional": true
}
]
}
}