Monitoring class

代表監視的類別。

建構函式

Monitoring(SynapseClientContext)

建立監視。

方法

getApplicationDetails(string, string, string, RequestOptionsBase)

取得一個 Spark 應用程式詳細數據,指定工作區名稱、集區名稱和 livyid。

getApplicationDetails(string, string, string, RequestOptionsBase, ServiceCallback<SparkJobListViewResponse>)
getApplicationDetails(string, string, string, ServiceCallback<SparkJobListViewResponse>)
getHistoryServerData(string, string, string, string, string, RequestOptionsBase)

取得指定工作區、集區、livyid、appid 和 attemptId 的歷程記錄伺服器數據

getHistoryServerData(string, string, string, string, string, RequestOptionsBase, ServiceCallback<HistoryServerDataResponse>)
getHistoryServerData(string, string, string, string, string, ServiceCallback<HistoryServerDataResponse>)
getHistoryServerDiagnostic(string, string, string, string, string, RequestOptionsBase)

取得指定工作區、集區、livyid、appid 和 attemptId 的歷程記錄伺服器診斷數據

getHistoryServerDiagnostic(string, string, string, string, string, RequestOptionsBase, ServiceCallback<HistoryServerDiagnosticResponse>)
getHistoryServerDiagnostic(string, string, string, string, string, ServiceCallback<HistoryServerDiagnosticResponse>)
getHistoryServerGraph(string, string, string, string, string, RequestOptionsBase)

取得指定工作區、集區、livyid、appid 和 attemptId 的歷程記錄伺服器圖形數據

getHistoryServerGraph(string, string, string, string, string, RequestOptionsBase, ServiceCallback<HistoryServerGraphResponse>)
getHistoryServerGraph(string, string, string, string, string, ServiceCallback<HistoryServerGraphResponse>)
getHistoryServerProperties(string, RequestOptionsBase)

取得歷程記錄伺服器屬性。

getHistoryServerProperties(string, RequestOptionsBase, ServiceCallback<HistoryServerPropertiesResponse>)
getHistoryServerProperties(string, ServiceCallback<HistoryServerPropertiesResponse>)
getSparkJobList(string, RequestOptionsBase)

取得工作區的Spark應用程式清單。

getSparkJobList(string, RequestOptionsBase, ServiceCallback<SparkJobListViewResponse>)
getSparkJobList(string, ServiceCallback<SparkJobListViewResponse>)

建構函式詳細資料

Monitoring(SynapseClientContext)

建立監視。

new Monitoring(client: SynapseClientContext)

參數

client
SynapseClientContext

服務客戶端的參考。

方法詳細資料

getApplicationDetails(string, string, string, RequestOptionsBase)

取得一個 Spark 應用程式詳細數據,指定工作區名稱、集區名稱和 livyid。

function getApplicationDetails(workspaceName: string, poolName: string, livyId: string, options?: RequestOptionsBase): Promise<MonitoringGetApplicationDetailsResponse>

參數

workspaceName

string

要對其執行作業的工作區名稱。

poolName

string

Spark 集區名稱。

livyId

string

livy 識別碼。

options
RequestOptionsBase

選擇性參數

傳回

Promise<Models.MonitoringGetApplicationDetails回應>

getApplicationDetails(string, string, string, RequestOptionsBase, ServiceCallback<SparkJobListViewResponse>)

function getApplicationDetails(workspaceName: string, poolName: string, livyId: string, options: RequestOptionsBase, callback: ServiceCallback<SparkJobListViewResponse>)

參數

workspaceName

string

要對其執行作業的工作區名稱。

poolName

string

Spark 集區名稱。

livyId

string

livy 識別碼。

options
RequestOptionsBase

選擇性參數

getApplicationDetails(string, string, string, ServiceCallback<SparkJobListViewResponse>)

function getApplicationDetails(workspaceName: string, poolName: string, livyId: string, callback: ServiceCallback<SparkJobListViewResponse>)

參數

workspaceName

string

