你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

CodePackageActivationContext.ReportDeployedServicePackageHealth 方法

定义

重载

ReportDeployedServicePackageHealth(HealthInformation)

报告当前部署的服务包的运行状况。

ReportDeployedServicePackageHealth(HealthInformation, HealthReportSendOptions)

报告当前部署的服务包的运行状况。

ReportDeployedServicePackageHealth(HealthInformation)

报告当前部署的服务包的运行状况。

public void ReportDeployedServicePackageHealth (System.Fabric.Health.HealthInformation healthInfo);
abstract member ReportDeployedServicePackageHealth : System.Fabric.Health.HealthInformation -> unit
override this.ReportDeployedServicePackageHealth : System.Fabric.Health.HealthInformation -> unit
Public Sub ReportDeployedServicePackageHealth (healthInfo As HealthInformation)

参数

healthInfo
HealthInformation

HealthInformation描述运行状况报告信息(如源、属性和运行状况状态)的 。

实现

例外

当空引用传递到不接受它作为有效参数的方法时返回。

注解

运行状况信息描述报表详细信息,例如源 ID、属性、运行状况状态和其他相关详细信息。 代码包激活上下文使用内部运行状况客户端将报告发送到运行状况存储。 客户端通过按配置的持续时间 (默认:30 秒) 对报表进行批处理来优化运行状况管理器的消息。 如果报表具有高优先级,则可以指定发送选项以使用 ReportDeployedServicePackageHealth(HealthInformation, HealthReportSendOptions)立即发送报表。

阅读有关 运行状况报告的详细信息。

适用于

ReportDeployedServicePackageHealth(HealthInformation, HealthReportSendOptions)

报告当前部署的服务包的运行状况。

public void ReportDeployedServicePackageHealth (System.Fabric.Health.HealthInformation healthInfo, System.Fabric.Health.HealthReportSendOptions sendOptions);
abstract member ReportDeployedServicePackageHealth : System.Fabric.Health.HealthInformation * System.Fabric.Health.HealthReportSendOptions -> unit
override this.ReportDeployedServicePackageHealth : System.Fabric.Health.HealthInformation * System.Fabric.Health.HealthReportSendOptions -> unit
Public Sub ReportDeployedServicePackageHealth (healthInfo As HealthInformation, sendOptions As HealthReportSendOptions)

参数

healthInfo
HealthInformation

HealthInformation描述运行状况报告信息(如源、属性和运行状况状态)的 。

sendOptions
HealthReportSendOptions

控制 HealthReportSendOptions 报表发送方式的 。

实现

例外

当空引用传递到不接受它作为有效参数的方法时返回。

注解

运行状况信息描述报表详细信息,例如源 ID、属性、运行状况状态和其他相关详细信息。 代码包激活上下文使用内部运行状况客户端将报告发送到运行状况存储。 客户端通过按配置的持续时间 (默认:30 秒) 对报表进行批处理来优化运行状况管理器的消息。 如果报表具有高优先级,则可以指定发送选项以立即发送它。

阅读有关 运行状况报告的详细信息。

适用于