We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7d0a7eb commit d87ea41Copy full SHA for d87ea41
2 files changed
manifests/integrations/mysql.pp
@@ -79,6 +79,7 @@
79
Boolean $disable_innodb_metrics = false,
80
Optional[Array] $queries = [],
81
Optional[Array] $instances = undef,
82
+ Optional[Array] $logs = [],
83
) inherits datadog_agent::params {
84
include datadog_agent
85
templates/agent-conf.d/mysql.yaml.erb
@@ -1,5 +1,9 @@
1
### MANAGED BY PUPPET
2
3
+<%
4
+require 'yaml'
5
+%>
6
+
7
init_config:
8
9
instances:
@@ -48,3 +52,4 @@ instances:
48
52
49
53
<% end -%>
50
54
55
+<%= {'logs'=>@logs}.to_yaml %>
0 commit comments