Monitoring class

Clase que representa una supervisión.

Constructores

Monitoring(SynapseClientContext)

Cree una supervisión.

Métodos

getApplicationDetails(string, string, string, RequestOptionsBase)

Obtenga los detalles de una aplicación spark según el nombre del área de trabajo, el nombre del grupo y livyid.

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

Obtener datos del servidor de historial para un área de trabajo determinada, grupo, livyid, appid e 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)

Obtener datos de diagnóstico del servidor de historial para un área de trabajo, un grupo, livyid, appid e attemptId determinado

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

Obtener datos de graph del servidor de historial para un área de trabajo, un grupo, livyid, appid e attemptId determinado

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

Obtiene las propiedades del servidor historial.

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

Obtenga la lista de aplicaciones spark para el área de trabajo.

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

Detalles del constructor

Monitoring(SynapseClientContext)

Cree una supervisión.

new Monitoring(client: SynapseClientContext)

Parámetros

client
SynapseClientContext

Referencia al cliente de servicio.

Detalles del método

getApplicationDetails(string, string, string, RequestOptionsBase)

Obtenga los detalles de una aplicación spark según el nombre del área de trabajo, el nombre del grupo y livyid.

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

Parámetros

workspaceName

string

Nombre del área de trabajo en la que se van a ejecutar las operaciones.

poolName

string

Nombre del grupo de Spark.

livyId

string

El id. de livy.

options
RequestOptionsBase

Los parámetros opcionales

Devoluciones

Modelos de promesas.MonitoringGetApplicationDetailsResponse<>

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

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

Parámetros

workspaceName

string

Nombre del área de trabajo en la que se van a ejecutar las operaciones.

poolName

string

Nombre del grupo de Spark.

livyId

string

El id. de livy.

options
RequestOptionsBase

Los parámetros opcionales

callback

ServiceCallback<SparkJobListViewResponse>

Devolución de llamada

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

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

Parámetros

workspaceName

string

Nombre del área de trabajo en la que se van a ejecutar las operaciones.

poolName

string

Nombre del grupo de Spark.

livyId

string

El id. de livy.

callback

ServiceCallback<SparkJobListViewResponse>

Devolución de llamada

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

Obtener datos del servidor de historial para un área de trabajo determinada, grupo, livyid, appid e attemptId

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

Parámetros

workspaceName

string

Nombre del área de trabajo en la que se van a ejecutar las operaciones.

poolName

string

Nombre del grupo de Spark.

livyId

string

El id. de livy.

appId

string

Identificador de la aplicación.

attemptId

string

Identificador del intento.

options
RequestOptionsBase

Los parámetros opcionales

Devoluciones

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>)

Parámetros

workspaceName

string

Nombre del área de trabajo en la que se van a ejecutar las operaciones.

poolName

string

Nombre del grupo de Spark.

livyId

string

El id. de livy.

appId

string

Identificador de la aplicación.

attemptId

string

Identificador del intento.

options
RequestOptionsBase

Los parámetros opcionales

callback

ServiceCallback<HistoryServerDataResponse>

Devolución de llamada

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

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

Parámetros

workspaceName

string

Nombre del área de trabajo en la que se van a ejecutar las operaciones.

poolName

string

Nombre del grupo de Spark.

livyId

string

El id. de livy.

appId

string

Identificador de la aplicación.

attemptId

string

Identificador del intento.

callback

ServiceCallback<HistoryServerDataResponse>

Devolución de llamada

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

Obtener datos de diagnóstico del servidor de historial para un área de trabajo, un grupo, livyid, appid e attemptId determinado

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

Parámetros

workspaceName

string

Nombre del área de trabajo en la que se van a ejecutar las operaciones.

poolName

string

Nombre del grupo de Spark.

livyId

string

El id. de livy.

appId

string

Identificador de la aplicación.

attemptId

string

Identificador del intento.

options
RequestOptionsBase

Los parámetros opcionales

Devoluciones

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>)

Parámetros

workspaceName

string

Nombre del área de trabajo en la que se van a ejecutar las operaciones.

poolName

string

Nombre del grupo de Spark.

