Skip to content

Commit 8d1f15d

Browse files
mx-psiKSerrania
andauthored
Release 3.5.0 (#649)
* Fix CI tests * Add changelog for 3.5.0 * Update metadata.json Co-authored-by: Kylian Serrania <kylian.serrania@datadoghq.com>
1 parent 8c98127 commit 8d1f15d

File tree

4 files changed

+10
-2
lines changed

4 files changed

+10
-2
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
Changes
22
=======
33

4+
# 3.5.0 / 2020-08-27
5+
6+
* [FEATURE] Update report processor to add tag function based on Puppet facts. See [#641][] (Thanks [@murdok5][])
7+
* [FEATURE] Add support for third-party integrations. See [#643][]
8+
49
# 3.4.0 / 2020-07-15
510

611
* [BUGFIX] Update MSI validation resource to prevent false change reports. See [#636][] (Thanks [@murdok5][])
@@ -767,6 +772,8 @@ Please read the [docs]() for more details.
767772
[#633]: https://github.com/DataDog/puppet-datadog-agent/issues/633
768773
[#636]: https://github.com/DataDog/puppet-datadog-agent/issues/636
769774
[#639]: https://github.com/DataDog/puppet-datadog-agent/issues/639
775+
[#641]: https://github.com/DataDog/puppet-datadog-agent/issues/641
776+
[#643]: https://github.com/DataDog/puppet-datadog-agent/issues/643
770777
[@Aramack]: https://github.com/Aramack
771778
[@BIAndrews]: https://github.com/BIAndrews
772779
[@ChannoneArif-nbcuni]: https://github.com/ChannoneArif-nbcuni

lib/puppet/reports/datadog_reports.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,6 @@ def process
146146
priority: event_priority,
147147
source_type_name: 'puppet',
148148
tags: dog_tags),
149-
host: @msg_host)
149+
host: @msg_host)
150150
end
151151
end

manifests/init.pp

+1
Original file line numberDiff line numberDiff line change
@@ -259,6 +259,7 @@
259259
Boolean $hostname_fqdn = false,
260260
$dogstatsd_port = 8125,
261261
$dogstatsd_socket = '',
262+
Array $report_fact_tags = [],
262263
String $statsd_forward_host = '',
263264
$statsd_forward_port = '',
264265
String $statsd_histogram_percentiles = '0.95',

metadata.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "datadog-datadog_agent",
3-
"version": "3.4.0",
3+
"version": "3.5.0",
44
"author": "James Turnbull <james@lovedthanlost.net>, Rob Terhaar <rob@atlanticdynamic>, Jaime Fullaondo <jaime.fullaondo@datadoghq.com>, Albert Vaca <albert.vaca@datadoghq.com>",
55
"summary": "Install the Datadog monitoring agent and report Puppet runs to Datadog",
66
"license": "Apache-2.0",

0 commit comments

Comments
 (0)