This function returns the JobStatistics object that contains statistical information about each job stage. The object includes information about the number of vertices failed, succeeded, data read, etc.

Namespace: VcClient
Assembly: VcClient (in VcClient.dll) Version: 1.0.0.0 (1.8.400.4142)

Syntax

C#
public static JobStatistics GetJobStatistics(
	string jobId,
	string vcName
)
Visual Basic
Public Shared Function GetJobStatistics ( _
	jobId As String, _
	vcName As String _
) As JobStatistics
Visual C++
public:
static JobStatistics^ GetJobStatistics(
	String^ jobId, 
	String^ vcName
)

Parameters

jobId
Type: String
ID of the job for which the job statistics is required
vcName
Type: String
The VC of the job for which the job statistics is required

Return Value

A JobStatistics object

See Also