Skip to content

Commit 80e1d62

Browse files
committed
address PR comments
Signed-off-by: Ryan Dyer <ryan-dyer-sp@users.noreply.github.com>
1 parent edf7f5e commit 80e1d62

2 files changed

Lines changed: 2 additions & 4 deletions

File tree

manifests/integrations/network.pp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,17 +22,16 @@
2222
class datadog_agent::integrations::network(
2323
Boolean $collect_connection_state = false,
2424
Boolean $collect_connection_queues = false,
25-
Array[String] $excluded_interfaces = ['lo','lo0'],
25+
Array[String] $excluded_interfaces = [],
2626
String $excluded_interface_re = '',
2727
Boolean $combine_connection_states = true,
2828
Boolean $collect_rate_metrics = true,
2929
Boolean $collect_count_metrics = false,
30-
String $conntrack_path = '/usr/sbin/conntrack',
30+
String $conntrack_path = undef,
3131
Boolean $use_sudo_conntrack = true,
3232
Array[String] $whitelist_conntrack_metrics = [],
3333
Array[String] $blacklist_conntrack_metrics = [],
3434
Boolean $collect_aws_ena_metrics = false,
35-
Boolean $collect_ethtool_metrics = false,
3635
Array[String] $tags = [],
3736
String $service = '',
3837
Integer $min_collection_interval = 15,

templates/agent-conf.d/network.yaml.erb

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ instances:
3232
<% end ) -%>
3333
<% end -%>
3434
collect_aws_ena_metrics: <%= @collect_aws_ena_metrics %>
35-
collect_ethtool_metrics: <%= @collect_ethtool_metrics %>
3635
<% if !@tags.empty? -%>
3736
tags:
3837
<%- (@tags.each do |tag| -%>

0 commit comments

Comments
 (0)