Logs

  • SearchBlox provides multiple logs for troubleshooting and monitoring. The log files are available in <SEARCHBLOX_INSTALLATION_PATH>/webapps/searchblox/logs

    1. index.log (crawler indexing activities)
    2. query.log (search queries)
    3. status.log (startup, status, errors, warnings and license/IP address issues)
    4. es.log (elasticsearch activites)
    5. auth.log (user login in admin dashboard)
    6. activity.log (creation- and deletion-related activities for collections)
    7. data.log (data from index-based search made by users)
    8. parameter.log (parameters)
    9. user.log (users added/deleted/modified)
    10. personalization.log(user/click history)
    11. securesearch.log (logs related to secure search)
  • Elasticsearch and status logs are rotated on a daily basis and are not deleted.

  • Index, query, and other logs are rotated daily and deleted after every fourteen days.

  • SearchBlox service related activities can be found the wrapper.log in ../services/log

  • If you need to log the console output, add the following lines in start.ini file
    --module=console-capture

Log Files for Monitoring

The following log files are recommended for monitoring:

<SEARCHBLOX_INSTALLATION_PATH>/webapps/searchblox/logs/status.log
<SEARCHBLOX_INSTALLATION_PATH>/webapps/searchblox/logs/es.log

Linux path
/opt/searchblox/logs/searchblox.log

Windows path
C:/SearchbloxServer/services/log/wrapper.log

Error Messages Within the Logs

Terms/errors to be monitored in the application log files

The status.log and es.log files can be monitored for the following errors:

  1. gc overhead limit exceeded (memory issue)
  2. OutOfMemoryError
  3. java.lang.OutOfMemoryError: Java heap space
  4. java.lang.OutOfMemoryError: PermGen space
  5. shutdown or Shutdown
  6. high disk watermark [*] exceeded
  7. Too many open files

Possible Causes

  • Errors 1 - 4 are due to insufficient RAM. Please increase memory allocation and restart.
  • Error 5 indicates shutdown (reasons could be memory or disk issue or network issue)
  • Error 6 indices insufficient disk space issue. Please increase disk space allocated.
  • Error 7 occurs in Linux if the ulimit value is not set to maximum.

Troubleshooting

Elasticsearch log in Linux

Error specific to /opt/searchblox/logs/elasticsearch.log for Linux:

  • max virtual memory areas vm.max_map_count [65530] is too low, increase to at least [262144]

Resolution:
Increase map count using the command:
sysctl -w vm.max_map_count=262144

Too Many Open Files

If this error is observed in index.log or status.log it is required to increase the ulimit.

  • Check the ulimit using the command:
    ulimit -n
  • Edit the limits.conf file using the command:
    vi /etc/security/limits.conf
  • Give the following in the file before the end of file
* soft nofile 100000
* hard nofile 100000

root soft nofile 100000
root hard nofile 100000
  • Now you can check the ulimit value using the command:
    ulimit -n
  • ulimit value should be 100000 or higher
  • Please reboot after this change.

Elasticsearch Indices

SearchBlox ingests and retrieves data from elasticsearch, which you can access to view the data.

To check the status of elasticsearch index, go to https://localhost:9200/_cat/indices.
credentials
username: admin
password: admin

754

🚧

Important Information:

URL for accessing elasticsearch is https://localhost:9200/
If you are using a custom domain or port in elasticsearch.yml please use the relevant domain and port to access elasticsearch.


What’s Next