要對其執行作業的工作區名稱。

poolName

string

Spark 集區名稱。

livyId

string

livy 識別碼。

getHistoryServerData(string, string, string, string, string, RequestOptionsBase)

取得指定工作區、集區、livyid、appid 和 attemptId 的歷程記錄伺服器數據

function getHistoryServerData(workspaceName: string, poolName: string, livyId: string, appId: string, attemptId: string, options?: RequestOptionsBase): Promise<MonitoringGetHistoryServerDataResponse>

參數

workspaceName

string

要對其執行作業的工作區名稱。

poolName

string

Spark 集區名稱。

livyId

string

livy 識別碼。

appId

string

應用程式識別碼。

attemptId

string

嘗試標識碼。

options
RequestOptionsBase

選擇性參數

傳回

Promise<Models.MonitoringGetHistoryServerDataResponse>

getHistoryServerData(string, string, string, string, string, RequestOptionsBase, ServiceCallback<HistoryServerDataResponse>)

function getHistoryServerData(workspaceName: string, poolName: string, livyId: string, appId: string, attemptId: string, options: RequestOptionsBase, callback: ServiceCallback<HistoryServerDataResponse>)

參數

workspaceName

string

要對其執行作業的工作區名稱。

poolName

string

Spark 集區名稱。

livyId

string

livy 識別碼。

appId

string

應用程式識別碼。

attemptId

string

嘗試標識碼。

options
RequestOptionsBase

選擇性參數

getHistoryServerData(string, string, string, string, string, ServiceCallback<HistoryServerDataResponse>)

function getHistoryServerData(workspaceName: string, poolName: string, livyId: string, appId: string, attemptId: string, callback: ServiceCallback<HistoryServerDataResponse>)

參數

workspaceName

string

要對其執行作業的工作區名稱。

poolName

string

Spark 集區名稱。

livyId

string

livy 識別碼。

appId

string

應用程式識別碼。

attemptId

string

嘗試標識碼。

getHistoryServerDiagnostic(string, string, string, string, string, RequestOptionsBase)

取得指定工作區、集區、livyid、appid 和 attemptId 的歷程記錄伺服器診斷數據

function getHistoryServerDiagnostic(workspaceName: string, poolName: string, livyId: string, appId: string, attemptId: string, options?: RequestOptionsBase): Promise<MonitoringGetHistoryServerDiagnosticResponse>

參數

workspaceName

string

要對其執行作業的工作區名稱。

poolName

string

Spark 集區名稱。

livyId

string

livy 識別碼。

appId

string

應用程式識別碼。

attemptId

string

嘗試標識碼。

options
RequestOptionsBase

選擇性參數

傳回

Promise<Models.MonitoringGetHistoryServerDiagnosticResponse>

getHistoryServerDiagnostic(string, string, string, string, string, RequestOptionsBase, ServiceCallback<HistoryServerDiagnosticResponse>)

function getHistoryServerDiagnostic(workspaceName: string, poolName: string, livyId: string, appId: string, attemptId: string, options: RequestOptionsBase, callback: ServiceCallback<HistoryServerDiagnosticResponse>)

參數

workspaceName

string

要對其執行作業的工作區名稱。

poolName

string

Spark 集區名稱。

livyId

string

livy 識別碼。

appId

string

應用程式識別碼。

attemptId

string

嘗試標識碼。

options
RequestOptionsBase

選擇性參數

getHistoryServerDiagnostic(string, string, string, string, string, ServiceCallback<HistoryServerDiagnosticResponse>)

function getHistoryServerDiagnostic(workspaceName: string, poolName: string, livyId: string, appId: string, attemptId: string, callback: ServiceCallback<HistoryServerDiagnosticResponse>)

參數

workspaceName

string

要對其執行作業的工作區名稱。

poolName

string

Spark 集區名稱。

livyId

string

livy 識別碼。

appId

string

應用程式識別碼。

attemptId

string

嘗試標識碼。

getHistoryServerGraph(string, string, string, string, string, RequestOptionsBase)

