JavaMelody

Monitoring SearchBlox with JavaMelody

JavaMelody is a light-weight monitoring plugin that helps troubleshoot issues quickly.

1840

Accessing JavaMelody

Once SearchBlox is up and running, use the link below to access Java Melody
https://localhost:8443/monitoring
Username: admin
Password: searchblox

Changing Password of JavaMelody

To change the password of JavaMelody, make the change in web.xml file found in <SEARCHBLOX_INSTALLATION_PATH>\webapps\ROOT\WEB-INF\, within the <param-value> tag as in the snippet given below.

<filter>
        <filter-name>javamelody</filter-name>
        <filter-class>net.bull.javamelody.MonitoringFilter</filter-class>
        <async-supported>true</async-supported>
        <init-param>
            <param-name>authorized-users</param-name>
            <param-value>admin:searchblox</param-value>
        </init-param>
    </filter>

What’s Next