|
32 | 32 | # excluded_disk_re => '/dev/sd[e-z]*' |
33 | 33 | # } |
34 | 34 | class datadog_agent::integrations::disk ( |
35 | | - String $use_mount = 'no', |
36 | | - $excluded_filesystems = undef, |
37 | | - $excluded_disks = undef, |
38 | | - $excluded_disk_re = undef, |
39 | | - $excluded_mountpoint_re = undef, |
40 | | - $all_partitions = undef, |
41 | | - $tag_by_filesystem = undef |
| 35 | + String $use_mount = 'no', |
| 36 | + $all_partitions = undef, |
| 37 | + $tag_by_filesystem = undef, |
| 38 | + Optional[Array[String]] $filesystem_blacklist = undef, |
| 39 | + Optional[Array[String]] $device_blacklist = undef, |
| 40 | + Optional[Array[String]] $mountpoint_blacklist = undef, |
| 41 | + Optional[Array[String]] $filesystem_whitelist = undef, |
| 42 | + Optional[Array[String]] $device_whitelist = undef, |
| 43 | + Optional[Array[String]] $mountpoint_whitelist = undef, |
| 44 | + Optional[Variant[String, Array[String]]] $excluded_filesystems = undef, # deprecated in agent versions >6.9 |
| 45 | + Optional[Variant[String, Array[String]]] $excluded_disks = undef, # deprecated in agent versions >6.9 |
| 46 | + Optional[String] $excluded_disk_re = undef, # deprecated in agent versions >6.9 |
| 47 | + Optional[String] $excluded_mountpoint_re = undef, # deprecated in agent versions >6.9 |
42 | 48 | ) inherits datadog_agent::params { |
43 | 49 | include datadog_agent |
44 | 50 |
|
|
0 commit comments