SpringBootのActuatorモニタリングサービスを初歩的に認識

896 ワード

SpringBootのActuator
生産環境では、リアルタイムまたは定期的にサービスの可用性を監視する必要があり、SpringBootのactuator機能は多くの監視に必要なインタフェースを提供し、actuatorはSpringBootが提供する対応システムの自省と監視の統合機能であり、アプリケーションシステムの構成表示、健康診断、関連機能統計などを行うことができる.変更機能の使用方法プロジェクトに依存を追加

  
     org.springframework.boot
     spring-boot-starter-actuator 
  

アプリケーションでpropertiesプロファイルでモニタのHTTPポートを指定し、指定した場合はサーブレットと同じポートを使用します.
# actuator
# actuator     (       )
management.server.port=8100
management.server.servlet.context-path=/springbootmybatis
#      health info,   *,     web    
management.endpoints.web.exposure.include=*
http://localhost:8100/springbootmybatis/actuator/health
{"status":"UP"}
http://localhost:8100/springbootmybatis/actuator/info
{}