spring-cloud-stream-redis
  • Guide
  • Getting-started
  • Install
  • Configure
  • Actuator
  • Changelog
  • Maven central version
  • 简体中文
  • English
GitHub
  • Guide
  • Getting-started
  • Install
  • Configure
  • Actuator
  • Changelog
  • Maven central version
  • 简体中文
  • English
GitHub
  • Guide

    • Guide
    • Getting-started
    • Install
    • Configure
    • Actuator

Actuator

ake sure you have spring-cloud-stream-redis installed,if you haven't, check out the Install。

Enable configuration

management:
  endpoints:
    web:
      exposure:
        include: '*'
  endpoint:
    health:
      show-details: always
  health:
    binders:
      enabled: true
    redis:
      enabled: false

Access path

/actuator/health

Example:

{
    "status": "UP",
    "components": {
        "binders": {
            "status": "UP",
            "components": {
                "redis": {
                    "status": "UP",
                    "details": {
                        "version": "7.1.2",
                        "pool.maxTotal": 8,
                        "pool.maxIdle": 8,
                        "pool.minIdle": 0
                    }
                }
            }
        },
        "ping": {
            "status": "UP"
        }
    }
}
Edit this page on GitHub
Last Updated:
Prev
Configure