Skip to content

Latest commit

 

History

History
55 lines (35 loc) · 1.32 KB

README.md

File metadata and controls

55 lines (35 loc) · 1.32 KB

POC-FileBeatELK

Docker Compose File

Refer docker-compose.yml

filebeat config file

filebeat.inputs:
- type: filestream

  # Unique ID among all inputs, an ID is required.
  id: my-filestream-id

  # Change to true to enable this input configuration.
  enabled: true

  # Paths that should be crawled and fetched. Glob based paths.
  paths:
    - /users/sujeet/development/restful/poc-rest/logs/*.log



setup.kibana:

  # Kibana Host
  # Scheme and port can be left out and will be set to the default (http and 5601)
  # In case you specify and additional path, the scheme is required: http://localhost:5601/path
  # IPv6 addresses should always be defined as: https://[2001:db8::1]:5601
  host: "localhost:5601"


output.elasticsearch:
  # Array of hosts to connect to.
  hosts: ["localhost:9200"]

  # Protocol - either `http` (default) or `https`.
  protocol: "http"
  allow_older_versions: true

  # Authentication credentials - either API key or username/password.
  #api_key: "id:api_key"
  username: "elastic"
  password: "changeme"

Refer filebeat.yml

Kibana

Visit Kibana to view your log files

image