Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- Docker
- 투자
- threejs
- angular
- 부동산
- 게임
- 이더리움
- 비트코인
- PC
- game
- strongloop
- 거래
- 젤다 왕눈
- 암호화폐
- 보안
- 탈중앙화
- 주식
- 스마트 계약
- Games
- loopback
- 쿠버네티스
- Linux
- 시장
- ps4
- kubernetes
- 블록체인
- Three
- review
- 스마트 컨트랙트
- 리뷰
Archives
- Today
- Total
BaeBox
Logstash - Filter & Codec 본문
반응형
//날짜 포맷 변경
filter {
date {
match => [ "logdate", "MMM dd yyyy HH:mm:ss" ]
}
}
//drop 필터. 버린다.
filter {
if [loglevel] == "debug" {
drop { }
}
}
// source 에 속한 녀석들과 hash를 합쳐서 genrated_id 라는 녀석을 만든다.
filter {
fingerprint {
source => ["IP", "@timestamp", "message"]
method => "SHA1"
key => "0123"
target => "[@metadata][generated_id]"
}
}
// 필드 값 CRUD.
filter {
mutate {
rename => { "HOSTORIP" => "client_ip" }
}
}
// Strip whitespace from field. NOTE: this only works on leading and trailing whitespace.
filter {
mutate {
strip => ["field1", "field2"]
}
}
// 90 % 이벤트를 버린다.
filter {
ruby {
code => "event.cancel if rand <= 0.90"
}
}
input {
kafka {
codec => {
avro => {
schema_uri => "/tmp/schema.avsc"
}
}
}
}
filter {
csv {
separator => ","
columns => [ "Transaction Number", "Date", "Description", "Amount Debit", "Amount Credit", "Balance" ]
}
}
input {
tcp {
codec => fluent
port => 4000
}
}
input {
file {
path => "/path/to/myfile.json"
codec =>"json"
}
input
kafka {
zk_connect => "127.0.0.1"
topic_id => "your_topic_goes_here"
codec => protobuf {
class_name => "Animal::Unicorn"
include_path => ['/path/to/protobuf/definitions/UnicornProtobuf.pb.rb']
}
}
}
filter {
xml {
source => "message"
}
}
반응형
'개발 관련' 카테고리의 다른 글
Callback (0) | 2019.11.06 |
---|---|
LogStash - grok filter (0) | 2019.11.03 |
Logstash - 데이터를 쏴보자! (0) | 2019.11.03 |
LogStash - docker-compose.yml 국소부위 훑어보기 (0) | 2019.11.03 |
LogStash - config 디렉토리 (0) | 2019.11.03 |
Comments