livyId

string

El id. de livy.

appId

string

Identificador de la aplicación.

attemptId

string

Identificador del intento.

options
RequestOptionsBase

Los parámetros opcionales

callback

ServiceCallback<HistoryServerDiagnosticResponse>

Devolución de llamada

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

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

Parámetros

workspaceName

string

Nombre del área de trabajo en la que se van a ejecutar las operaciones.

poolName

string

Nombre del grupo de Spark.

livyId

string

El id. de livy.

appId

string

Identificador de la aplicación.

attemptId

string

Identificador del intento.

callback

ServiceCallback<HistoryServerDiagnosticResponse>

Devolución de llamada

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

Obtener datos de graph del servidor de historial para un área de trabajo, un grupo, livyid, appid e attemptId determinado

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

Parámetros

workspaceName

string

Nombre del área de trabajo en la que se van a ejecutar las operaciones.

poolName

string

Nombre del grupo de Spark.

livyId

string

El id. de livy.

appId

string

Identificador de la aplicación.

attemptId

string

Identificador del intento.

options
RequestOptionsBase

Los parámetros opcionales

Devoluciones

Promise<Models.MonitoringGetHistoryServerGraphResponse>

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>)

Parámetros

workspaceName

string

Nombre del área de trabajo en la que se van a ejecutar las operaciones.

poolName

string

Nombre del grupo de Spark.

livyId

string

El id. de livy.

appId

string

Identificador de la aplicación.

attemptId

string

Identificador del intento.

options
RequestOptionsBase

Los parámetros opcionales

callback

ServiceCallback<HistoryServerGraphResponse>

Devolución de llamada

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

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

Parámetros

workspaceName

string

Nombre del área de trabajo en la que se van a ejecutar las operaciones.

poolName

string

Nombre del grupo de Spark.

livyId

string

El id. de livy.

appId

string

Identificador de la aplicación.

attemptId

string

Identificador del intento.

callback

ServiceCallback<HistoryServerGraphResponse>

Devolución de llamada

getHistoryServerProperties(string, RequestOptionsBase)

Obtiene las propiedades del servidor historial.

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

Parámetros

workspaceName

string

Nombre del área de trabajo en la que se van a ejecutar las operaciones.

options
RequestOptionsBase

Los parámetros opcionales

Devoluciones

Modelos de promesas.MonitoringGetHistoryServerPropertiesResponse<>

getHistoryServerProperties(string, RequestOptionsBase, ServiceCallback<HistoryServerPropertiesResponse>)

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

Parámetros

workspaceName

string

Nombre del área de trabajo en la que se van a ejecutar las operaciones.

options
RequestOptionsBase

Los parámetros opcionales

callback

ServiceCallback<HistoryServerPropertiesResponse>

Devolución de llamada

getHistoryServerProperties(string, ServiceCallback<HistoryServerPropertiesResponse>)

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

Parámetros

workspaceName

string

Nombre del área de trabajo en la que se van a ejecutar las operaciones.

callback

ServiceCallback<HistoryServerPropertiesResponse>

Devolución de llamada

getSparkJobList(string, RequestOptionsBase)

Obtenga la lista de aplicaciones spark para el área de trabajo.

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

Parámetros

workspaceName

string

Nombre del área de trabajo en la que se van a ejecutar las operaciones.

options
RequestOptionsBase

Los parámetros opcionales

Devoluciones

Modelos de promesas.MonitoringGetSparkJobListResponse<>

getSparkJobList(string, RequestOptionsBase, ServiceCallback<SparkJobListViewResponse>)

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

Parámetros

workspaceName

string

Nombre del área de trabajo en la que se van a ejecutar las operaciones.

options
RequestOptionsBase

Los parámetros opcionales

callback

ServiceCallback<SparkJobListViewResponse>

Devolución de llamada

getSparkJobList(string, ServiceCallback<SparkJobListViewResponse>)

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

Parámetros

workspaceName

string

Nombre del área de trabajo en la que se van a ejecutar las operaciones.

callback

ServiceCallback<SparkJobListViewResponse>

Devolución de llamada