Health Endpoint Monitoring模式】的更多相关文章

Health Endpoint Monitoring模式是一种用来监控服务健康状态的模式. Health Endpoint Monitoring模式通过在应用内额外暴露一个可以进行功能检查的接口来实现,可以由外部工具定期访问暴露在外部的端点来检查服务的状态.该模式可以有效验证服务是否可用. 问题 监控应用的状态通常是一种很好的应用实践.通常来说,也是业务的一个需求.针对一些中间层和共享的服务也同样如此.因为这样可以有效确认服务在正确工作.然而,监控运行在云上面的服务要比监控一般的服务更复杂.举例…
Circuit Breaker模式会处理一些需要一定时间来重连远程服务和远端资源的错误.该模式可以提高一个应用的稳定性和弹性. 问题 在类似于云的分布式环境中,当一个应用需要执行一些访问远程资源或者是远端服务的时候,是很容易碰到一些偶然的错误的,比如说,网络连接速度很慢,超时,或者是资源的过量使用,或者临时资源不再可用等等.这一类的错误通常来说会在短暂的时间内,自动恢复过来.一个健壮的云应用也该能够通过一些策略能够处理这类错误,比如使用重试模式. 然而,也有一些情况,错误是出于一些意想不到的事件…
Handle faults that may take a variable amount of time to rectify when connecting to a remote service or resource. This pattern can improve the stability and resiliency of an application.在连接到一个远程服务或资源时,处理故障可能需要一个变量的时间来纠正.这种模式可以提高应用程序的稳定性和弹性. Context a…
1.Cache-aside Pattern 缓存模式 Load data on demand into a cache from a data store. This pattern can improve performance and also helps to maintain consistency between data held in the cache and the data in the underlying data store. 从数据存储区加载到缓存中的数据.这种模式可…
目录 . the most common problem areas in cloud application development ) Availability ) Data Management ) Design and Implementation ) Management and Monitoring ) Messaging ) Performance and Scalability ) Resiliency ) Security 1. the most common problem…
January 2014 Containing twenty-four design patterns and ten related guidance topics, this guide articulates the benefit of applying patterns by showing how each piece can fit into the big picture of cloud application architectures. It also discusses…
Cloud Design Patterns Categories Data Management Design and Implementation Messaging Patterns Ambassador Anti-Corruption Layer Asynchronous Request-Reply Backends for Frontends Bulkhead Cache-Aside Choreography Circuit Breaker Claim Check Compensatin…
您现在访问的是微软AZURE全球版技术文档网站,若需要访问由世纪互联运营的MICROSOFT AZURE中国区技术文档网站,请访问 https://docs.azure.cn. Azure 负载均衡器概述Azure Load Balancer overview 本文内容 负载均衡器的功能 负载均衡器之间的差异 限制 后续步骤 Azure 负载均衡器可提高应用程序的可用性和网络性能.Azure Load Balancer delivers high availability and network…
本文来自于springboot官方文档 地址:https://docs.spring.io/spring-boot/docs/current/reference/html/ Spring Boot参考指南 作者 菲利普· 韦伯,戴夫 Syer,约什 长,斯特凡 尼科尔,罗布 绞车,安迪· 威尔金森,马塞尔 Overdijk,基督教 杜普伊斯,塞巴斯蒂安· 德勒兹,迈克尔· 西蒙斯,韦德兰Pavić 2.0.0.M3 版权所有©2012-2017 本文件的副本可供您自己使用和分发给他人,前提是您不…
Spring Boot Actuator可以帮助你监控和管理Spring Boot应用,比如健康检查.审计.统计和HTTP追踪等.所有的这些特性可以通过JMX或者HTTP endpoints来获得. Actuator同时还可以与外部应用监控系统整合,比如 Prometheus, Graphite, DataDog, Influx, Wavefront, New Relic等.这些系统提供了非常好的仪表盘.图标.分析和告警等功能,使得你可以通过统一的接口轻松的监控和管理你的应用. Actuator…