🚀0.11

Released on 25 Jun 2021

Features and Enhancements:

  • Re-Use cache DB between search server restarts to speed up index warming. To use this feature, attach a persistant volume to the search server. Refer to config changes a) below to enable this feature.

  • Labels in messages can be disabled now by using the following flag in the grafana search query. By adding this flag "label =0" (by default labels are enabled) in the query.

Bug fixes :

  • Unique Labels - The logs are added with Unique labels so that ALL the logs are visible in grafana. Grafana will no longer show less than the given "limit" number of logs because of duplicate removal.

  • Change in message - "Error in search server: No search results found for the query please try again later " changed to "No search results found for the query". If index warming is still in process message is kept as-is: "No search results found for the query please try again later "

Config changes :

  • ops.index.cache.resetonstart : The value "true" in this config signifies that the data in cache DB can be discarded/reset on restarts and "false" signifies that the cache data will be re-used from the dir where pvc is attached and mapped to.

name: ops.index.cache.resetonstart

value: "true"

  • In the below config please map the dir to which pvc is attached.

name: ops.cache.dir

value: "/data"

Last updated