Clearing the alert_history Collection
On Apinizer, alarms can be created under specific conditions using actions. Information about these alarms, such as the timestamp, message details within the action, and the object from which it was triggered, is stored in the alert_history
collection.
Record Cleaning Script:
The following script is used to delete records from the alert_history
collection in MongoDB that are older than the specified hour.
This operation helps optimize storage space by cleaning up the database.
The time filter is applied based on UTC.
How It Works:
- The required information to connect to the MongoDB server is defined in the relevant variables: HOST, PORT, DB_NAME, USERNAME, PASSWORD, and AUTH_DB.
- The variable TIME_VALUE specifies how many hours ago records will be deleted. This value can be in hours (H) or days (D).
- Within the
MONGO_COMMANDS
variable, MongoDB commands are defined to find and delete documents older than the specified number of hours. - The MongoDB server is connected using the
mongosh
command, and the commands defined in theMONGO_COMMANDS
variable are executed. - When the process is completed, the message "
The command has been executed. Please check the content of the related collection.
" is printed to the screen.
Usage:
- Before running the script, enter your own information into the MongoDB variables, and update the TIME_VALUE variable according to the desired hour/day value. For example, set TIME_VALUE=3H to keep documents from the last 3 hours and delete the rest, or set TIME_VALUE=5D to keep documents from the last 5 days and delete the rest.
- To run the script on a Linux-based operating system, first copy the script to a file using a text editor (vi, nano, etc.) and edit the variables inside.
- Execute permission is granted to the file:
chmod +x purge_alert_history_collection.sh
- The file is executed.:
./purge_alert_history_collection.sh
- If you expect the process to take a long time, you can add a space and the
&
character at the end of the command to make it run in the background.:./purge_alert_history_collection.sh &
- If you expect the process to take a long time, you can add a space and the
This process can be done manually or set to repeat at specified intervals. To repeat it, you need to add this task to Linux cronjob settings.
CronJob Usage:
1) Open the cron editor by running the following command in the terminal:
2) In the opened editor, add a line based on how frequently you want to run the script.
For example, to run it every day at 23:59, you can write:
To save the added line, press the Esc key, type :wq, and press the Enter key.
Reminder
The data clearing process in the script will occur according to the time zone specified within the script.
Therefore, it is important to ensure consistency between the time zone in the script and the triggering time set with cron.