"hello" 属性 在数据库健康指标中是什么意思? (Spring 执行器)
What does the "hello" property mean in db health indicator? (Spring Actuator)
我在 spring 执行器中启用了 DataSourceHealthIndicator,现在在 "health" 端点我得到了:
{
"status":"UP",
"details":{
"db":{
"status":"UP",
"details":{
"database":"H2",
"hello":1
}
},
"diskSpace":{
"status":"UP",
"details":{
"total":999528853504,
"free":773661831168,
"threshold":10485760
}
}
}
}
我想知道 "hello":1 在数据库信息
中的含义
表示数据库健康检查。
虚假定期查询(f.e。select 'hello' from dual
在 Oracle 中)检查数据库是否仍可从应用程序使用。 In actuator "hello":1
表示最后一次健康检查成功。
见https://cloud.ibm.com/docs/java?topic=java-spring-healthcheck
我在 spring 执行器中启用了 DataSourceHealthIndicator,现在在 "health" 端点我得到了:
{
"status":"UP",
"details":{
"db":{
"status":"UP",
"details":{
"database":"H2",
"hello":1
}
},
"diskSpace":{
"status":"UP",
"details":{
"total":999528853504,
"free":773661831168,
"threshold":10485760
}
}
}
}
我想知道 "hello":1 在数据库信息
中的含义表示数据库健康检查。
虚假定期查询(f.e。select 'hello' from dual
在 Oracle 中)检查数据库是否仍可从应用程序使用。 In actuator "hello":1
表示最后一次健康检查成功。
见https://cloud.ibm.com/docs/java?topic=java-spring-healthcheck