Cribl LogStream supports receiving data over HTTP/S using the Elasticsearch Bulk API. (See the Configuring Filebeat example below.)
Type: Push | TLS Support: YES | Event Breaker Support: No
Configuring LogStream to Receive Data over HTTP(S), Using the Elasticsearch Bulk API Protocol
Select Data > Sources, then select Elasticsearch API from the Data Sources page's tiles or left menu. Click Add New to open the Elasticsearch API > New Source modal, which provides the fields outlined below.
LogStream ships with an Elasticsearch API Source preconfigured to listen on Port 9200. You can clone or directly modify this Source to further configure it, and then enable it.
General Settings
Input ID: Enter a unique name to identify this Elasticsearch Source definition.
Address: Enter the hostname/IP on which to listen for Elasticsearch data. (E.g., localhost
or 0.0.0.0
.)
Port: Enter the port number.
Auth tokens: Shared secrets to be provided by any client (Authorization: <token>). Click Generate to create a new secret. If empty, unauthenticated access will be permitted.
Elasticsearch API endpoint (for Bulk API): Absolute path on which to listen for Elasticsearch API requests. Defaults to /
. LogStream automatically appends _bulk
, so (e.g.) /myPath
becomes /myPath/_bulk
. Requests could then be made to either /myPath/_bulk
or /myPath/<myIndexName>/_bulk
. Other entries are faked as success.
TLS Settings (Server Side)
Enabled defaults to No
. When toggled to Yes
:
Certificate name: Name of the predefined certificate.
Private key path: Path on server where to find the private key to use in PEM format. Path can reference $ENV_VARS.
Passphrase: Passphrase to use to decrypt private key.
Certificate path: Server path at which to find certificates (in PEM format) to use. Path can reference $ENV_VARS
.
CA certificate path: Server path at which to find CA certificates (in PEM format) to use. Path can reference $ENV_VARS
.
Authenticate client (mutual auth): Require clients to present their certificates. Used to perform mutual authentication using SSL certs. Defaults to No
. When toggled to Yes
:
-
Validate client certs: Reject certificates that are not authorized by a CA in the CA certificate path, or by another trusted CA (e.g., the system's CA). Defaults to
No
. -
Common name: Regex matching subject common names in peer certificates allowed to connect. Defaults to
.*
. Matches on the substring afterCN=
. As needed, escape regex tokens to match literal characters. E.g., to match the subjectCN=worker.cribl.local
, you would enter:worker\.cribl\.local
.
Minimum TLS version: Optionally, select the minimum TLS version to accept from connections.
Maximum TLS version: Optionally, select the maximum TLS version to accept from connections.
Processing Settings
Fields (Metadata)
In this section, you can add fields/metadata to each event using Eval-like functionality.
Name: Field name.
Value: JavaScript expression to compute field's value (can be a constant).
Pre-Processing
In this section's Pipeline drop-down list, you can select a single existing Pipeline to process data from this input before the data is sent through the Routes.
Advanced Settings
Max active requests: Maximum number of active requests allowed for this Source, per Worker Process. Defaults to 256
. Enter 0
for unlimited.
Field Normalization
The Elasticsearch API input normalizes the following fields:
@timestamp
becomes_time
at millisecond resolution.host
is set tohost.name
.- Original object
host
is stored in__host
.
The Elasticsearch Destination does the reverse, and it also recognizes the presence of __host
.
Internal Settings
Cribl LogStream uses a set of internal fields to assist in handling of data. These "meta" fields are not part of an event, but they are accessible, and Functions can use them to make processing decisions.
Fields for this Source:
__inputId
__id
__type
__index
__host
Configuring Filebeat
To set up Filebeat to send data to LogStream, use its Elasticsearch output. If an Auth Token is configured here, add it in Filebeat configuration under output.elasticsearch.headers
, as in this example:
output.elasticsearch:
# Array of hosts to connect to.
hosts: ["http://<LOGSTREAM_HOST>:9200/elastic"]
output.elasticsearch.headers:
Authorization: "myToken42"
Updated about a month ago