I'm using ELK stack on ubuntu 14.0.4 , I want to send log files from my local machine using filebeat to my server,Someone help me out with this scenario

Guide me with all configuration file for client ,step by step

yes,i too face the same scenario,Someone guide me with it

Have you read https://www.elastic.co/guide/en/beats/filebeat/current/filebeat-getting-started.html?

Yeah warkolm but still i'm not getting it done.

Well what problems are you having?

Filebeat is running in my local machine. i need to establish a connection between filebeat in my machine to logstash in cloud server. i dont know exactly what to configure.

this is my filebeat.yml conf file in localmachine
filebeat.prospectors:

  • input_type: log
    paths:
    - C:\Program Files\Filebeat\logs*

    filebeat:
    

    registry_file: .filebeat

output.elasticsearch:
hosts: ["139.59.1.66:9200"]

output.logstash:
hosts: ["139.59.1.66:5044"]

now i want to send file to local machine to the ELK Stack on ubuntu 14.0.4,
i dont know to to do it,but file beat in localmachine is running correctly..

Do you want to send the logs to elasticsearch or logstash? I do not recommend to do both? Did you follow the getting started part about setting up Logstash or Elasticsearch? Are these (or at least one) services running?

Use syslog-ng to read local files on Ubuntu and pipe them up to Logstash (local or external).

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.