fix: the error when querying empty metric data (#144)
* fix: the error when querying empty metric data * chore: update release notes
This commit is contained in:
parent
1f6739dc4c
commit
f679a57fb2
|
@ -28,6 +28,19 @@ PUT _template/$[[SETUP_TEMPLATE_NAME]]
|
|||
}
|
||||
},
|
||||
"mappings": {
|
||||
"properties": {
|
||||
"metadata": {
|
||||
"properties": {
|
||||
"labels": {
|
||||
"properties": {
|
||||
"cluster_id": {
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"dynamic_templates": [
|
||||
{
|
||||
"strings": {
|
||||
|
|
|
@ -27,6 +27,19 @@ PUT _template/$[[SETUP_TEMPLATE_NAME]]
|
|||
}
|
||||
},
|
||||
"mappings": {
|
||||
"properties": {
|
||||
"metadata": {
|
||||
"properties": {
|
||||
"labels": {
|
||||
"properties": {
|
||||
"cluster_id": {
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"dynamic_templates": [
|
||||
{
|
||||
"strings": {
|
||||
|
|
|
@ -27,6 +27,19 @@ PUT _template/$[[SETUP_TEMPLATE_NAME]]
|
|||
}
|
||||
},
|
||||
"mappings": {
|
||||
"properties": {
|
||||
"metadata": {
|
||||
"properties": {
|
||||
"labels": {
|
||||
"properties": {
|
||||
"cluster_id": {
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"dynamic_templates": [
|
||||
{
|
||||
"strings": {
|
||||
|
|
|
@ -6,6 +6,15 @@ title: "Release Notes"
|
|||
# Release Notes
|
||||
|
||||
Information about release notes of INFINI Console is provided here.
|
||||
## Latest (In development)
|
||||
|
||||
### Breaking changes
|
||||
|
||||
### Features
|
||||
|
||||
### Bug fix
|
||||
- Fixed the error when querying empty metric data (#144)
|
||||
### Improvements
|
||||
|
||||
## 1.28.2 (2025-02-15)
|
||||
|
||||
|
|
|
@ -6,6 +6,15 @@ title: "版本历史"
|
|||
# 版本发布日志
|
||||
|
||||
这里是 INFINI Console 历史版本发布的相关说明。
|
||||
## Latest (In development)
|
||||
|
||||
### Breaking changes
|
||||
|
||||
### Features
|
||||
|
||||
### Bug fix
|
||||
- 修复指标数据为空时的查询错误 (#144)
|
||||
### Improvements
|
||||
|
||||
## 1.28.2 (2025-02-15)
|
||||
|
||||
|
|
Loading…
Reference in New Issue