Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Users can build monitoring application applications or application applications that require to know if Runtime has started etc using the Broadcast facet.


              

Elastic Search Integration


  1. Copy Elastic Search, Kibana, Filebeat and Logstash from below link
  2. http://sandbox.atomiton.com:8080/fid-downloads/res/downloads/loganalysis.zip
  3. Unzip and update filebeat configuration to read log file from given location
    1. Path – filebeat/filebeat.yml
    2. Add below lines for each log file

- input_type: log

  paths:

    - /<Path>/deviceEngine.log

  fields:  {host: "172.31.48.38", port: "8085", type: "logs"}

  exclude_lines: [".*SffReport:.*"]

####################################

- input_type: log

  paths:

    - /<Path> /deviceEngine.log

  fields:  {host: "172.31.48.38", port: "8085", type: "SffReport"}

  include_lines: [".*SffReport:.*"]

  1. Start each service using below commands –
  2. Elastic search –
    1. Path to execute command - elasticsearch/bin
    2. Command - nohup ./elasticsearch > /dev/null &
  3. Logstash –
    1. Path to execute command - logstash/logstash/bin
    2. Command - nohup ./logstash -f logstash-engine.conf > /dev/null &
  4. Filebeat –
    1. Path to execute command – filebeat/
    2. Command - nohup ./filebeat > nohup.out &
  5. Kibana –
    1. Path to execute command – kibana/bin
    2. Command - nohup ./kibana > nohup.out &


  1. Kibana will start on port 5601
  2. URL to access Kibana - http://<host>:5601/app/kibana