[Are there still people using Icinga? I see no traffic on the list.]

On Wed, Apr 17, 2019 at 08:27:17AM +0200,
 Stephane Bortzmeyer <steph...@sources.org> wrote 
 a message of 17 lines which said:

> But the notifications widget is unusable since it is sorted by date
> and notifications erroneously in the future block the beginning of the
> widget.
> 
> How to remove all these notifications (and all events during this
> period) from the database?

In the end, I connected directly to the PostgreSQL database with 'sudo
-u postgres psql icinga' and did:

BEGIN;
DELETE FROM icinga_notifications WHERE start_time > '2019-06-12';
DELETE FROM icinga_contactnotifications WHERE start_time > '2019-06-12';
COMMIT;

It seems to work.
_______________________________________________
icinga-users mailing list
icinga-users@lists.icinga.org
https://lists.icinga.org/mailman/listinfo/icinga-users

Reply via email to