1
0
mirror of https://github.com/krislamo/puppet-fluentd synced 2024-09-19 20:20:35 +00:00
puppet-fluentd/spec/fixtures/files/source_tail.conf

15 lines
262 B
Plaintext
Raw Permalink Normal View History

2017-08-03 10:11:13 +00:00
<source>
2017-08-04 09:16:51 +00:00
type tail
format json
path /var/log/test-application/*.json
<parse>
type regexp
expression ^(?<name>[^ ]*) (?<user>[^ ]*) (?<age>\d*)$
</parse>
<storage>
type local
path test.pos
</storage>
2017-08-04 09:16:51 +00:00
tag application.test
2017-08-03 10:11:13 +00:00
</source>