FAQ: How do I get Fluent Bit compressed logs into LogScale?

Fluent Bit gzip compressed logs can be directly imported into LogScale, as long as configuration is set correctly.

To configure this on the Fluent Bit side, see the following example:

// to configure for GZIP compressed logs from Fluent Bit
[OUTPUT] 
  Name es 
  Match humio.* 
  Host ${FLUENT_HOST} 
  Port ${FLUENT_PORT} 
  tls ${FLUENT_TLS} 
  tls.verify ${FLUENT_TLS_VERIFY} 
  HTTP_User ${HUMIO_REPO_NAME} 
  HTTP_Passwd ${HUMIO_INGEST_TOKEN} 
  Logstash_Format On 
  Retry_Limit False 
  Type flb_type 
  Time_Key @timestamp 
  Replace_Dots On 
  Logstash_Prefix FluentBitHelmChart 
  Buffer_Size 5MB 
  compress gzip

Note the compress gzip at the end of the Fluent Bit configuration file snippet.