Questions tagged [logstash-forwarder]

8 questions
4
votes
1 answer

logstash-forward equivalent for fluentd?

Is there something equivalent to logstash-forwarder that can ship logfiles to fluentd? I am trying to send log files from an application to a remote fluentd but have not seen whether this is possible via an agent somehow. I understand that you can…
adamo
  • 6,867
  • 3
  • 29
  • 58
4
votes
2 answers

Elasticsearch performance tuning

In a Single Node Elastic Search along with logstash, We tested with 20mb and 200mb file parsing to Elastic Search on Different types of the AWS instance i.e Medium, Large and Xlarge. Logstash conf input { file { } } filter { mutate { …
Devaraj
  • 41
  • 1
  • 4
1
vote
0 answers

Nginx remote access log

Actually, I have Nginx and Logstash installed on the same machine. And I want to separate them. I've installed Logstash in an other machine. How can I store the accsess_log Nginx file in the second machine ? Or How can I set the a Logstash remote…
N.Khalifa
  • 11
  • 1
0
votes
2 answers

Kibana @timestamp mapping & filter

I'm using following system/package: $ cat /etc/redhat-release CentOS Linux release 7.2.1511 (Core) $ rpm -q filebeat filebeat-1.3.0-1.x86_64 $ with /etc/filebeat/filebeat.yml: $ cat /etc/filebeat/filebeat.yml filebeat: prospectors: - …
alexus
  • 12,342
  • 27
  • 115
  • 173
0
votes
0 answers

How to extend a field with a multiline message

I have a logstash conf like so: input { lumberjack { port => 5000 type => "logs" ssl_certificate => "/path/to/mycert" ssl_key => "/path/to/mykey" } } filter { if [type] == "logs" { if [message] =~ /^\d\d\d\d/ { grok…
goofdad
  • 101
  • 2
0
votes
1 answer

Pipe Unicorn output to Logstash-Forwarder

I have installed logstash-forwarder on a DigitalOcean Ubuntu droplet, along with my Rails app that I deploy with Capistrano. I know logstash-forwarder is installed because I can do sudo service logstash-forwarder restart. I have configured…
Jezen Thomas
  • 101
  • 2
0
votes
1 answer

Logststash forwarder read error looking for ack: EOF

I am receiving this error message every time logstash-forwarder has a new log to ship. Eventually the connection gets made and logstash-forwarder output confirms that the events have been processed but I was hoping that there could a way to resolve…
jmreicha
  • 791
  • 1
  • 16
  • 29
-1
votes
1 answer

How to display filebeat logs as a single file in kibana?

I have used ELK for displaying my middleware logs in kibana. for that I am using multiline patterns which mentioned below, after those logs displaying seperatly like separate expandable. How to display those logs as a single file ? as a single…
Shankar
  • 199
  • 1
  • 2
  • 14