Commit Graph

36 Commits

Author SHA1 Message Date
Gibheer 8e6e01f47c switch from log to slog
This commit replaces the various log entry points with a common logger
provided via context. This is helpful as it groups all log entries
together via the txid and should help in the future when debugging
cascading errors.
2023-08-17 22:05:46 +02:00
Gibheer 10f7eb53f4 prepare switch to log/slog
This commit prepares the switch from log to log/slog, which was
introduced in Go 1.21.
slog provides some useful facilities to add metadata to log entries,
which should be helpful for debugging problems.

This commit also adds a small transaction ID generator. It provides a
common identifier between log messages, so that multiple errors can be
viewed together in their order.
2023-08-17 22:02:52 +02:00
Gibheer e29f38937c monfront - add basic interface to create some entities 2022-12-15 11:16:56 +01:00
Gibheer 49dac92034 monfront - only ACK when the check is in alarm state
The acknowledged flag gets removed by checkers when the state changes to
okay.
But if we acknowledge a check when it is okay the notification system
stops working.
2022-12-02 09:32:05 +01:00
Gibheer fa05045d31 cmd/monfront - import monfront from separate repository
This is the import from the separate monfront repository. The history
could not be imported, but this should suffice.
2021-12-02 17:54:14 +01:00
Gibheer e5ac5a4e53 move monfront to separate repository
Monfront was forked into its own repository to make it easier to work
on.
2019-03-13 14:29:50 +01:00
Gibheer 361ca94ca3 monfront - fix group list
It was possible that a node was showing multiple times when it had more
than one check. That wasn't the purpose of that list.
Now each node only comes up once and its worst state is shown.
2019-03-08 16:45:28 +01:00
Gibheer bef2cfa349 monfront - enable jumping from groups to checks
This allows to view all the important checks for a group much easier.
2019-03-08 15:18:12 +01:00
Gibheer bb48d9387b monfront - add link to list checks from a group 2019-03-08 14:41:38 +01:00
Gibheer c9a990513a monfront - final fix for select all
There was an issue with the select all in that clicking an input field
didn't trigger the marking as the event was not pushed through to the
underlying elements.
2019-01-24 18:09:20 +01:00
Gibheer aff501bebc monfront - add select all
This commit adds a select all function to select all rows of a list to
mark them all.
This could be used to send a refresh to all these checks or acknowledge
them or whatever.

Also the referrer handling in checkAction() was moved to the start so
that even with an error the same thing happens.
2019-01-24 15:37:43 +01:00
Gibheer b1746c6626 monfront - fix check id variable name
The field name was wrong and therefore actions weren't completed and the
redirect was wrong.
2019-01-24 13:30:05 +01:00
Gibheer 80b7d7cbe4 monfront - firefox has no event.path
Because Firefox has no attribute path for an event to represent the
element chain of the target, we need to iterate through the parents.
2019-01-24 12:01:21 +01:00
Gibheer 02e838e2fe monfront - add highlight to selected rows
The selected rows are now properly highlighted. See #7 for more
information.
2019-01-24 11:41:18 +01:00
Gibheer 18e4ba6ae4 monfront - add line select
As in #7 requested, it is now possible to select a row by clicking on
the row itself. This should make it much easier to select a larger
number of rows.
2019-01-24 11:26:26 +01:00
Gibheer e8e67f091a monfront - link to node checks from check detail
This way it is possible to jump between a node and its checks.
2019-01-24 09:25:00 +01:00
Gibheer a9634bbcaa monfront - fix referer
Somewhen in the last couple years, something called a referer policy was
introduced. This avoided the correct relocation after any action was
sent.
Now with the fix, the redirect properly works.
2019-01-24 09:18:46 +01:00
Gibheer 6a5c0b92bd monfront - add notifications to check details
This adds the first basic listing of notifications to the check details.
No idea how many of them should be listed here, but having the list at
all for a start should be okay.
2019-01-11 23:02:58 +01:00
Gibheer aed518ea76 monfront - remove showNode and showGroup
There is just no information that could possibily be shown there, that
isn't already shown somewhere else.
2019-01-11 19:54:06 +01:00
Gibheer 203ca756e1 monfront - send an okay notification when check is acknowledged
When a check is acknowledged, no more further notifications should be
sent. But for the notified system, it should be made clean, that it is
taken care of and no further actions need to be done, therefore send an
okay, even when the check isn't okay.
2019-01-11 13:03:07 +01:00
Gibheer f804446ad3 monfront - fix group order
The adding of the order by clause happend in the wrong position and
therefore made the resultset unuseable.
2019-01-10 09:50:18 +01:00
Gibheer 73c7353082 monfront - sort result list
The result list should be ordered for the state when unhandled entries
should be returned. Else it is getting weird to figure out, which issue
is the most important to fix.
2019-01-10 07:10:02 +01:00
Gibheer ea658177ee monfront - add hover background color
With some monitors, the view may be too wide to make out, which line
belongs to what. For that purpose, add a background color when the mouse
is hovering over a line.
2019-01-10 05:50:02 +01:00
Gibheer bfe455d936 monfront - add css to make check detail view nicer
Now all the fields are shown in a column like view, which makes viewing
them much nicer to the eye.
2019-01-10 05:48:25 +01:00
Gibheer 96d853fad6 monfront - add check detail view
This adds a detail view for a single check. The purpose is to view
notifications for this check alone and get the context information on
the node it belongs to, the command and settings.
2019-01-09 20:17:49 +01:00
Gibheer 7c541189fe monfront - fix actions on checks
This is related to #6. The muting, enable and disable were not working
properly, because the date was not set when the check was updated.

With this comes also the first icon to represent the muted status.
2019-01-03 19:48:17 +01:00
Gibheer db3a7cdda9 monfront - add some cleanup and search
Monfront now has a basic search functionality for nodes. It also got
some nicer design to make it more useable.
2019-01-03 13:44:21 +01:00
Gibheer c646179fa9 monfront - show groups
This is the first step to view the group status. The templates were
split into multipe parts, to make reuse easier.
2019-01-02 16:09:04 +01:00
Gibheer 887e8ea089 monfront - fix mute options
After the notifications were extracted the mute option didn't work
anymore. With this fix, they are back to working.
2018-12-14 19:52:21 +01:00
Gibheer e151f056ad monfront - remove notify flag
This will be replaced with a different system in the long term.
2018-12-12 14:06:16 +01:00
Gibheer feee448af6 monfront - add missing column to unhandled checks
The unhandled checks didn't contain the mapping id, which caused an
error at scan time.
2018-12-11 13:33:06 +01:00
Gibheer 564ec5c2a3 monfront - add a timeout with reload
This finally adds a reload to the frontend, so that one hasn't to reload
manually all the time.
2018-12-11 13:25:01 +01:00
Gibheer dece1ac2dc add level mappings
This allows to map the command exit codes to any other output level
which can then be reported by the notification plugin.
With the provided colors, the frontend will show them accordingly.
2018-12-11 12:37:30 +01:00
Gibheer 6c2bea5365 monfront - make fake groups in frontend
It would have been nice to use rowgrouping for the node name, but
somehow it wasn't easy to get the rowcount. So this should do for now.
2018-12-10 09:34:45 +01:00
Gibheer 3400167c98 monfront - add initial work for unhandled links
This will return the unhandled groups/checks/whatever but is still work
in progress.
2018-11-29 10:56:20 +01:00
Gibheer 3b8e27706b monfront - add initial version
This version can already show the list of checks, their last state and
add ways to manipulate the check or active check.
2018-11-20 21:48:16 +01:00