text logstash_conf

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了text logstash_conf相关的知识,希望对你有一定的参考价值。

input {
	  file {
		      path => "/tmp/*.log"
	}
}

filter {
	if [message] =~ /ERROR/ {
			mutate {
				copy => { "path" => "path_tmp" }
			}
			mutate {
				split => { "path_tmp" => "/" }
			}
	                mutate {
				 replace => { "message" => "%{[path_tmp][1]}_%{message}"  }
			}
			mutate {
				 remove_field => [ "path_tmp" ]
			}
	}
								    
}

output {
	  slack {
		      url => "https://hooks.slack.com/services/xx/xx/xx"
		          format => "[Test !] %{message}"
			    }
	    # stdout { codec => rubydebug }
}

以上是关于text logstash_conf的主要内容,如果未能解决你的问题,请参考以下文章

库魔法。 text/plain 而不是 text/javascript text/css

<!-- text --> 和 /* text */ 注释有啥区别?

VB中 如何复制Text1.text的字体到剪贴板? 如何剪切?

VB 加减乘除

text-decoration:[ text-decoration-line ] || [ text-decoration-style ] || [ text-decoration-color ]

.text 和 .get_text() 之间的区别