2

私はいくつかのドキュメントを読み、このようなアクチュエーターを使用して準備と活性のエンドポイントを設定する方法を見つけました。しかし、「スタートアップ」プローブのエンドポイントをセットアップする方法がわかりません。

私のアプリケーションyml:

management:
  endpoints:
    web:
      exposure:
        include: "*"
  endpoint:
    health:
      show-details: "ALWAYS"
      group:
        readiness.include: readinessProbe, dataStream
        startup.include: readinessProbe, dataStream

私の展開構成:

  livenessProbe:
    httpGet:
      path: "/actuator/health/liveness"
      port: "http"
    initialDelaySeconds: 600
    periodSeconds: 15
  readinessProbe:
    httpGet:
      path: "/actuator/health/readiness"
      port: "http"
    periodSeconds: 30
    failureThreshold: 15
  startupProbe:
    httpGet:
      path: "/actuator/health/startup"
      port: "http"
    initialDelaySeconds: 150
    periodSeconds: 10
    failureThreshold: 30

アクチュエーターが「スタートアップ」プローブの URL を提供していないようです。つまり、http://localhost:8080/actuator/health/startup が機能していません。どうすれば設定できますか?

4

1 に答える 1