Skip to content

Endpoint /actuator/health/valkey returns NOT FOUND #77

@antonov-aa2702

Description

@antonov-aa2702

Hi, I want to access actuator endpoint, but I get 404

My dependencies

plugins {
    id 'java'
    id 'org.springframework.boot' version '3.5.8'
    id 'com.google.osdetector' version '1.7.3'
}

ext {
    valkeyGlideVersion="2.3.0-rc2"
    valkeyVersion="1.0.0"
}

dependencies {
    implementation "org.springframework.boot:spring-boot-starter"
    implementation 'org.springframework.boot:spring-boot-actuator-autoconfigure'
    implementation "io.valkey.springframework.boot:spring-boot-starter-data-valkey:${valkeyVersion}"
    implementation "org.springframework.boot:spring-boot-starter-actuator"
    implementation "org.springframework.boot:spring-boot-starter-web"
    implementation "io.valkey:valkey-glide:${valkeyGlideVersion}:${osdetector.classifier}"
    implementation 'io.micrometer:micrometer-core'
}

My application.yml

spring:
  data:
    valkey:
      cluster:
        nodes:
          - localhost:9020
          - localhost:9021
          - localhost:9022
        max-redirects: 3

server:
  port: 8082

management:
  endpoints:
    web:
      exposure:
        include: health,metrics
  health:
    valkey:
      enabled: true

My response

GET http://localhost:8082/actuator/health/valkey

HTTP/1.1 404 
Content-Length: 0
Date: Tue, 24 Mar 2026 11:18:11 GMT

Tell me, please, how this can be fixed

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions