Versioner sammenlignet

Nøgle

  • Linjen blev tilføjet.
  • Denne linje blev fjernet.
  • Formatering blev ændret.

Humio is an alternative to app/log-parsers as splunk, ELK (Elasticsearch LogStash Kibana) or Datadogs Logging Elasticsearch or Datadogs Log Management..

As I already have filebeat running against splunk, its easy to add output to cloud.humio.com after signing up for a free 2 GB/Day instance :

Tip

Humio has the same inputs (more or less) as Elasticsearch Bulk and Splunk HTTP Event Collector, making it an easy replacement.

Kodeblok
output:

  ### Elasticsearch as output
  elasticsearch:
    # Array of hosts to connect to.
    # Scheme and port can be left out and will be set to the default (http and 9200)
    # In case you specify and additional path, the scheme is required: http://localhost:9200/path
    # IPv6 addresses should always be defined as: https://[2001:db8::1]:9200
    hosts: ["https://cloud.humio.com:443/api/v1/ingest/elastic-bulk"]

    # Optional protocol and basic auth credentials.
    #protocol: "https"
    username: "anything"
    password: "*********************************"

    # Number of workers per Elasticsearch host.
    worker: 1
    compression_level: 5
    bulk_max_size: 200

...