Compare commits

...

2 Commits

Author SHA1 Message Date
Benjamin Drieu 68e394508c Remove annoying notification 2021-12-01 16:24:18 +01:00
Benjamin Drieu e194321288 Update roadmap 2021-12-01 16:24:07 +01:00
2 changed files with 5 additions and 6 deletions

View File

@ -30,11 +30,9 @@ inside of the gnome-shell panel (this could not be developed).
Things I plan to add at some point or another:
* Buttons to operate on services à la nagstamon (recheck, connect via SSH, etc.)
* Regexes to modify the output of services (to prune unecessary stuff)
* Filters to hide services (acked ones, or depending on regexes)
* Filters to hide services (acked, handled, ...)
* Support for other (as in free speech) monitoring servers
* Choose which columns are shown in services result
* Better icinga2 support (use API because things are missing in the json output ?)
Things I will be unlikely to add unless a patch is provided:

View File

@ -96,9 +96,10 @@ class GenericServer {
{
log ( '>>> Error: ' + message.reason_phrase );
log ( '>>> Data: ' + message.data );
Main.notifyError ( 'Monito: ' + this.name,
'URL: ' + this.urlcgi + "\n" +
message.status_code + ': ' + message.reason_phrase );
// TODO: add pref for that
// Main.notifyError ( 'Monito: ' + this.name,
// 'URL: ' + this.urlcgi + "\n" +
// message.status_code + ': ' + message.reason_phrase );
this.error = message.reason_phrase;
return null;
}