log-elasticsearch-0.10.0.0: Structured logging solution (Elasticsearch back end)

Safe HaskellNone
LanguageHaskell2010

Log.Backend.ElasticSearch.V1

Description

Elasticsearch logging back-end.

Synopsis

Documentation

esServer :: ElasticSearchConfig -> Text Source #

Elasticsearch server address.

esIndex :: ElasticSearchConfig -> Text Source #

Elasticsearch index name.

esShardCount :: ElasticSearchConfig -> Int Source #

Elasticsearch shard count for the named index.

Since: 0.10.0.0

esReplicaCount :: ElasticSearchConfig -> Int Source #

Elasticsearch replica count for the named index.

Since: 0.10.0.0

esMapping :: ElasticSearchConfig -> Text Source #

Elasticsearch mapping name.

esLogin :: ElasticSearchConfig -> Maybe (EsUsername, EsPassword) Source #

Elasticsearch basic authentication username and password.

esLoginInsecure :: ElasticSearchConfig -> Bool Source #

Allow basic authentication over non-TLS connections.

checkElasticSearchLogin :: ElasticSearchConfig -> IO (Either IOException ()) Source #

Check that login credentials are specified properly.

Since: 0.10.1.0

checkElasticSearchConnection :: ElasticSearchConfig -> IO (Either HttpException ()) Source #

Check that we can connect to the ES server.

Since: 0.10.1.0

withElasticSearchLogger :: ElasticSearchConfig -> IO Word32 -> (Logger -> IO r) -> IO r Source #

Create an elasticSearchLogger for the duration of the given action, and shut it down afterwards, making sure that all buffered messages are actually written to the Elasticsearch store.

elasticSearchLogger Source #

Arguments

:: ElasticSearchConfig

Configuration.

-> IO Word32

Generate a random 32-bit word for use in document IDs.

-> IO Logger 

Deprecated: Use withElasticSearchLogger instead!

Start an asynchronous logger thread that stores messages using Elasticsearch.

Please use withElasticSearchLogger instead, which is more exception-safe (see the note attached to mkBulkLogger).