Hi
We are using harvest to get performance on cDOT8.2.3 and 8.3
Aug 23 8.2.3 upgrading to 8.2.4P4
after upgrade the same error has occurred
When you confirm the netapp-dashboard-cluster of grafana
eth port utilization is greater than 3000 percent
dlmaldonado wrote
"/opt/netapp-harvest/plugin/cdot-nic-common"
--------------------------------------------------------------------------------------------------------
my $rx_pct = sprintf ("%.2f", $h{$start}{$port}{rx_bytes_per_sec} / $link_speed * 100 );
my $tx_pct = sprintf ("%.2f", $h{$start}{$port}{tx_bytes_per_sec} / $link_speed * 100 );
my $pct = sprintf ("%.2f", $tx_pct);
$pct = sprintf ("%.2f", $rx_pct) if ($rx_pct > $tx_pct);
push @emit_items, "$start.$port.rx_pct_util $rx_pct $timestamp";
push @emit_items, "$start.$port.tx_pct_util $tx_pct $timestamp";
push @emit_items, "$start.$port.link_pct_util $pct $timestamp";
--------------------------------------------------------------------------------------------------------
How to fix this code?