Gets Cosmos Data Loader (CDL) V2 data upload progress metrics for a given day or hour.

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

Syntax

C#
public static DataUploadProgress GetDataUploadProgress(
	string path,
	DateTime date
)
Visual Basic
Public Shared Function GetDataUploadProgress ( _
	path As String, _
	date As DateTime _
) As DataUploadProgress
Visual C++
public:
static DataUploadProgress^ GetDataUploadProgress(
	String^ path, 
	DateTime date
)

Parameters

path
Type: String
Data upload destination path
date
Type: DateTime
Day or hour of stream set. For daily stream sets, only specify the date. For hourly stream sets, only specify the date and hour.

Return Value

Data upload progress metrics per Autopilot source cluster

Exceptions

ExceptionCondition
ArgumentNullExceptionThrown when path is null or empty
ArgumentExceptionThrown when date has a non-zero minute, second or millisecond value.
VcClientExceptions..::..EntryNotFoundExceptionThrown when either the path or path/date are not found in the database.
VcClientExceptions..::..VcClientExceptionThrown when there was an unknown error.

See Also