We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello team
is there a way we can add CRC error for VMNIC as part of data collection ?
The text was updated successfully, but these errors were encountered:
Here is the command and powercli code that can be used to details
esxcli network nic stats get -n vmnicX
Get-Cluster -PipelineVariable cluster | Get-VMHost -PipelineVariable esx | ForEach-Object -Process { $esxcli = Get-EsxCli -VMHost $esx -V2 $esxcli.network.nic.list.Invoke() | ForEach-Object -Process { $esxcli.network.nic.stats.get.Invoke(@{nicname=$_.Name}) | Select @{N='Cluster';E={$cluster.Name}}, @{N='VMHost';E={$esxcli.VMHost.Name}}, NICName,PacketsReceived,PacketsSent,ReceiveCRCerrors } }
Sorry, something went wrong.
Hi, in case you didn't noticed we got this already https://www.sexigraf.fr/vsphere-sexipanels/#cluster-network-usage Also, we can't get anything else from the metrics: https://vdc-repo.vmware.com/vmwb-repository/dcr-public/c476b64b-c93c-4b21-9d76-be14da0148f9/04ca12ad-59b9-4e1c-8232-fd3d4276e52c/SDK/vsphere-ws/docs/ReferenceGuide/network_counters.html
No branches or pull requests
Hello team
is there a way we can add CRC error for VMNIC as part of data collection ?
The text was updated successfully, but these errors were encountered: