Arguments used for the Cloudera Manager level performance inspector. Network diagnostics will be run from every host in sourceCluster to every host in targetCluster.
| name | data type | description | 
|---|---|---|
| sourceCluster | string | Required name of the source cluster to run network diagnostics test. | 
| targetCluster | string | Required name of the target cluster to run network diagnostics test. | 
| pingArgs | ApiPerfInspectorPingArgs | Optional ping request arguments. If not specified, default arguments will be used for ping test. | 
| bandwidthArgs | ApiPerfInspectorBandwidthArgs | Optional bandwidth test request arguments. If not specified, default arguments will be used for bandwidth test. Applicable since version v32. | 
| policyType | PerfInspectorPolicyType | Optional type of performance diagnostics to run. If not specified, defaults to FULL policy type. Applicable since version v32. | 
Example
{
  "sourceCluster" : "...",
  "targetCluster" : "...",
  "pingArgs" : {
    "pingTimeoutSecs" : 10,
    "pingCount" : 10,
    "pingPacketSizeBytes" : 56
  },
  "bandwidthArgs" : {
    "runBandwidthDiagnostics" : false,
    "bandwidthTimeoutSecs" : 10
  },
  "policyType" : "QUICK"
}