🪴 Daily gardening

Search

Search IconIcon to open search

Logstash

Last updated Nov 29, 2022

# Configuration

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
input {
  beats {
    port => 5044
  }
}

filter{
}

output {
  s3 {
    region => "us-east-1"
    bucket => "log-bucket"
    prefix => "%{+YYYY}/%{+MM}/%{+dd}"
    codec => line { format => "%{message}"}
  }
}

# Input

# filebeat

# file

# Filter

# Output

# S3

# References