Skip to content

Commit efbe0bf

Browse files
authored
Add support for trusted fact tags in reports (#662)
Adds report_trusted_fact_tags which works like trusted_facts_to_tags for reports.
1 parent 1c096b0 commit efbe0bf

File tree

6 files changed

+26
-5
lines changed

6 files changed

+26
-5
lines changed

.rubocop.yml

+2
Original file line numberDiff line numberDiff line change
@@ -135,3 +135,5 @@ Style/NumericPredicate:
135135
Enabled: false
136136
Layout/FirstHashElementLineBreak:
137137
Enabled: true
138+
Style/EmptyLiteral:
139+
Enabled: false

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ To enable reporting of Puppet runs to your Datadog timeline, enable the report p
152152

153153
5. (Optional) Enable tagging of reports with facts:
154154

155-
You can add tags to reports that are sent to Datadog as events. These tags can be sourced from Puppet facts for the given node the report is regarding. These should be 1:1 and not involve structured facts (hashes, arrays, etc.) to ensure readability. To enable tagging, set the parameter `datadog_agent::reports::report_fact_tags` to the array value of facts—for example `["virtual","trusted.extensions.pp_role","operatingsystem"]` results in three separate tags per report event.
155+
You can add tags to reports that are sent to Datadog as events. These tags can be sourced from Puppet facts for the given node the report is regarding. These should be 1:1 and not involve structured facts (hashes, arrays, etc.) to ensure readability. To enable regular fact tagging, set the parameter `datadog_agent::reports::report_fact_tags` to the array value of facts—for example `["virtual","operatingsystem"]`. To enable trusted fact tagging, set the parameter `datadog_agent::reports::report_trusted_fact_tags` to the array value of facts—for example `["certname","extensions.pp_role","hostname"]`.
156156

157157
NOTE: Changing these settings requires a restart of pe-puppetserver (or puppetserver) to re-read the report processor. Ensure the changes are deployed prior to restarting the service(s).
158158

lib/puppet/reports/datadog_reports.rb

+8-2
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
API_KEY = config[:datadog_api_key]
1515
API_URL = config[:api_url]
1616
REPORT_FACT_TAGS = config[:report_fact_tags] || []
17+
REPORT_TRUSTED_FACT_TAGS = config[:report_trusted_fact_tags] || []
1718

1819
if ENV['DD_PROXY_HTTP'].nil?
1920
ENV['DD_PROXY_HTTP'] = config[:proxy_http]
@@ -135,9 +136,13 @@ def process
135136
end
136137

137138
facts = Puppet::Node::Facts.indirection.find(host).values
138-
dog_tags = REPORT_FACT_TAGS.map { |name| "#{name}:#{facts.dig(*name.split('.'))}" }
139+
facts_tags = REPORT_FACT_TAGS.map { |name| "#{name}:#{facts.dig(*name.split('.'))}" }
140+
trusted_facts = (Puppet.lookup(:trusted_information) { Hash.new }).to_h
141+
trusted_fact_tags = REPORT_TRUSTED_FACT_TAGS.map { |name| "#{name}:#{trusted_facts.dig(*name.split('.'))}" }
142+
dog_tags = facts_tags + trusted_fact_tags
139143

140-
Puppet.debug "Sending events for #{@msg_host} to Datadog"
144+
# Uncomment below line for debug logging of tags
145+
# Puppet.debug "Sending events for #{@msg_host} to Datadog with tags #{dog_tags.to_s}"
141146
@dog.emit_event(Dogapi::Event.new(event_data,
142147
msg_title: event_title,
143148
event_type: 'config_management.run',
@@ -147,5 +152,6 @@ def process
147152
source_type_name: 'puppet',
148153
tags: dog_tags),
149154
host: @msg_host)
155+
Puppet.info "Event sent for #{@msg_host} to Datadog"
150156
end
151157
end

manifests/init.pp

+8-2
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,13 @@
2828
# $hiera_tags
2929
# Boolean to grab tags from hiera to allow merging
3030
# $facts_to_tags
31-
# Optional array of facts' names that you can use to define tags following
32-
# the scheme: "fact_name:fact_value".
31+
# Optional array of facts' names that you can use to define tags following the scheme: "fact_name:fact_value".
32+
# See also trusted_facts_to_tags.
33+
# Note: this is not for Puppet Report Tags. See report_fact_tags
3334
# $trusted_facts_to_tags
3435
# Optional array of trusted facts' names that you can use to define tags following
3536
# the scheme: "fact_name:fact_value".
37+
# Note: this is not for Puppet Report Tags. See report_trusted_fact_tags
3638
# $puppet_run_reports
3739
# Will send results from your puppet agent runs back to the datadog service.
3840
# $manage_dogapi_gem
@@ -67,6 +69,8 @@
6769
# Set value of the 'dogstatsd_port' variable. Defaultis 8125.
6870
# $report_fact_tags
6971
# Sets tags for report events sent to Datadog from specified facts
72+
# $report_trusted_fact_tags
73+
# Sets tags for report events sent to Datadog from specified trusted facts
7074
# $statsd_forward_host
7175
# Set the value of the statsd_forward_host varable. Used to forward all
7276
# statsd metrics to another host.
@@ -264,6 +268,7 @@
264268
$dogstatsd_port = 8125,
265269
$dogstatsd_socket = '',
266270
Array $report_fact_tags = [],
271+
Array $report_trusted_fact_tags = [],
267272
String $statsd_forward_host = '',
268273
$statsd_forward_port = '',
269274
String $statsd_histogram_percentiles = '0.95',
@@ -787,6 +792,7 @@
787792
proxy_http => $proxy_http,
788793
proxy_https => $proxy_https,
789794
report_fact_tags => $report_fact_tags,
795+
report_trusted_fact_tags => $report_trusted_fact_tags,
790796
}
791797
}
792798

manifests/reports.pp

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
$proxy_http = undef,
2323
$proxy_https = undef,
2424
$report_fact_tags = [],
25+
$report_trusted_fact_tags = [],
2526
$datadog_site = 'datadoghq.com',
2627
$puppet_gem_provider = $datadog_agent::params::gem_provider,
2728
) inherits datadog_agent::params {

templates/datadog-reports.yaml.erb

+6
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,9 @@
1818
- <%= tag %>
1919
<%- end -%>
2020
<% end -%>
21+
<% if @report_trusted_fact_tags -%>
22+
:report_trusted_fact_tags:
23+
<%- @report_trusted_fact_tags.each do |tag| -%>
24+
- <%= tag %>
25+
<%- end -%>
26+
<% end -%>

0 commit comments

Comments
 (0)