fluent-plugin-datadog 0.10.3 → 0.10.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile +1 -1
- data/LICENSE +1 -1
- data/README.md +16 -7
- data/Rakefile +1 -1
- data/fluent-plugin-datadog.gemspec +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 00af8da995a6929449a6b846fd3c772ba27fa0ef
|
4
|
+
data.tar.gz: dc262a477d7064e2aac918059beec067d4de02fb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 61ed7f93e4b22ce85e80e49bfbf3f08d78e6eda151d29c071b52cb24f92085119b68b07049211b8355d369bb5994556bd0cb89a50ed14bba37818e2d1e481973
|
7
|
+
data.tar.gz: e8d97a7e1cdb2c0b6c749a799f8a0dd5eed7288e7d7346f3c476c96e912aa176cf3b481bed6fbc2b6c50c1d946a858ca75ecd1ffc51cff968fef32d8340b6e0b
|
data/Gemfile
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
# Unless explicitly stated otherwise all files in this repository are licensed
|
2
2
|
# under the Apache License Version 2.0.
|
3
3
|
# This product includes software developed at Datadog (https://www.datadoghq.com/).
|
4
|
-
# Copyright
|
4
|
+
# Copyright 2018 Datadog, Inc.
|
5
5
|
|
6
6
|
source 'https://rubygems.org'
|
7
7
|
|
data/LICENSE
CHANGED
@@ -186,7 +186,7 @@
|
|
186
186
|
same "printed page" as the copyright notice for easier
|
187
187
|
identification within third-party archives.
|
188
188
|
|
189
|
-
Copyright
|
189
|
+
Copyright 2018 Datadog, Inc.
|
190
190
|
|
191
191
|
Licensed under the Apache License, Version 2.0 (the "License");
|
192
192
|
you may not use this file except in compliance with the License.
|
data/README.md
CHANGED
@@ -63,16 +63,25 @@ Let's go deeper on the plugin configuration.
|
|
63
63
|
|
64
64
|
As fluent-plugin-datadog is an output_buffer, you can set all output_buffer properties like it's describe in the [fluentd documentation](http://docs.fluentd.org/articles/output-plugin-overview#buffered-output-parameters "documentation").
|
65
65
|
|
66
|
-
|
67
66
|
| Property | Description | Default value |
|
68
67
|
|-------------|--------------------------------------------------------------------------|----------------|
|
69
|
-
| **api_key** | This parameter is required in order to authenticate your fluent agent.
|
70
|
-
| **use_json
|
71
|
-
| **include_tag_key
|
72
|
-
| **tag_key
|
68
|
+
| **api_key** | This parameter is required in order to authenticate your fluent agent. | nil |
|
69
|
+
| **use_json** | Event format, if true, the event is sent in json format. Othwerwise, in plain text. | true |
|
70
|
+
| **include_tag_key** | Automatically include tags in the record. | false |
|
71
|
+
| **tag_key** | Name of the tag attribute, if they are included. | "tag" |
|
73
72
|
| **use_ssl** | If true, the agent initializes a secure connection to Datadog. In clear TCP otherwise. | true |
|
74
|
-
|
75
|
-
| **max_retries** | The number of retries before the output plugin stops. Set to -1 for unlimited retries | -1
|
73
|
+
| **max_retries** | The number of retries before the output plugin stops. Set to -1 for unlimited retries | -1 |
|
74
|
+
| **max_retries** | The number of retries before the output plugin stops. Set to -1 for unlimited retries | -1 |
|
76
75
|
| **dd_source** | This tells Datadog what integration it is | nil |
|
77
76
|
| **dd_sourcecategory** | Multiple value attribute. Can be used to refine the source attribtue | nil |
|
78
77
|
| **dd_tags** | Custom tags with the following format "key1:value1, key2:value2" | nil |
|
78
|
+
|
79
|
+
### Docker and Kubernetes tags
|
80
|
+
|
81
|
+
Whether you are using kubernetes, you can enrich your logs with docker and kubernetes tags using [fluent-plugin-kubernetes_metadata_filter](https://github.com/fabric8io/fluent-plugin-kubernetes_metadata_filter).
|
82
|
+
Add the following code to your configuration file to enable the filter plugin:
|
83
|
+
```xml
|
84
|
+
<filter kubernetes.*>
|
85
|
+
type kubernetes_metadata
|
86
|
+
</filter>
|
87
|
+
```
|
data/Rakefile
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# Unless explicitly stated otherwise all files in this repository are licensed
|
2
2
|
# under the Apache License Version 2.0.
|
3
3
|
# This product includes software developed at Datadog (https://www.datadoghq.com/).
|
4
|
-
# Copyright
|
4
|
+
# Copyright 2018 Datadog, Inc.
|
5
5
|
|
6
6
|
require "bundler/gem_tasks"
|
@@ -1,7 +1,7 @@
|
|
1
1
|
# Unless explicitly stated otherwise all files in this repository are licensed
|
2
2
|
# under the Apache License Version 2.0.
|
3
3
|
# This product includes software developed at Datadog (https://www.datadoghq.com/).
|
4
|
-
# Copyright
|
4
|
+
# Copyright 2018 Datadog, Inc.
|
5
5
|
|
6
6
|
# coding: utf-8
|
7
7
|
lib = File.expand_path('../lib', __FILE__)
|
@@ -9,7 +9,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
9
9
|
|
10
10
|
Gem::Specification.new do |spec|
|
11
11
|
spec.name = "fluent-plugin-datadog"
|
12
|
-
spec.version = "0.10.
|
12
|
+
spec.version = "0.10.4"
|
13
13
|
spec.authors = ["Datadog Solutions Team"]
|
14
14
|
spec.email = ["support@datadoghq.com"]
|
15
15
|
spec.summary = "Datadog output plugin for Fluent event collector"
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fluent-plugin-datadog
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.10.
|
4
|
+
version: 0.10.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Datadog Solutions Team
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-
|
11
|
+
date: 2018-06-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|