fluent-plugin-syslog_rfc5424 0.8.0 → 0.9.0.rc.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +5 -4
- data/lib/fluent-plugin-syslog_rfc5424/version.rb +1 -1
- metadata +5 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 764018aead6bc7a58e9c4ba7fd4ae7538c0f0dd26aef70edb1736fd89a1f2b3c
|
4
|
+
data.tar.gz: de93f90e54b7cdc37e06706af99521cc3b076a4ca243cbea56b70c7dd8666b2c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4feca8a224f6c470ded9e3c7eff61a6557a8ee1c77ffd07782a534cdfa1c248e01fe50d2dac559338c1d734024ee56389194b1f023c6feb4a78f05817eb697ea
|
7
|
+
data.tar.gz: aa4e6ad421f5b7082d722511aaa67886b680e50680b47e59b7ee694a1eae5d8c019fa0ce1d714367907a9d3abe3ba2cf42656a4ec6b15b90141d2a30de8889a3
|
data/README.md
CHANGED
@@ -2,8 +2,7 @@
|
|
2
2
|
|
3
3
|
[![Build Status](https://travis-ci.org/cloudfoundry/fluent-plugin-syslog_rfc5424.svg?branch=master)](https://travis-ci.org/cloudfoundry/fluent-plugin-syslog_rfc5424)
|
4
4
|
|
5
|
-
|
6
|
-
Formatter plugin adheres to [RFC5424](https://tools.ietf.org/html/rfc5424).
|
5
|
+
Formatter plugin adheres to [RFC5424](https://tools.ietf.org/html/rfc5424).
|
7
6
|
|
8
7
|
Output plugin adheres to [RFC6587](https://tools.ietf.org/html/rfc6587) and [RFC5424](https://tools.ietf.org/html/rfc5424).
|
9
8
|
|
@@ -54,9 +53,12 @@ Defaults to `syslog_rfc5424`
|
|
54
53
|
| name |type | description |
|
55
54
|
| -------------- | ------- | ------- |
|
56
55
|
| rfc6587_message_size | boolean | prepends message length for syslog transmission (true by default) |
|
56
|
+
| hostname_field | string | sets host name in syslog from field in fluentd, delimited by '.' (default hostname) |
|
57
57
|
| app_name_field | string | sets app name in syslog from field in fluentd, delimited by '.' (default app_name) |
|
58
58
|
| proc_id_field | string | sets proc id in syslog from field in fluentd, delimited by '.' (default proc_id) |
|
59
|
-
|
59
|
+
| message_id_field | string | sets msg id in syslog from field in fluentd, delimited by '.' (default message_id) |
|
60
|
+
| structured_data_field | string | sets structured data in syslog from field in fluentd, delimited by '.' (default structured_data) |
|
61
|
+
| log_field | string | sets log in syslog from field in fluentd, delimited by '.' (default log) |
|
60
62
|
|
61
63
|
## Formatter Usage
|
62
64
|
|
@@ -71,7 +73,6 @@ Defaults to `syslog_rfc5424`
|
|
71
73
|
</match>
|
72
74
|
```
|
73
75
|
|
74
|
-
|
75
76
|
## Development
|
76
77
|
|
77
78
|
After checking out the repo, run `bundle install` to install dependencies. Then, run `bundle exec rake` to run the tests. You can also run `bundle console` for an interactive prompt that will allow you to experiment.
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fluent-plugin-syslog_rfc5424
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.9.0.rc.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Pivotal
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-04-
|
11
|
+
date: 2020-04-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -146,12 +146,11 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
146
146
|
version: '0'
|
147
147
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
148
148
|
requirements:
|
149
|
-
- - "
|
149
|
+
- - ">"
|
150
150
|
- !ruby/object:Gem::Version
|
151
|
-
version:
|
151
|
+
version: 1.3.1
|
152
152
|
requirements: []
|
153
|
-
|
154
|
-
rubygems_version: 2.7.6.2
|
153
|
+
rubygems_version: 3.1.2
|
155
154
|
signing_key:
|
156
155
|
specification_version: 4
|
157
156
|
summary: FluentD output plugin to send messages via rfc5424
|