Compare commits
2 Commits
fix_gw_age
...
v1.27.0
Author | SHA1 | Date |
---|---|---|
|
5eec53b62b | |
|
9a585bf1e7 |
|
@ -52,7 +52,7 @@ jobs:
|
|||
|
||||
# Gather branches and tags, filter for semantic versions, sort, remove duplicates
|
||||
VERSIONS=$(git for-each-ref refs/remotes/origin refs/tags --format="%(refname:short)" | \
|
||||
grep -E "^v[0-9]+\.[0-9]+\.[0-9]+$" | sort -Vr | uniq | tr '\n' ',' | sed 's/,$//')
|
||||
grep -E "v[0-9]+\.[0-9]+\.[0-9]+$" | awk -F'[v]' '{print "v"$2}' | sort -Vr | uniq | tr '\n' ',' | sed 's/,$//')
|
||||
echo "VERSIONS=main,$VERSIONS" >> $GITHUB_ENV
|
||||
|
||||
- name: Install Hugo
|
||||
|
|
|
@ -7,47 +7,12 @@ title: "Release Notes"
|
|||
|
||||
Information about release notes of INFINI Console is provided here.
|
||||
|
||||
## Latest (In development)
|
||||
|
||||
### Breaking changes
|
||||
### Features
|
||||
- Support function-format parameters in Insight Data API
|
||||
- Support configuring multiple hosts when creating a cluster
|
||||
### Bug fix
|
||||
### Improvements
|
||||
|
||||
## 1.28.0 (2025-01-11)
|
||||
|
||||
### Breaking changes
|
||||
|
||||
### Features
|
||||
- Add allocation to activities if is cluster health change and changed to red.
|
||||
- Add index metrics for segment memory (norms, points, version map, fixed bit set).
|
||||
- Support querying top N metrics in the Insight Data Query API
|
||||
- Add insight metric CURD API for managing custom metrics
|
||||
- Add built-in metrics templates for common use cases
|
||||
### Bug fix
|
||||
- Fixed query thread pool metrics when cluster uuid is empty
|
||||
- Fixed unit tests
|
||||
## 1.27.0 (2024-12-13)
|
||||
|
||||
### Improvements
|
||||
- Optimize UI of agent list when its columns are overflow.
|
||||
- Add loading to each row in overview table.
|
||||
- Adapter metrics query with cluster id and cluster uuid
|
||||
- Optimize metric query bucket size (#59)
|
||||
- Add suggestion to chart in monitor if is no data because the time interval is less than the collection interval.
|
||||
- Check if the cluster version supports metric transport_outbound_comnections in monitor.
|
||||
- Set timeout to 10s by default in DatePicker's time settings.
|
||||
- Check if the cluster version supports metric transport_outbound_comnections in monitor.
|
||||
- Enhanced http_client to support customizable configurations.
|
||||
|
||||
|
||||
## 1.27.0 (2024-12-09)
|
||||
|
||||
### Improvements
|
||||
- Split monitoring metric requests to optimize monitoring metric query response speed.
|
||||
- The code is open source and the [Github repository](https://github.com/infinilabs/console) is used for development
|
||||
- Optimizing ES metric collecting
|
||||
- The code is open source and the Github repository is used for development
|
||||
- Split monitoring metric requests to optimize monitoring metric query response speed.
|
||||
- Added timeout setting to general time component
|
||||
- Cluster selection component adds registration and refresh feature
|
||||
- Adding metrics collection status
|
||||
|
|
|
@ -7,44 +7,11 @@ title: "版本历史"
|
|||
|
||||
这里是 INFINI Console 历史版本发布的相关说明。
|
||||
|
||||
## Latest (In development)
|
||||
|
||||
### Breaking changes
|
||||
### Features
|
||||
- Insight Data API 支持函数格式查询,方便拓展查询功能
|
||||
- 创建集群时支持配置多个主机地址,增强集群的高可用性
|
||||
### Bug fix
|
||||
### Improvements
|
||||
|
||||
## 1.28.0 (2025-01-11)
|
||||
|
||||
### Features
|
||||
- 在集群健康状态变为红色时,将分配活动记录到动态日志中。
|
||||
- 为索引增加段内存指标(包括 norms、points、version map、fixed bit set)。
|
||||
- 支持在 Insight 数据查询 API 中查询 Top N 指标。
|
||||
- 新增 Insight 指标 CURD API,用于管理自定义指标。
|
||||
- 添加多个常见用例的内置指标模板。
|
||||
|
||||
### Bug fix
|
||||
- 修复当集群 UUID 为空时查询线程池指标的问题。
|
||||
- 修复单元测试中的问题。
|
||||
|
||||
### Improvements
|
||||
- 优化 Agent 列表的 UI,当列数据溢出时改善显示效果。
|
||||
- 在概览表格的每一行添加加载动画。
|
||||
- 支持通过集群 ID 和集群 UUID 查询指标。
|
||||
- 优化指标查询的桶大小设置 (#59)。
|
||||
- 在监控图表中,如果时间间隔小于收集间隔导致无数据显示时,添加提示。
|
||||
- 检查监控中集群版本是否支持 metric transport_outbound_connections。
|
||||
- 将 DatePicker 的时间设置默认超时时间调整为 10 秒。
|
||||
- 检查监控中集群版本是否支持 metric transport_outbound_connections。
|
||||
- 增强 http_client,支持更多自定义配置选项。
|
||||
|
||||
## 1.27.0 (2024-12-13)
|
||||
|
||||
### Improvements
|
||||
|
||||
- 代码开源,统一采用 Github [仓库](https://github.com/infinilabs/console) 进行开发
|
||||
- 代码开源,统一采用 [Github 仓库](https://github.com/infinilabs/console) 进行开发
|
||||
- 指标采集优化,由原来的单一协程采集调整为每个注册的集群有单独的协程进行采集
|
||||
- 指标监控页面图表展示采用懒加载、单个图表独立加载,增强用户体验
|
||||
- 通用时间控件增加超时时间设置
|
||||
|
|
Loading…
Reference in New Issue