Matthew Smith
Matthew Smith
Schedule downtime doesn't freeze a check in place, it just stop's notifications, the checks still run and return results which doesn't help dashboards. The way to do this in Icinga...
@ollytom in practice many meerkat dashboards contain elements arranged in a grid with 1 to many columns. Some of these dashboards include grids elements along with other schematic elements meaning...
Here is some python code that does grid management. It is part of an external tool used for dashboard layout and may be a use for this feature in Meerkat....
some perl to create links automatically... starting point ``` foreach my $e (@{$data->{elements}}) { my $o = $e->{options}; next unless exists $o->{id}; next if $e->{type} eq 'static-text'; my ($host,$service) =...
Any automatic saving would have to come after versioning to ensure changes we don't want saved can be rolled back easily. An initial functionality to add would be the dirty...
should save the data file in utf-8 format which can handle `&`
Current functionality is moving towards any result assuming that 0, 1 or many results will be returned. For status the "worst" status is returned. For values the "most recent worst"...
> The "action" pattern being used here in the role variables is kind of novel to me. The reason for the action pattern is because we don't have a fixed...
> Do you know of any other roles that handle files or something similar this way? I kinda based it of ansible itself like `ansible.builtin.file` but I didn't think `state`...
@lae another change I made to get custom validators working was to change the configuration template so it was easier to setup the yml and output'd in a easier to...