Welcome to Pandora FMS Community!

Find answers, ask questions, and connect with our community around the world.

Welcome to Pandora FMS Community Forums Community support Agent alert "hanging" in Tactical View

Tagged: ,

  • Agent alert "hanging" in Tactical View

    Posted by Patrick8516 on February 18, 2022 at 09:09

    An agent fired a critical alert. Before the alert was resolved, we deleted the whole agent.

    Even though the agent was deleted, the critical alert is still displayed in the Tactical View. The “agent-name”-column is empty, which makes sense because the agent no longer exists.

    The problem now is, we cannot find a way to delete this alert out of Tactical View.

    Any idea how to solve this issue would be greatly appreciated!

    vic replied 2 years, 11 months ago 2 Members · 1 Reply
  • 1 Reply
  • vic

    Administrator
    February 18, 2022 at 12:24
    1552 Karma points
    Community awards: bulb Bright ideas
    Community rank: tentacle_master_icon Tentacle Master
    Like it
    Up
    3
    Down
    Drop it
    ::

    Hi,

    The only option you have to delete the alert is through the database.

    You can delete the alert via the database interface of the console:

    http://X.X.X.X/pandora_console/index.php?extension_in_menu=gextensions&sec=gbman&sec2=extensions/dbmanager

    The table where the configured alerts are stored is as follows:

    talert_template_modules

    You can search which ID is the one that corresponds to the configured alert and delete the corresponding row, here I leave you a SQL query so you can search all the results.

    SELECT  * FROM  talert_template_modules;

    Once you have the ID, you must use the following query to delete the fired alert (replace the XX with the alert ID).

    DELETE  FROM  talert_template_modules  WHERE  id=XX;

    Best regards,

    Vic.