-
Notifications
You must be signed in to change notification settings - Fork 261
/
init.pp
873 lines (818 loc) · 32 KB
/
init.pp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
# Class: datadog_agent
#
# This class contains the agent installation mechanism for the Datadog module
#
# Parameters:
# $dd_url:
# The host of the Datadog intake server to send agent data to.
# Defaults to https://app.datadoghq.com.
# $datadog_site:
# The site of the Datadog intake to send Agent data to. Defaults to 'datadoghq.com',
# can be set to 'datadoghq.eu' to send data to the EU site or 'us3.datadoghq.com'.
# This option is only available with agent version >= 6.6.0.
# $host:
# Force the hostname to whatever you want. (default: auto-detected)
# $api_key:
# Your DataDog API Key. Please replace with your key value.
# $agent_flavor:
# Linux-only. The Agent flavor to install, eg: "datadog-agent" or "datadog-iot-agent".
# $collect_ec2_tags
# Collect AWS EC2 custom tags as agent tags.
# Boolean. Default: false
# $collect_gce_tags
# Collect Google Cloud Engine metadata as agent tags.
# Boolean. Default: false
# $collect_instance_metadata
# The Agent will try to collect instance metadata for EC2 and GCE instances.
# Boolean. Default: true
# $tags
# Optional array of tags.
# $hiera_tags
# Boolean to grab tags from hiera to allow merging
# $facts_to_tags
# Optional array of facts' names that you can use to define tags following the scheme: "fact_name:fact_value".
# See also trusted_facts_to_tags.
# Note: this is not for Puppet Report Tags. See report_fact_tags
# $trusted_facts_to_tags
# Optional array of trusted facts' names that you can use to define tags following
# the scheme: "fact_name:fact_value".
# Note: this is not for Puppet Report Tags. See report_trusted_fact_tags
# $puppet_run_reports
# Will send results from your puppet agent runs back to the datadog service.
# $reports_url
# The URL to use when sending puppet run reports. Default: https://api.${datadog_site}
# $manage_dogapi_gem
# When reports are enabled, ensure the dogapi gem (required) is installed.
# $puppetmaster_user
# Will chown the api key used by the report processor to this user.
# Defaults to the user the puppetmaster is configured to run as.
# $non_local_traffic
# Enable you to use the agent as a proxy. Defaults to false.
# See https://github.com/DataDog/dd-agent/wiki/Proxy-Configuration
# $dogstreams
# Optional array of logs to parse and custom parsers to use.
# See https://github.com/DataDog/dd-agent/blob/ed5e698/datadog.conf.example#L149-L178
# $log_level
# Set value of 'log_level' variable. Default is 'info' as in dd-agent.
# Valid values here are: critical, debug, error, fatal, info, warn and warning.
# $hostname_extraction_regex
# Completely optional.
# Instead of reporting the puppet nodename, use this regex to extract the named
# 'hostname' captured group to report the run in Datadog.
# ex.: '^(?<hostname>.*\.datadoghq\.com)(\.i-\w{8}\..*)?$'
# $hostname_fqdn
# Make the agent use "hostname -f" on unix-based systems as a last resort
# way of determining the hostname instead of Golang "os.Hostname()"
# This will be enabled by default in version 6.6
# More information at https://dtdg.co/flag-hostname-fqdn
# Optional: Valid values here are: true or false.
# $log_to_syslog
# Set value of 'log_to_syslog' variable. Default is true -> yes as in dd-agent.
# Valid values here are: true or false.
# $report_fact_tags
# Sets tags for report events sent to Datadog from specified facts
# $report_trusted_fact_tags
# Sets tags for report events sent to Datadog from specified trusted facts
# $statsd_forward_host
# Set the value of the statsd_forward_host varable. Used to forward all
# statsd metrics to another host.
# $manage_repo
# Deprecated. Only works for RPM. Install datadog-agent manually and then set
# manage_install=false to achieve the same behaviour as setting this to false.
# $manage_install
# Boolean to indicate whether this module should attempt to install the
# Agent, or assume it will be installed by other means. Default true.
# $graphite_listen_port
# Set graphite listener port
# $extra_template
# Optional, append this extra template file at the end of
# the default datadog.conf template
# $skip_apt_key_trusting
# Skip trusting the apt key. Default is false. Useful if you have a
# separate way of adding keys.
# $skip_ssl_validation
# Skip SSL validation.
# $use_curl_http_client
# Uses the curl HTTP client for the forwarder
# $recent_point_threshold
# Sets the threshold for accepting points.
# String. Default: empty (30 second intervals)
# $listen_port
# Change the port that the agent listens on
# String. Default: empty (port 17123 in dd-agent)
# $additional_checksd
# Additional directory to look for datadog checks in
# String. Default: undef
# $bind_host
# The loopback address the forwarder and Dogstatsd will bind.
# String. Default: empty
# $use_pup
# Enables the local pup dashboard
# Boolean. Default: false
# $pup_port
# Specifies the port to be used by pup. Must have use_pup set
# String. Default: empty
# $pup_interface
# Specifies which interface pup will use. Must have use_pup set
# String. Default: empty
# $pup_url
# Specifies the URL used to access pup. Must have use_pup set
# String. Default: empty
# $use_dogstatsd
# Enables the dogstatsd server
# Boolean. Default: true
# $dogstatsd_socket
# Specifies the socket file to be used by dogstatsd. Must have use_dogstatsd set
# String. Default: empty
# $dogstatsd_port
# Specifies the port to be used by dogstatsd. Must have use_dogstatsd set
# String. Default: 8125
# $dogstatsd_target
# Change the target to be used by dogstatsd. Must have use_dogstatsd set
# set
# String. Default: empty
# $dogstatsd_interval
# Change the dogstatsd flush period. Must have use_dogstatsd set
# String. Default: empty ( 10 second interval)
# $dogstatsd_normalize
# Enables 1 second nomralization. Must have use_dogstatsd set
# Boolean. Default: true
# $statsd_forward_host
# Enables forwarding of statsd packetsto host. Must have use_dogstatsd set
# String. Default: empty
# $statsd_forward_port
# Specifies port for $statsd_forward_host. Must have use_dogstatsd set String.
# Used to forward all statsd metrics to another host.
# Default: empty
# $device_blacklist_re
# Specifies pattern for device blacklisting.
# String. Default: empty
# $ganglia_host
# Specifies host where gmetad is running
# String. Default: empty
# $ganglia_port
# Specifies port for $ganglia_host
# String. Default: empty
# $dogstreams
# Specifies port for list of logstreams/modules to be used.
# String. Default: empty
# $custom_emitters
# Specifies a comma seperated list of non standard emitters to be used
# String. Default: empty
# $agent_log_file
# Specifies the log file location (Agent 6 and 7 only).
# String. Default: empty
# $collector_log_file
# Specifies the log file location for the collector system
# String. Default: empty
# $forwarder_log_file
# Specifies the log file location for the forwarder system
# String. Default: empty
# $dogstatsd
# Specifies the log file location for the dogstatsd system
# String. Default: empty
# $pup_log_file
# Specifies the log file location for the pup system
# String. Default: empty
# $apm_enabled
# Boolean to enable or disable the trace agent
# Boolean. Default: false
# $apm_env
# String defining the environment for the APM traces
# String. Default: non
# $apm_non_local_traffic
# Accept non local apm traffic. Defaults to false.
# Boolean. Default: false
# $apm_analyzed_spans
# Hash defining the APM spans to analyze and their rates.
# Optional Hash. Default: undef.
# $apm_obfuscation
# Hash defining obfuscation rules for sensitive data. (Agent 6 and 7 only).
# Optional Hash. Default: undef
# $apm_filter_tags
# Hash defining filter rules for traces. (Agent 6 and 7 only).
# Optional Hash. Default: undef
# $apm_filter_tags_regex
# Hash defining regex filter rules for traces. (Agent 6 and 7 only).
# Optional Hash. Default: undef
# $process_enabled
# String to enable the process/container agent
# Boolean. Default: false
# $scrub_args
# Boolean to enable or disable the process cmdline scrubbing by the process-agent
# Boolean. Default: true
# $custom_sensitive_words
# Array to add more words to be used on the process cdmline scrubbing by the process-agent
# Array. Default: []
# $logs_enabled
# Boolean to enable or disable the logs agent
# Boolean. Default: false
# $logs_open_files_limit
# Integer set the max number of open files for the logs agent
# Integer. Default: 100 if undef
# $container_collect_all
# Boolean to enable logs collection for all containers
# Boolean. Default: false
# $cmd_port
# The port on which the IPC api listens
# Integer. Default: 5001
# $agent_repo_uri
# Where to download the agent from. When undef, it uses the following defaults:
# APT: https://apt.datadoghq.com/
# RPM: https://yum.datadoghq.com/stable/7/x86_64/ (with matching agent version and architecture)
# Windows: https://https://s3.amazonaws.com/ddagent-windows-stable/
# String. Default: undef
# $rpm_repo_gpgcheck
# Whether or not to perform repodata signature check for RPM repositories.
# Applies to Red Hat and SUSE platforms. When set to `undef`, this is activated
# for all Agent versions other than 5 when `agent_repo_uri` is also undefinded.
# The `undef` value also translates to `false` on RHEL/CentOS 8.1 because
# of a bug in libdnf: https://bugzilla.redhat.com/show_bug.cgi?id=1792506
# Boolean. Default: undef
# $apt_release
# The distribution channel to be used for the APT repo. Eg: 'stable' or 'beta'.
# String. Default: stable
# $windows_npm_install
# (Windows only) Boolean to install the Windows NPM driver.
# To use NPM features it is necessary to enable install through this flag, as well as
# configuring NPM through the datadog::system_probe class.
# Boolean. Default: false
# $windows_ddagentuser_name
# (Windows only) The name of Windows user to use, in the format `<domain>\<user>`.
#
# $windows_ddagentuser_password
# (Windows only) The password used to register the service`.
#
# Sample Usage:
#
# include datadog_agent
#
# OR
#
# class { 'datadog_agent':
# api_key => 'your key',
# tags => ['env:production', 'linux'],
# puppet_run_reports => false,
# puppetmaster_user => puppet,
# }
#
#
class datadog_agent(
String $dd_url = '',
String $datadog_site = $datadog_agent::params::datadog_site,
String $host = '',
String $api_key = 'your_API_key',
Enum['datadog-agent', 'Datadog Agent', 'datadog-iot-agent'] $agent_flavor = $datadog_agent::params::package_name,
Boolean $collect_ec2_tags = false,
Boolean $collect_gce_tags = false,
Boolean $collect_instance_metadata = true,
Array $tags = [],
$integrations = {},
$hiera_integrations = false,
Boolean $hiera_tags = false,
Array $facts_to_tags = [],
Array $trusted_facts_to_tags = [],
Boolean $puppet_run_reports = false,
String $reports_url = "https://api.${datadog_site}",
String $puppetmaster_user = $settings::user,
String $puppet_gem_provider = $datadog_agent::params::gem_provider,
Boolean $non_local_traffic = false,
Array $dogstreams = [],
String $log_level = 'info',
Boolean $log_to_syslog = true,
$service_ensure = 'running',
$service_enable = true,
Boolean $manage_repo = true,
Boolean $manage_dogapi_gem = true,
Boolean $manage_install = true,
$hostname_extraction_regex = undef,
Boolean $hostname_fqdn = false,
Variant[Stdlib::Port, Pattern[/^\d*$/]] $dogstatsd_port = 8125,
$dogstatsd_socket = '',
Array $report_fact_tags = [],
Array $report_trusted_fact_tags = [],
String $statsd_forward_host = '',
Variant[Stdlib::Port, Pattern[/^\d*$/]] $statsd_forward_port = '',
String $statsd_histogram_percentiles = '0.95',
Optional[String] $proxy_host = undef,
Optional[Variant[Integer, Pattern[/^\d*$/]]] $proxy_port = undef,
Optional[String] $proxy_user = undef,
Optional[String] $proxy_password = undef,
Variant[Stdlib::Port, Pattern[/^\d*$/]] $graphite_listen_port = '',
String $extra_template = '',
String $ganglia_host = '',
$ganglia_port = 8651,
Boolean $skip_ssl_validation = false,
Boolean $skip_apt_key_trusting = false,
Boolean $use_curl_http_client = false,
String $recent_point_threshold = '',
Variant[Stdlib::Port, Pattern[/^\d*$/]] $listen_port = '',
Optional[String] $additional_checksd = undef,
String $bind_host = '',
Boolean $use_pup = false,
Variant[Stdlib::Port, Pattern[/^\d*$/]] $pup_port = '',
String $pup_interface = '',
String $pup_url = '',
Boolean $use_dogstatsd = true,
String $dogstatsd_target = '',
String $dogstatsd_interval = '',
Boolean $dogstatsd_normalize = true,
String $device_blacklist_re = '',
String $custom_emitters = '',
String $agent_log_file = $datadog_agent::params::agent_log_file,
String $collector_log_file = '',
String $forwarder_log_file = '',
String $dogstatsd_log_file = '',
String $pup_log_file = '',
String $syslog_host = '',
Variant[Stdlib::Port, Pattern[/^\d*$/]] $syslog_port = '',
String $service_discovery_backend = '',
String $sd_config_backend = '',
String $sd_backend_host = '',
Integer $sd_backend_port = 0,
String $sd_template_dir = '',
Boolean $sd_jmx_enable = false,
String $consul_token = '',
Integer $cmd_port = 5001,
Optional[Integer] $agent_major_version = undef,
Optional[String] $conf_dir = undef,
Boolean $conf_dir_purge = $datadog_agent::params::conf_dir_purge,
$dd_group = $datadog_agent::params::dd_group,
$dd_groups = $datadog_agent::params::dd_groups,
Boolean $apm_enabled = $datadog_agent::params::apm_default_enabled,
String $apm_env = 'none',
Boolean $apm_non_local_traffic = false,
Optional[Hash[String, Float[0, 1]]] $apm_analyzed_spans = undef,
Optional[Hash[String, Data]] $apm_obfuscation = undef,
Optional[Hash[String, Data]] $apm_filter_tags = undef,
Optional[Hash[String, Data]] $apm_filter_tags_regex = undef,
Boolean $process_enabled = $datadog_agent::params::process_default_enabled,
Boolean $scrub_args = $datadog_agent::params::process_default_scrub_args,
Array $custom_sensitive_words = $datadog_agent::params::process_default_custom_words,
Boolean $logs_enabled = $datadog_agent::params::logs_enabled,
$logs_open_files_limit = $datadog_agent::params::logs_open_files_limit,
Boolean $container_collect_all = $datadog_agent::params::container_collect_all,
Hash[String[1], Data] $agent_extra_options = {},
Optional[String] $agent_repo_uri = undef,
Optional[Boolean] $rpm_repo_gpgcheck = undef,
# TODO: $use_apt_backup_keyserver, $apt_backup_keyserver and $apt_keyserver can be
# removed in the next major version; they're kept now for backwards compatibility
Optional[Boolean] $use_apt_backup_keyserver = undef,
Optional[String] $apt_backup_keyserver = undef,
Optional[String] $apt_keyserver = undef,
String $apt_release = $datadog_agent::params::apt_default_release,
String $win_msi_location = 'C:/Windows/temp', # Temporary directory where the msi file is downloaded, must exist
Enum['present', 'absent'] $win_ensure = 'present', #TODO: Implement uninstall also for apt and rpm install methods
Optional[String] $service_provider = undef,
Optional[String] $agent_version = $datadog_agent::params::agent_version,
Boolean $windows_npm_install = false,
Optional[String] $windows_ddagentuser_name = undef,
Optional[String] $windows_ddagentuser_password = undef,
) inherits datadog_agent::params {
#In this regex, version '1:6.15.0~rc.1-1' would match as $1='1:', $2='6', $3='15', $4='0', $5='~rc.1', $6='1'
if $agent_version != 'latest' and $agent_version =~ /([0-9]+:)?([0-9]+)\.([0-9]+)\.([0-9]+)((?:~|-)[^0-9\s-]+[^-\s]*)?(?:-([0-9]+))?/ {
$_agent_major_version = 0 + $2 # Cast to integer
if $agent_major_version != undef and $agent_major_version != $_agent_major_version {
fail('Provided and deduced agent_major_version don\'t match')
}
$_agent_minor_version = 0 + $3
} elsif $agent_major_version != undef {
$_agent_major_version = $agent_major_version
} else {
$_agent_major_version = $datadog_agent::params::default_agent_major_version
}
case $facts['os']['name'] {
'RedHat', 'CentOS', 'OracleLinux': {
if $facts['os']['release']['full'] =~ /^6(.[0-9])?/ and $agent_version == 'latest' {
notice("datadog-agent ${_agent_major_version}.51 is the last supported version on CentOS 6. Installing ${_agent_major_version}.51 now")
$agent_full_version='7.51.1'
} elsif $facts['os']['release']['full'] =~ /^6(.[0-9])?/ and $_agent_minor_version != undef and $_agent_minor_version > 51 {
fail("datadog-agent ${_agent_major_version}.51 is the last supported version on CentOS 6.")
} else {
$agent_full_version = $agent_version
}
}
default: { $agent_full_version = $agent_version }
}
if $_agent_major_version != 5 and $_agent_major_version != 6 and $_agent_major_version != 7 {
fail("agent_major_version must be either 5, 6 or 7, not ${_agent_major_version}")
}
if ($facts['os']['name'] == 'Windows' and $windows_ddagentuser_name != undef) {
$dd_user = $windows_ddagentuser_name
} else {
$dd_user = $datadog_agent::params::dd_user
}
if $conf_dir == undef {
if $_agent_major_version == 5 {
$_conf_dir = $datadog_agent::params::legacy_conf_dir
} else {
$_conf_dir = $datadog_agent::params::conf_dir
}
} else {
$_conf_dir = $conf_dir
}
if $hiera_tags {
$local_tags = lookup({ 'name' => 'datadog_agent::tags', 'merge' => 'unique', 'default_value' => []})
} else {
$local_tags = $tags
}
if $hiera_integrations {
$local_integrations = lookup({ 'name' => 'datadog_agent::integrations', 'default_value' => {}})
} else {
$local_integrations = $integrations
}
include datadog_agent::params
case upcase($log_level) {
'CRITICAL': { $_loglevel = 'CRITICAL' }
'DEBUG': { $_loglevel = 'DEBUG' }
'ERROR': { $_loglevel = 'ERROR' }
'FATAL': { $_loglevel = 'FATAL' }
'INFO': { $_loglevel = 'INFO' }
'WARN': { $_loglevel = 'WARN' }
'WARNING': { $_loglevel = 'WARNING' }
default: { $_loglevel = 'INFO' }
}
# Install agent
if $manage_install {
case $facts['os']['name'] {
'Ubuntu','Debian','Raspbian' : {
if $use_apt_backup_keyserver != undef or $apt_backup_keyserver != undef or $apt_keyserver != undef {
notify { 'apt keyserver arguments deprecation':
message => '$use_apt_backup_keyserver, $apt_backup_keyserver and $apt_keyserver are deprecated since version 3.13.0',
loglevel => 'warning',
}
}
class { 'datadog_agent::ubuntu':
agent_major_version => $_agent_major_version,
agent_version => $agent_full_version,
agent_flavor => $agent_flavor,
agent_repo_uri => $agent_repo_uri,
release => $apt_release,
skip_apt_key_trusting => $skip_apt_key_trusting,
}
}
'RedHat','CentOS','Fedora','Amazon','Scientific','OracleLinux','AlmaLinux','Rocky' : {
class { 'datadog_agent::redhat':
agent_major_version => $_agent_major_version,
agent_flavor => $agent_flavor,
agent_repo_uri => $agent_repo_uri,
manage_repo => $manage_repo,
agent_version => $agent_full_version,
rpm_repo_gpgcheck => $rpm_repo_gpgcheck,
}
}
'Windows' : {
class { 'datadog_agent::windows' :
agent_major_version => $_agent_major_version,
agent_repo_uri => $agent_repo_uri,
agent_version => $agent_full_version,
msi_location => $win_msi_location,
api_key => $api_key,
hostname => $host,
tags => $local_tags,
ensure => $win_ensure,
npm_install => $windows_npm_install,
ddagentuser_name => $windows_ddagentuser_name,
ddagentuser_password => $windows_ddagentuser_password,
}
if ($win_ensure == absent) {
return() #Config files will remain unchanged on uninstall
}
}
'OpenSuSE', 'SLES' : {
class { 'datadog_agent::suse' :
agent_major_version => $_agent_major_version,
agent_flavor => $agent_flavor,
agent_repo_uri => $agent_repo_uri,
agent_version => $agent_full_version,
rpm_repo_gpgcheck => $rpm_repo_gpgcheck,
}
}
default: { fail("Class[datadog_agent]: Unsupported operatingsystem: ${facts['os']['name']}") }
}
} else {
if ! defined(Package[$agent_flavor]) {
package { $agent_flavor:
ensure => present,
source => 'Agent installation not managed by Puppet, make sure the Agent is installed beforehand.',
}
}
}
# Declare service
class { 'datadog_agent::service' :
agent_flavor => $agent_flavor,
service_ensure => $service_ensure,
service_enable => $service_enable,
service_provider => $service_provider,
}
if ($facts['os']['name'] != 'Windows') {
if ($dd_groups) {
user { $dd_user:
groups => $dd_groups,
notify => Service[$datadog_agent::params::service_name],
}
}
# required by reports even in agent5 scenario
file { '/etc/datadog-agent':
ensure => directory,
owner => $dd_user,
group => $dd_group,
mode => $datadog_agent::params::permissions_directory,
require => Package[$agent_flavor],
}
}
if $_agent_major_version == 5 {
if ($facts['os']['name'] == 'Windows') {
fail('Installation of agent 5 with puppet is not supported on Windows')
}
if !empty($agent_extra_options) {
notify { 'Setting agent_extra_options has no effect with Agent 5': }
}
file { '/etc/dd-agent':
ensure => directory,
owner => $dd_user,
group => $dd_group,
mode => $datadog_agent::params::permissions_directory,
require => Package[$agent_flavor],
}
file { $_conf_dir:
ensure => directory,
purge => $conf_dir_purge,
recurse => true,
force => $conf_dir_purge,
owner => $dd_user,
group => $dd_group,
notify => Service[$datadog_agent::params::service_name]
}
concat {'/etc/dd-agent/datadog.conf':
owner => $dd_user,
group => $dd_group,
mode => '0640',
notify => Service[$datadog_agent::params::service_name],
require => File['/etc/dd-agent'],
}
if $dd_url.empty {
$_dd_url = 'https://app.datadoghq.com'
} else {
$_dd_url = $dd_url
}
concat::fragment{ 'datadog header':
target => '/etc/dd-agent/datadog.conf',
content => template('datadog_agent/datadog_header.conf.erb'),
order => '01',
}
concat::fragment{ 'datadog tags':
target => '/etc/dd-agent/datadog.conf',
content => 'tags: ',
order => '02',
}
datadog_agent::tag5{$local_tags: }
datadog_agent::tag5{$facts_to_tags:
lookup_fact => true,
}
concat::fragment{ 'datadog footer':
target => '/etc/dd-agent/datadog.conf',
content => template('datadog_agent/datadog_footer.conf.erb'),
order => '05',
}
unless $extra_template.empty {
concat::fragment{ 'datadog extra_template footer':
target => '/etc/dd-agent/datadog.conf',
content => template($extra_template),
order => '06',
}
}
if ($apm_enabled == true) and (($apm_env != 'none') or $apm_analyzed_spans or $apm_obfuscation) {
concat::fragment{ 'datadog apm footer':
target => '/etc/dd-agent/datadog.conf',
content => template('datadog_agent/datadog_apm_footer.conf.erb'),
order => '07',
}
}
if ($process_enabled == true) {
concat::fragment{ 'datadog process agent footer':
target => '/etc/dd-agent/datadog.conf',
content => template('datadog_agent/datadog_process_footer.conf.erb'),
order => '08',
}
}
file {'/etc/dd-agent/install_info':
owner => $dd_user,
group => $dd_group,
mode => '0640',
content => template('datadog_agent/install_info.erb'),
require => File['/etc/dd-agent'],
}
} else { #Agent 6/7
# notify of broken params on agent6/7
if !empty($proxy_host) {
notify { 'Setting proxy_host is only used with Agent 5. Please use agent_extra_options to set your proxy': }
}
if !empty($proxy_port) {
notify { 'Setting proxy_port is only used with Agent 5. Please use agent_extra_options to set your proxy': }
}
if !empty($proxy_user) {
notify { 'Setting proxy_user is only used with Agent 5. Please use agent_extra_options to set your proxy': }
}
if !empty($proxy_password) {
notify { 'Setting proxy_password is only used with Agent 5. Please use agent_extra_options to set your proxy': }
}
# lint:ignore:quoted_booleans
$process_enabled_str = $process_enabled ? { true => 'true' , default => 'disabled' }
# lint:endignore
$base_extra_config = {
'apm_config' => {
'enabled' => $apm_enabled,
'env' => $apm_env,
'apm_non_local_traffic' => $apm_non_local_traffic
},
'process_config' => {
'enabled' => $process_enabled_str,
'scrub_args' => $scrub_args,
'custom_sensitive_words' => $custom_sensitive_words,
},
'logs_enabled' => $logs_enabled,
}
if $logs_open_files_limit {
$logs_base_config = {
'logs_config' => {
'container_collect_all' => $container_collect_all,
'open_files_limit' => $logs_open_files_limit
},
}
} else {
$logs_base_config = {
'logs_config' => {
'container_collect_all' => $container_collect_all,
},
}
}
if $host.empty {
$host_config = {}
} else {
$host_config = {
'hostname' => $host,
}
}
if $apm_analyzed_spans {
$apm_analyzed_span_config = {
'apm_config' => {
'analyzed_spans' => $apm_analyzed_spans
}
}
} else {
$apm_analyzed_span_config = {}
}
if $apm_obfuscation {
$apm_obfuscation_config = {
'apm_config' => {
'obfuscation' => $apm_obfuscation
}
}
} else {
$apm_obfuscation_config = {}
}
if $apm_filter_tags {
$apm_filter_tags_config = {
'apm_config' => {
'filter_tags' => $apm_filter_tags
}
}
} else {
$apm_filter_tags_config = {}
}
if $apm_filter_tags_regex {
$apm_filter_tags_regex_config = {
'apm_config' => {
'filter_tags_regex' => $apm_filter_tags_regex
}
}
} else {
$apm_filter_tags_regex_config = {}
}
if $statsd_forward_host.empty {
$statsd_forward_config = {}
} else {
if String($statsd_forward_port).empty {
$statsd_forward_config = {
'statsd_forward_host' => $statsd_forward_host,
}
} else {
$statsd_forward_config = {
'statsd_forward_host' => $statsd_forward_host,
'statsd_forward_port' => $statsd_forward_port,
}
}
}
if $additional_checksd {
$additional_checksd_config = {
'additional_checksd' => $additional_checksd,
}
} else {
$additional_checksd_config = {}
}
$extra_config = deep_merge(
$base_extra_config,
$logs_base_config,
$agent_extra_options,
$apm_analyzed_span_config,
$apm_obfuscation_config,
$apm_filter_tags_config,
$apm_filter_tags_regex_config,
$statsd_forward_config,
$host_config,
$additional_checksd_config)
file { $_conf_dir:
ensure => directory,
purge => $conf_dir_purge,
recurse => true,
force => $conf_dir_purge,
owner => $dd_user,
group => $dd_group,
notify => Service[$datadog_agent::params::service_name]
}
$_local_tags = datadog_agent::tag6($local_tags, false, undef)
$_facts_tags = datadog_agent::tag6($facts_to_tags, true, $facts)
$_trusted_facts_tags = datadog_agent::tag6($trusted_facts_to_tags, true, $trusted)
$_agent_config = {
'api_key' => $api_key,
'dd_url' => $dd_url,
'site' => $datadog_site,
'cmd_port' => $cmd_port,
'hostname_fqdn' => $hostname_fqdn,
'collect_ec2_tags' => $collect_ec2_tags,
'collect_gce_tags' => $collect_gce_tags,
'confd_path' => $_conf_dir,
'enable_metadata_collection' => $collect_instance_metadata,
'dogstatsd_port' => $dogstatsd_port,
'dogstatsd_socket' => $dogstatsd_socket,
'dogstatsd_non_local_traffic' => $non_local_traffic,
'log_file' => $agent_log_file,
'log_level' => $log_level,
'tags' => unique(flatten(union($_local_tags, $_facts_tags, $_trusted_facts_tags))),
}
$agent_config = deep_merge($_agent_config, $extra_config)
if ($facts['os']['name'] == 'Windows') {
file { 'C:/ProgramData/Datadog':
ensure => directory
}
file { 'C:/ProgramData/Datadog/datadog.yaml':
owner => $dd_user,
group => $dd_group,
mode => '0660',
content => template('datadog_agent/datadog.yaml.erb'),
show_diff => false,
notify => Service[$datadog_agent::params::service_name],
require => File['C:/ProgramData/Datadog'],
}
file { 'C:/ProgramData/Datadog/install_info':
owner => $dd_user,
group => $dd_group,
mode => '0660',
content => template('datadog_agent/install_info.erb'),
require => File['C:/ProgramData/Datadog'],
}
} else {
file { '/etc/datadog-agent/datadog.yaml':
owner => $dd_user,
group => $dd_group,
mode => '0640',
content => template('datadog_agent/datadog.yaml.erb'),
show_diff => false,
notify => Service[$datadog_agent::params::service_name],
require => File['/etc/datadog-agent'],
}
file { '/etc/datadog-agent/install_info':
owner => $dd_user,
group => $dd_group,
mode => '0640',
content => template('datadog_agent/install_info.erb'),
require => File['/etc/datadog-agent'],
}
}
}
if $puppet_run_reports {
$proxy_config = $agent_extra_options[proxy]
if $proxy_config != undef {
$proxy_http = $proxy_config[http]
$proxy_https = $proxy_config[https]
} else {
$proxy_http = undef
$proxy_https = undef
}
class { 'datadog_agent::reports':
api_key => $api_key,
datadog_site => $reports_url,
manage_dogapi_gem => $manage_dogapi_gem,
puppet_gem_provider => $puppet_gem_provider,
dogapi_version => $datadog_agent::params::dogapi_version,
puppetmaster_user => $puppetmaster_user,
hostname_extraction_regex => $hostname_extraction_regex,
proxy_http => $proxy_http,
proxy_https => $proxy_https,
report_fact_tags => $report_fact_tags,
report_trusted_fact_tags => $report_trusted_fact_tags,
}
}
create_resources('datadog_agent::integration', $local_integrations)
}