Compare commits
3 Commits
v1.29.0
...
fix_gw_age
Author | SHA1 | Date |
---|---|---|
|
5cc4ea9ef1 | |
|
a7ff1c6220 | |
|
9a9896c2f2 |
|
@ -1,22 +1,22 @@
|
|||
path.data: data
|
||||
path.logs: log
|
||||
|
||||
allow_multi_instance: true
|
||||
configs.auto_reload: false
|
||||
allow_multi_instance: false
|
||||
configs.auto_reload: true
|
||||
|
||||
entry:
|
||||
- name: my_es_entry
|
||||
- name: agent_es_entry
|
||||
enabled: true
|
||||
router: my_router
|
||||
router: agent_metrics_router
|
||||
max_concurrency: 200000
|
||||
network:
|
||||
binding: 0.0.0.0:8081
|
||||
# tls: #for mTLS connection with config servers
|
||||
# enabled: true
|
||||
binding: 0.0.0.0:8765
|
||||
tls: #for mTLS connection with config servers
|
||||
enabled: true
|
||||
# ca_file: /xxx/ca.crt
|
||||
# cert_file: /xxx/server.crt
|
||||
# key_file: /xxx/server.key
|
||||
# skip_insecure_verify: false
|
||||
skip_insecure_verify: false
|
||||
|
||||
flow:
|
||||
- name: deny_flow
|
||||
|
@ -28,7 +28,7 @@ flow:
|
|||
filter:
|
||||
- basic_auth:
|
||||
valid_users:
|
||||
ingest: n
|
||||
$[[SETUP_AGENT_USERNAME]]: $[[SETUP_AGENT_PASSWORD]]
|
||||
- rewrite_to_bulk:
|
||||
type_removed: false
|
||||
- bulk_request_mutate:
|
||||
|
@ -50,7 +50,7 @@ flow:
|
|||
fix_null_id: true
|
||||
|
||||
router:
|
||||
- name: my_router
|
||||
- name: agent_metrics_router
|
||||
default_flow: deny_flow
|
||||
rules:
|
||||
- method:
|
||||
|
@ -65,8 +65,8 @@ elasticsearch:
|
|||
- name: prod
|
||||
enabled: true
|
||||
basic_auth:
|
||||
username: ingest
|
||||
password: password
|
||||
username: $[[SETUP_AGENT_USERNAME]]
|
||||
password: $[[SETUP_AGENT_PASSWORD]]
|
||||
endpoints: $[[SETUP_ENDPOINTS]]
|
||||
|
||||
pipeline:
|
||||
|
|
|
@ -23,6 +23,7 @@ Information about release notes of INFINI Console is provided here.
|
|||
- Fixed Devtools `_sql` support for elasticsearch 6.x (#158)
|
||||
- Fixed audit log default sorting across pagination (#161)
|
||||
- Fixed mapping type conflict error (#164)
|
||||
- Fixed `Gateway` template config for mTLS(#166)
|
||||
|
||||
### Improvements
|
||||
- Update agent config with cluster name (#148)
|
||||
|
|
|
@ -23,6 +23,7 @@ title: "版本历史"
|
|||
- 修复开发工具 `_sql` 查询支撑 Elasticsearch 6.x 版本 (#158)
|
||||
- 修复审计日志默认排序翻页之后丢失的问题 (#161)
|
||||
- 修复 `Mapping` 冲突问题 (#161)
|
||||
- 修复配置文件模板中 `Gateway` mTLS 配置(#166)
|
||||
|
||||
### Improvements
|
||||
- 优化下发给 Agent 的配置,增加集群名称 (#148)
|
||||
|
|
Loading…
Reference in New Issue