Service Fabric 事件列表List of Service Fabric events
Service Fabric 公开一组主要的群集事件,以通知群集的状态为 Service Fabric 事件。Service Fabric exposes a primary set of cluster events to inform you of the status of your cluster as Service Fabric Events. 这些事件基于 Service Fabric 在节点上执行的操作和群集所有者/操作员所做的群集或管理决策。These are based on actions performed by Service Fabric on your nodes and your cluster or management decisions made by a cluster owner/operator. 可以通过多种方式(包括查询 EventStore)进行配置,以便访问这些事件。These events can be accessed by configuring in a number of ways including querying the EventStore. 在 Windows 计算机上,这些事件被传输到 EventLog - 因此可以在“事件查看器”中查看 Service Fabric 事件。On Windows machines, these events are fed into the EventLog - so you can see Service Fabric Events in Event Viewer.
下面是这些事件的一些特征Here are some characteristics of these events
- 每个事件被绑定到群集中的特定实体,例如应用程序、服务、节点、副本。Each event is tied to a specific entity in the cluster e.g. Application, Service, Node, Replica.
- 每个事件都包含一组常见的字段:EventInstanceId、EventName 和 Category。Each event contains a set of common fields: EventInstanceId, EventName, and Category.
- 每个事件都包含一些字段,这些字段将事件绑定回与之关联的实体。Each event contains fields that tie the event back to the entity it is associated with. 例如,ApplicationCreated 事件将具有标识创建的应用程序名称的字段。For instance, the ApplicationCreated event would have fields that identify the name of the application created.
- 事件以此方式构建,因此,可以在各种工具中使用它们来执行进一步分析。Events are structured in such a way that they can be consumed in a variety of tools to do further analysis. 此外,事件的相关详细信息被定义为单独的属性,而不是一个长字符串。Additionally, relevant details for an event are defined as separate properties as opposed to a long String.
- 事件由 Service Fabric 中的不同子系统编写,由下面的源(任务)标识。Events are written by different subsystems in Service Fabric are identified by Source(Task) below. 有关这些子系统的详细信息,请参阅 Service Fabric 体系结构和 Service Fabric 技术概览。More information is available on these subsystems in Service Fabric Architecture and Service Fabric Technical Overview.
下面是这些按实体组织的 Service Fabric 事件的列表。Here is a list of these Service Fabric events organized by entity.
群集事件Cluster events
群集升级事件Cluster upgrade events
有关群集升级的详细信息,请参阅此处。More details on cluster upgrades can be found here.
EventIdEventId | 名称Name | CategoryCategory | 说明Description | 源(任务)Source (Task) | LevelLevel |
---|---|---|---|---|---|
2962729627 | ClusterUpgradeStartedClusterUpgradeStarted | 升级Upgrade | 群集升级已启动A cluster upgrade has started | CMCM | 信息性Informational |
2962829628 | ClusterUpgradeCompletedClusterUpgradeCompleted | 升级Upgrade | 群集升级已完成A cluster upgrade has completed | CMCM | 信息性Informational |
2962929629 | ClusterUpgradeRollbackStartedClusterUpgradeRollbackStarted | 升级Upgrade | 群集升级已开始回退A cluster upgrade has started to rollback | CMCM | 警告Warning |
2963029630 | ClusterUpgradeRollbackCompletedClusterUpgradeRollbackCompleted | 升级Upgrade | 群集升级已完成回退A cluster upgrade has completed rolling back | CMCM | 警告Warning |
2963129631 | ClusterUpgradeDomainCompletedClusterUpgradeDomainCompleted | 升级Upgrade | 升级域在群集升级期间已完成升级An upgrade domain has finished upgrading during a cluster upgrade | CMCM | 信息性Informational |
节点事件Node events
节点生命周期事件Node lifecycle events
EventIdEventId | 名称Name | CategoryCategory | 说明Description | 源(任务)Source (Task) | LevelLevel |
---|---|---|---|---|---|
1860218602 | NodeDeactivateCompletedNodeDeactivateCompleted | StateTransitionStateTransition | 节点停用已完成Deactivation of a node has completed | FMFM | 信息性Informational |
1860318603 | NodeUpNodeUp | StateTransitionStateTransition | 群集检测到节点已启动The cluster has detected a node has started up | FMFM | 信息性Informational |
1860418604 | NodeDownNodeDown | StateTransitionStateTransition | 群集检测到节点已关闭。The cluster has detected a node has shut down. 在节点重新启动时,将看到后跟 NodeUp 事件的 NodeDown 事件During a node restart, you will see a NodeDown event followed by a NodeUp event | FMFM | 错误Error |
1860518605 | NodeAddedToClusterNodeAddedToCluster | StateTransitionStateTransition | 一个新节点已添加到群集,Service Fabric 可以将应用程序部署到此节点A new node has been added to the cluster and Service Fabric can deploy applications to this node | FMFM | 信息性Informational |
1860618606 | NodeRemovedFromClusterNodeRemovedFromCluster | StateTransitionStateTransition | 从群集中删除了一个节点。A node has been removed from the cluster. Service Fabric 将无法再将应用程序部署到此节点Service Fabric will no longer deploy applications to this node | FMFM | 信息性Informational |
1860718607 | NodeDeactivateStartedNodeDeactivateStarted | StateTransitionStateTransition | 节点停用已启动Deactivation of a node has started | FMFM | 信息性Informational |
2562125621 | NodeOpenSucceededNodeOpenSucceeded | StateTransitionStateTransition | 节点已成功启动A node started successfully | FabricNodeFabricNode | 信息性Informational |
2562225622 | NodeOpenFailedNodeOpenFailed | StateTransitionStateTransition | 节点未能启动并加入环A node failed to start and join the ring | FabricNodeFabricNode | 错误Error |
2562425624 | NodeClosedNodeClosed | StateTransitionStateTransition | 节点已成功关闭A node shut down successfully | FabricNodeFabricNode | 信息性Informational |
2562625626 | NodeAbortedNodeAborted | StateTransitionStateTransition | 一个节点已经以非正常方式关闭A node has ungracefully shut down | FabricNodeFabricNode | 错误Error |
应用程序事件Application events
应用程序生命周期事件Application lifecycle events
EventIdEventId | 名称Name | CategoryCategory | 说明Description | 源(任务)Source (Task) | LevelLevel |
---|---|---|---|---|---|
2962029620 | ApplicationCreatedApplicationCreated | LifeCycleLifeCycle | 新应用程序已创建A new application was created | CMCM | 信息性Informational |
2962529625 | ApplicationDeletedApplicationDeleted | LifeCycleLifeCycle | 一个现有的应用程序已删除An existing application was deleted | CMCM | 信息性Informational |
2308323083 | ApplicationProcessExitedApplicationProcessExited | LifeCycleLifeCycle | 应用程序中的一个进程已退出A process within an application has exited | HostingHosting | 信息性Informational |
应用程序升级事件Application upgrade events
有关应用程序升级的详细信息,请参阅此处。More details on application upgrades can be found here.
EventIdEventId | 名称Name | CategoryCategory | 说明Description | 源(任务)Source (Task) | LevelLevel |
---|---|---|---|---|---|
2962129621 | ApplicationUpgradeStartedApplicationUpgradeStarted | 升级Upgrade | 应用程序升级已启动An application upgrade has started | CMCM | 信息性Informational |
2962229622 | ApplicationUpgradeCompletedApplicationUpgradeCompleted | 升级Upgrade | 应用程序升级已完成An application upgrade has completed | CMCM | 信息性Informational |
2962329623 | ApplicationUpgradeRollbackStartedApplicationUpgradeRollbackStarted | 升级Upgrade | 应用程序升级已开始回退An application upgrade has started to rollback | CMCM | 警告Warning |
2962429624 | ApplicationUpgradeRollbackCompletedApplicationUpgradeRollbackCompleted | 升级Upgrade | 应用程序升级已完成回退An application upgrade has completed rolling back | CMCM | 警告Warning |
2962629626 | ApplicationUpgradeDomainCompletedApplicationUpgradeDomainCompleted | 升级Upgrade | 升级域在应用程序升级期间已完成升级An upgrade domain has finished upgrading during an application upgrade | CMCM | 信息性Informational |
服务事件Service events
服务生命周期事件Service lifecycle events
EventIdEventId | 名称Name | CategoryCategory | 说明Description | 源(任务)Source (Task) | LevelLevel |
---|---|---|---|---|---|
1865718657 | ServiceCreatedServiceCreated | LifeCycleLifeCycle | 已创建新服务A new service was created | FMFM | 信息性Informational |
1865818658 | ServiceDeletedServiceDeleted | LifeCycleLifeCycle | 已删除一个现有的服务An existing service was deleted | FMFM | 信息性Informational |
分区事件Partition events
分区移动事件Partition move events
EventIdEventId | 名称Name | CategoryCategory | 说明Description | 源(任务)Source (Task) | LevelLevel |
---|---|---|---|---|---|
1894018940 | PartitionReconfiguredPartitionReconfigured | LifeCycleLifeCycle | 分区重新配置已完成A partition reconfiguration has completed | RARA | 信息性Informational |
副本事件Replica events
副本生命周期事件Replica lifecycle events
EventIdEventId | 名称Name | CategoryCategory | 说明Description | 源(任务)Source (Task) | LevelLevel |
---|---|---|---|---|---|
6170161701 | ReliableDictionaryOpenedReliableDictionaryOpened | LifeCycleLifeCycle | 可靠字典已打开Reliable dictionary has opened | DistributedDictionaryDistributedDictionary | 信息性Informational |
6170261702 | ReliableDictionaryClosedReliableDictionaryClosed | LifeCycleLifeCycle | 可靠字典已关闭Reliable dictionary has closed | DistributedDictionaryDistributedDictionary | 信息性Informational |
6170361703 | ReliableDictionaryCheckpointRecoveredReliableDictionaryCheckpointRecovered | LifeCycleLifeCycle | 可靠字典已恢复其检查点Reliable dictionary has recovered its checkpoint | DistributedDictionaryDistributedDictionary | 信息性Informational |
6170461704 | ReliableDictionaryCheckpointFilesSentReliableDictionaryCheckpointFilesSent | LifeCycleLifeCycle | 副本已发送可靠字典的检查点文件Replica has sent reliable dictionary's checkpoint files | DistributedDictionaryDistributedDictionary | 信息性Informational |
6170561705 | ReliableDictionaryCheckpointFilesReceivedReliableDictionaryCheckpointFilesReceived | LifeCycleLifeCycle | 副本已接收可靠字典的检查点文件Replica has received reliable dictionary's checkpoint files | DistributedDictionaryDistributedDictionary | 信息性Informational |
6196361963 | ReliableQueueOpenedReliableQueueOpened | LifeCycleLifeCycle | 可靠队列已打开Reliable queue has opened | DistributedQueueDistributedQueue | 信息性Informational |
6196461964 | ReliableQueueClosedReliableQueueClosed | LifeCycleLifeCycle | 可靠队列已关闭Reliable queue has closed | DistributedQueueDistributedQueue | 信息性Informational |
6196561965 | ReliableQueueCheckpointRecoveredReliableQueueCheckpointRecovered | LifeCycleLifeCycle | 可靠队列已恢复其检查点Reliable queue has recovered its checkpoint | DistributedQueueDistributedQueue | 信息性Informational |
6196661966 | ReliableQueueCheckpointFilesSentReliableQueueCheckpointFilesSent | LifeCycleLifeCycle | 副本已发送可靠队列的检查点文件Replica has sent reliable queue's checkpoint files | DistributedQueueDistributedQueue | 信息性Informational |
6364763647 | ReliableQueueCheckpointFilesReceivedReliableQueueCheckpointFilesReceived | LifeCycleLifeCycle | 副本已接收可靠队列的检查点文件Replica has received reliable queue's checkpoint files | DistributedQueueDistributedQueue | 信息性Informational |
6364863648 | ReliableConcurrentQueueOpenedReliableConcurrentQueueOpened | LifeCycleLifeCycle | 可靠并发队列已打开Reliable concurrent queue has opened | ReliableConcurrentQueueReliableConcurrentQueue | 信息性Informational |
6364963649 | ReliableConcurrentQueueClosedReliableConcurrentQueueClosed | LifeCycleLifeCycle | 可靠并发队列已关闭Reliable concurrent queue has closed | ReliableConcurrentQueueReliableConcurrentQueue | 信息性Informational |
6365063650 | ReliableConcurrentQueueCheckpointRecoveredReliableConcurrentQueueCheckpointRecovered | LifeCycleLifeCycle | 可靠并发队列已恢复其检查点Reliable concurrent queue has recovered its checkpoint | ReliableConcurrentQueueReliableConcurrentQueue | 信息性Informational |
6168761687 | TStoreErrorTStoreError | 失败Failure | 可靠集合已收到意外错误Reliable collection has received an unexpected error | TStoreTStore | 错误Error |
6383163831 | PrimaryFullCopyInitiatedPrimaryFullCopyInitiated | LifeCycleLifeCycle | 主要副本已启动完整副本Primary replica has initiated a full copy | TReplicatorTReplicator | 信息性Informational |
6383263832 | PrimaryPartialCopyInitiatedPrimaryPartialCopyInitiated | LifeCycleLifeCycle | 主要副本已启动不完整副本Primary replica has initiated a partial copy | TReplicatorTReplicator | 信息性Informational |
1683116831 | BuildIdleReplicaStartedBuildIdleReplicaStarted | LifeCycleLifeCycle | 主要副本已开始构建空闲副本Primary replica has started building idle replica | 复制Replication | 信息性Informational |
1683216832 | BuildIdleReplicaCompletedBuildIdleReplicaCompleted | LifeCycleLifeCycle | 主要副本已构建完空闲副本Primary replica has completed building idle replica | 复制Replication | 信息性Informational |
1683316833 | BuildIdleReplicaFailedBuildIdleReplicaFailed | LifeCycleLifeCycle | 主要副本无法构建空闲副本Primary replica has failed building idle replica | 复制Replication | 警告Warning |
1683416834 | PrimaryReplicationQueueFullPrimaryReplicationQueueFull | 运行状况Health | 主要副本的复制队列已满Primary replica's replication queue is full | 复制Replication | 警告Warning |
1683516835 | PrimaryReplicationQueueWarningPrimaryReplicationQueueWarning | 运行状况Health | 主要副本的复制队列已快满Primary replica's replication queue is near full | 复制Replication | 警告Warning |
1683616836 | PrimaryReplicationQueueWarningMitigatedPrimaryReplicationQueueWarningMitigated | 运行状况Health | 主要副本的复制队列正常Primary replica's replication queue is okay | 复制Replication | 信息性Informational |
1683716837 | SecondaryReplicationQueueFullSecondaryReplicationQueueFull | 运行状况Health | 次要副本的复制队列已满Secondary replica's replication queue is full | 复制Replication | 警告Warning |
1683816838 | SecondaryReplicationQueueWarningSecondaryReplicationQueueWarning | 运行状况Health | 次要副本的复制队列已快满Secondary replica's replication queue is near full | 复制Replication | 警告Warning |
1683916839 | SecondaryReplicationQueueWarningMitigatedSecondaryReplicationQueueWarningMitigated | 运行状况Health | 次要副本的复制队列正常Secondary replica's replication queue is okay | 复制Replication | 信息性Informational |
1684016840 | PrimaryFaultedSlowSecondaryPrimaryFaultedSlowSecondary | 运行状况Health | 主要副本已导致慢速次要副本出现故障Primary replica has faulted a slow secondary replica | 复制Replication | 警告Warning |
1684116841 | ReplicatorFaultedReplicatorFaulted | 运行状况Health | 副本已出现故障Replica has faulted | 复制Replication | 警告Warning |
容器事件Container events
容器生命周期事件Container lifecycle events
EventIdEventId | 名称Name | 说明Description | 源(任务)Source (Task) | LevelLevel | 版本Version |
---|---|---|---|---|---|
2307423074 | ContainerActivatedContainerActivated | 容器已启动A container has started | HostingHosting | 信息性Informational | 11 |
2307523075 | ContainerDeactivatedContainerDeactivated | 容器已停止A container has stopped | HostingHosting | 信息性Informational | 11 |
2308223082 | ContainerExitedContainerExited | 容器已退出 - 请检查 UnexpectedTermination 标志A container has exited - Check the UnexpectedTermination flag | HostingHosting | 信息性Informational | 11 |
运行状况报告Health reports
Service Fabric 运行状况模型提供丰富、灵活且可扩展的运行状况评估和报告。The Service Fabric Health Model provides a rich, flexible, and extensible health evaluation and reporting. 从 Service Fabric 版本 6.2 开始,运行状况数据将作为平台事件写入,以提供运行状况历史记录。Starting Service Fabric version 6.2, health data is written as Platform events to provide historical records of health. 为保持较低的运行状况事件数量,我们只将以下内容作为 Service Fabric 事件编写:To keep the volume of health events low, we only write the following as Service Fabric events:
- 所有
Error
或Warning
运行状况报告AllError
orWarning
health reports - 转换期间的
Ok
运行状况报告Ok
health reports during transitions - 当
Error
或Warning
运行状况事件过期。When anError
orWarning
health event expires. 这可以用于确定一个实体不正常的时间This can be used to determine how long an entity was unhealthy
群集运行状况报告事件Cluster health report events
EventIdEventId | 名称Name | 说明Description | 源(任务)Source (Task) | LevelLevel | 版本Version |
---|---|---|---|---|---|
5442854428 | ClusterNewHealthReportClusterNewHealthReport | 新的群集运行状况报告可用A new cluster health report is available | HMHM | 信息性Informational | 11 |
5443754437 | ClusterHealthReportExpiredClusterHealthReportExpired | 现有的群集运行状况报告已过期An existing cluster health report has expired | HMHM | 信息性Informational | 11 |
节点运行状况报告事件Node health report events
EventIdEventId | 名称Name | 说明Description | 源(任务)Source (Task) | LevelLevel | 版本Version |
---|---|---|---|---|---|
5442354423 | NodeNewHealthReportNodeNewHealthReport | 新的节点运行状况报告可用A new node health report is available | HMHM | 信息性Informational | 11 |
5443254432 | NodeHealthReportExpiredNodeHealthReportExpired | 现有的节点运行状况报告已过期An existing node health report has expired | HMHM | 信息性Informational | 11 |
应用程序运行状况报告事件Application health report events
EventIdEventId | 名称Name | 说明Description | 源(任务)Source (Task) | LevelLevel | 版本Version |
---|---|---|---|---|---|
5442554425 | ApplicationNewHealthReportApplicationNewHealthReport | 新的应用程序运行状况报告已创建。A new application health report was created. 这适用于未部署的应用程序。This is for undeployed applications. | HMHM | 信息性Informational | 11 |
5442654426 | DeployedApplicationNewHealthReportDeployedApplicationNewHealthReport | 新的已部署应用程序运行状况报告已创建A new deployed application health report was created | HMHM | 信息性Informational | 11 |
5442754427 | DeployedServicePackageNewHealthReportDeployedServicePackageNewHealthReport | 新的已部署服务运行状况报告已创建A new deployed service health report was created | HMHM | 信息性Informational | 11 |
5443454434 | ApplicationHealthReportExpiredApplicationHealthReportExpired | 现有的应用程序运行状况报告已过期An existing application health report has expired | HMHM | 信息性Informational | 11 |
5443554435 | DeployedApplicationHealthReportExpiredDeployedApplicationHealthReportExpired | 现有的已部署应用程序运行状况报告已过期An existing deployed application health report has expired | HMHM | 信息性Informational | 11 |
5443654436 | DeployedServicePackageHealthReportExpiredDeployedServicePackageHealthReportExpired | 现有的已部署服务运行状况报告已过期An existing deployed service health report has expired | HMHM | 信息性Informational | 11 |
服务运行状况报告事件Service health report events
EventIdEventId | 名称Name | 说明Description | 源(任务)Source (Task) | LevelLevel | 版本Version |
---|---|---|---|---|---|
5442454424 | ServiceNewHealthReportServiceNewHealthReport | 新的服务运行状况报告已创建A new service health report was created | HMHM | 信息性Informational | 11 |
5443354433 | ServiceHealthReportExpiredServiceHealthReportExpired | 现有的服务运行状况报告已过期An existing service health report has expired | HMHM | 信息性Informational | 11 |
分区运行状况报告事件Partition health report events
EventIdEventId | 名称Name | 说明Description | 源(任务)Source (Task) | LevelLevel | 版本Version |
---|---|---|---|---|---|
5442254422 | PartitionNewHealthReportPartitionNewHealthReport | 新的分区运行状况报告已创建A new partition health report was created | HMHM | 信息性Informational | 11 |
5443154431 | PartitionHealthReportExpiredPartitionHealthReportExpired | 现有的分区运行状况报告已过期An existing partition health report has expired | HMHM | 信息性Informational | 11 |
副本运行状况报告事件Replica health report events
EventIdEventId | 名称Name | 说明Description | 源(任务)Source (Task) | LevelLevel | 版本Version |
---|---|---|---|---|---|
5442954429 | StatefulReplicaNewHealthReportStatefulReplicaNewHealthReport | 有状态副本运行状况报告已创建A stateful replica health report was created | HMHM | 信息性Informational | 11 |
5443054430 | StatelessInstanceNewHealthReportStatelessInstanceNewHealthReport | 新的无状态实例运行状况报告已创建A new stateless instance health report was created | HMHM | 信息性Informational | 11 |
5443854438 | StatefulReplicaHealthReportExpiredStatefulReplicaHealthReportExpired | 现有的有状态副本运行状况报告已过期An existing stateful replica health report has expired | HMHM | 信息性Informational | 11 |
5443954439 | StatelessInstanceHealthReportExpiredStatelessInstanceHealthReportExpired | 现有的无状态实例运行状况报告已过期An existing stateless instance health report has expired | HMHM | 信息性Informational | 11 |
混沌测试事件Chaos testing events
混沌会话事件Chaos session events
EventIdEventId | 名称Name | 说明Description | 源(任务)Source (Task) | LevelLevel | 版本Version |
---|---|---|---|---|---|
5002150021 | ChaosStartedChaosStarted | 混沌测试会话已启动A Chaos testing session has started | TestabilityTestability | 信息性Informational | 11 |
5002350023 | ChaosStoppedChaosStopped | 混沌测试会话已停止A Chaos testing session has stopped | TestabilityTestability | 信息性Informational | 11 |
混沌节点事件Chaos node events
EventIdEventId | 名称Name | 说明Description | 源(任务)Source (Task) | LevelLevel | 版本Version |
---|---|---|---|---|---|
5003350033 | ChaosNodeRestartScheduledChaosNodeRestartScheduled | 节点已计划在混沌测试会话过程中重启A node has scheduled to restart as part of a Chaos testing session | TestabilityTestability | 信息性Informational | 11 |
5008750087 | ChaosNodeRestartCompletedChaosNodeRestartCompleted | 节点已在混沌测试会话过程中完成重启A node has finished restarting as part of a Chaos testing session | TestabilityTestability | 信息性Informational | 11 |
混沌应用程序事件Chaos application events
EventIdEventId | 名称Name | 说明Description | 源(任务)Source (Task) | LevelLevel | 版本Version |
---|---|---|---|---|---|
5005350053 | ChaosCodePackageRestartScheduledChaosCodePackageRestartScheduled | 已计划在混沌测试会话过程中进行代码包重启A code package restart has been scheduled during a Chaos testing session | TestabilityTestability | 信息性Informational | 11 |
5010150101 | ChaosCodePackageRestartCompletedChaosCodePackageRestartCompleted | 代码包重启已在混沌测试会话过程中完成A code package restart has completed during a Chaos testing session | TestabilityTestability | 信息性Informational | 11 |
混沌分区事件Chaos partition events
EventIdEventId | 名称Name | 说明Description | 源(任务)Source (Task) | LevelLevel | 版本Version |
---|---|---|---|---|---|
5006950069 | ChaosPartitionPrimaryMoveScheduledChaosPartitionPrimaryMoveScheduled | 主分区已计划在混沌测试会话过程中移动A primary partition has scheduled to move as part of a Chaos testing session | TestabilityTestability | 信息性Informational | 11 |
5007750077 | ChaosPartitionSecondaryMoveScheduledChaosPartitionSecondaryMoveScheduled | 辅助分区已计划在混沌测试会话过程中移动A secondary partition has scheduled to move as part of a Chaos testing session | TestabilityTestability | 信息性Informational | 11 |
6500365003 | PartitionPrimaryMoveAnalysisPartitionPrimaryMoveAnalysis | 可以对主分区移动进行更深入的分析The deeper analysis of the primary partition move is available | TestabilityTestability | 信息性Informational | 11 |
混沌副本事件Chaos replica events
EventIdEventId | 名称Name | 说明Description | 源(任务)Source (Task) | LevelLevel | 版本Version |
---|---|---|---|---|---|
5004750047 | ChaosReplicaRestartScheduledChaosReplicaRestartScheduled | 已计划在混沌测试会话过程中进行副本重启A replica restart has been scheduled as part of a Chaos testing session | TestabilityTestability | 信息性Informational | 11 |
5005150051 | ChaosReplicaRemovalScheduledChaosReplicaRemovalScheduled | 已计划在混沌测试会话过程中进行副本删除A replica removal has been scheduled as part of a Chaos testing session | TestabilityTestability | 信息性Informational | 11 |
5009350093 | ChaosReplicaRemovalCompletedChaosReplicaRemovalCompleted | 已完成在混沌测试会话过程中进行副本删除的操作A replica removal has completed as part of a Chaos testing session | TestabilityTestability | 信息性Informational | 11 |
其他事件Other events
相关事件Correlation events
EventIdEventId | 名称Name | 说明Description | 源(任务)Source (Task) | LevelLevel | 版本Version |
---|---|---|---|---|---|
6501165011 | CorrelationOperationalCorrelationOperational | 已检测到相关性A correlation has been detected | TestabilityTestability | 信息性Informational | 11 |
6.2 版本之前的事件Events prior to version 6.2
以下是 6.2 版本之前的 Service Fabric 提供的事件综合列表。Here is a comprehensive list of events provided by Service Fabric prior to version 6.2.
EventIdEventId | 名称Name | 源(任务)Source (Task) | LevelLevel |
---|---|---|---|
2562025620 | NodeOpeningNodeOpening | FabricNodeFabricNode | 信息性Informational |
2562125621 | NodeOpenedSuccessNodeOpenedSuccess | FabricNodeFabricNode | 信息性Informational |
2562225622 | NodeOpenedFailedNodeOpenedFailed | FabricNodeFabricNode | 信息性Informational |
2562325623 | NodeClosingNodeClosing | FabricNodeFabricNode | 信息性Informational |
2562425624 | NodeClosedNodeClosed | FabricNodeFabricNode | 信息性Informational |
2562525625 | NodeAbortingNodeAborting | FabricNodeFabricNode | 信息性Informational |
2562625626 | NodeAbortedNodeAborted | FabricNodeFabricNode | 信息性Informational |
2962729627 | ClusterUpgradeStartClusterUpgradeStart | CMCM | 信息性Informational |
2962829628 | ClusterUpgradeCompleteClusterUpgradeComplete | CMCM | 信息性Informational |
2962929629 | ClusterUpgradeRollbackClusterUpgradeRollback | CMCM | 信息性Informational |
2963029630 | ClusterUpgradeRollbackCompleteClusterUpgradeRollbackComplete | CMCM | 信息性Informational |
2963129631 | ClusterUpgradeDomainCompleteClusterUpgradeDomainComplete | CMCM | 信息性Informational |
2307423074 | ContainerActivatedContainerActivated | HostingHosting | 信息性Informational |
2307523075 | ContainerDeactivatedContainerDeactivated | HostingHosting | 信息性Informational |
2962029620 | ApplicationCreatedApplicationCreated | CMCM | 信息性Informational |
2962129621 | ApplicationUpgradeStartApplicationUpgradeStart | CMCM | 信息性Informational |
2962229622 | ApplicationUpgradeCompleteApplicationUpgradeComplete | CMCM | 信息性Informational |
2962329623 | ApplicationUpgradeRollbackApplicationUpgradeRollback | CMCM | 信息性Informational |
2962429624 | ApplicationUpgradeRollbackCompleteApplicationUpgradeRollbackComplete | CMCM | 信息性Informational |
2962529625 | ApplicationDeletedApplicationDeleted | CMCM | 信息性Informational |
2962629626 | ApplicationUpgradeDomainCompleteApplicationUpgradeDomainComplete | CMCM | 信息性Informational |
1856618566 | ServiceCreatedServiceCreated | FMFM | 信息性Informational |
1856718567 | ServiceDeletedServiceDeleted | FMFM | 信息性Informational |
后续步骤Next steps
- 大致了解 Service Fabric 中的诊断Get an overview of diagnostics in Service Fabric
- 有关 EventStore 的详细信息,请参阅 Service Fabric Eventstore 概述Learn more about the EventStore in Service Fabric Eventstore Overview
- 将 Azure 诊断配置修改为收集更多日志Modifying your Azure Diagnostics configuration to collect more logs