取得指定工作區、集區、livyid、appid 和 attemptId 的歷程記錄伺服器圖形數據

function getHistoryServerGraph(workspaceName: string, poolName: string, livyId: string, appId: string, attemptId: string, options?: RequestOptionsBase): Promise<MonitoringGetHistoryServerGraphResponse>

參數

workspaceName

string

要對其執行作業的工作區名稱。

poolName

string

Spark 集區名稱。

livyId

string

livy 識別碼。

appId

string

應用程式識別碼。

attemptId

string

嘗試標識碼。

options
RequestOptionsBase

選擇性參數

傳回

Promise<Models.MonitoringGetHistoryServerGraph回應>

getHistoryServerGraph(string, string, string, string, string, RequestOptionsBase, ServiceCallback<HistoryServerGraphResponse>)

function getHistoryServerGraph(workspaceName: string, poolName: string, livyId: string, appId: string, attemptId: string, options: RequestOptionsBase, callback: ServiceCallback<HistoryServerGraphResponse>)

參數

workspaceName

string

要對其執行作業的工作區名稱。

poolName

string

Spark 集區名稱。

livyId

string

livy 識別碼。

appId

string

應用程式識別碼。

attemptId

string

嘗試標識碼。

options
RequestOptionsBase

選擇性參數

getHistoryServerGraph(string, string, string, string, string, ServiceCallback<HistoryServerGraphResponse>)

function getHistoryServerGraph(workspaceName: string, poolName: string, livyId: string, appId: string, attemptId: string, callback: ServiceCallback<HistoryServerGraphResponse>)

參數

workspaceName

string

要對其執行作業的工作區名稱。

poolName

string

Spark 集區名稱。

livyId

string

livy 識別碼。

appId

string

應用程式識別碼。

attemptId

string

嘗試標識碼。

getHistoryServerProperties(string, RequestOptionsBase)

取得歷程記錄伺服器屬性。

function getHistoryServerProperties(workspaceName: string, options?: RequestOptionsBase): Promise<MonitoringGetHistoryServerPropertiesResponse>

參數

workspaceName

string

要對其執行作業的工作區名稱。

options
RequestOptionsBase

選擇性參數

傳回

Promise<Models.MonitoringGetHistoryServerProperties回應>

getHistoryServerProperties(string, RequestOptionsBase, ServiceCallback<HistoryServerPropertiesResponse>)

function getHistoryServerProperties(workspaceName: string, options: RequestOptionsBase, callback: ServiceCallback<HistoryServerPropertiesResponse>)

參數

workspaceName

string

要對其執行作業的工作區名稱。

options
RequestOptionsBase

選擇性參數

getHistoryServerProperties(string, ServiceCallback<HistoryServerPropertiesResponse>)

function getHistoryServerProperties(workspaceName: string, callback: ServiceCallback<HistoryServerPropertiesResponse>)

參數

workspaceName

string

要對其執行作業的工作區名稱。

getSparkJobList(string, RequestOptionsBase)

取得工作區的Spark應用程式清單。

function getSparkJobList(workspaceName: string, options?: RequestOptionsBase): Promise<MonitoringGetSparkJobListResponse>

參數

workspaceName

string

要對其執行作業的工作區名稱。

options
RequestOptionsBase

選擇性參數

傳回

Promise<Models.MonitoringGetSparkJobListResponse>

getSparkJobList(string, RequestOptionsBase, ServiceCallback<SparkJobListViewResponse>)

function getSparkJobList(workspaceName: string, options: RequestOptionsBase, callback: ServiceCallback<SparkJobListViewResponse>)

參數

workspaceName

string

要對其執行作業的工作區名稱。

options
RequestOptionsBase

選擇性參數

getSparkJobList(string, ServiceCallback<SparkJobListViewResponse>)

function getSparkJobList(workspaceName: string, callback: ServiceCallback<SparkJobListViewResponse>)

參數

workspaceName

string

要對其執行作業的工作區名稱。