Auditor template successfully installed – How to solve this Elasticsearch error

Opster Team

Aug-23, Version: 7.1-8.9

Briefly, this error occurs when the Elasticsearch Auditor template is successfully installed. However, this is not an error but a confirmation message indicating that the installation process has been completed successfully. If you’re seeing this message, it means that the auditor template has been installed correctly. If you’re experiencing issues, they’re likely unrelated to this process. Check other parts of your system or application for potential problems.

This guide will help you check for common problems that cause the log ” Auditor template [{}] successfully installed ” to appear. To understand the issues related to this log, read the explanation below about the following Elasticsearch concepts: plugin, template.

Log Context

Log “Auditor template [{}] successfully installed” classname is AbstractAuditor.java.
We extracted the following from Elasticsearch source code for those seeking an in-depth context :

        ActionListener putTemplateListener = ActionListener.wrap(r -> {
            synchronized (this) {
                // synchronized so nothing can be added to backlog while this value changes
                hasLatestTemplate.set(true);
            }
            logger.info("Auditor template [{}] successfully installed"; templateName);
            putTemplateInProgress.set(false);
            writeBacklog();
        }; e -> {
            logger.warn(Strings.format("Error putting latest template [%s]"; templateName); e);
            putTemplateInProgress.set(false);

 

How helpful was this guide?

We are sorry that this post was not useful for you!

Let us improve this post!

Tell us how we can improve this post?