Skip to content

Commit

Permalink
Set dd_sourcecategory, dd_source and dd_tags as optional parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
ajacquemot committed May 28, 2018
1 parent 29cc4fe commit 6ac475c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion fluent-plugin-datadog.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)

Gem::Specification.new do |spec|
spec.name = "fluent-plugin-datadog"
spec.version = "0.10.1"
spec.version = "0.10.2"
spec.authors = ["Datadog Solutions Team"]
spec.email = ["support@datadoghq.com"]
spec.summary = "Datadog output plugin for Fluent event collector"
Expand Down
6 changes: 3 additions & 3 deletions lib/fluent/plugin/out_datadog.rb
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ class ConnectionFailure < StandardError; end
config_param :use_json, :bool, :default => true
config_param :include_tag_key, :bool, :default => false
config_param :tag_key, :string, :default => 'tag'
config_param :dd_sourcecategory, :string
config_param :dd_source, :string
config_param :dd_tags, :string
config_param :dd_sourcecategory, :string, :default => nil
config_param :dd_source, :string, :default => nil
config_param :dd_tags, :string, :default => nil

# Connection settings
config_param :host, :string, :default => 'intake.logs.datadoghq.com'
Expand Down

0 comments on commit 6ac475c

Please sign in to comment.