# 动态重载配置

通过动态重载配置,可以给运行中的 eKuiper 更新如 debug,timezone 之类的参数,而不用重启应用。

# 重载 Basic 配置

PATCH http://localhost:9081/configs
1

请求示例:

{
  "debug": true,
  "consoleLog": true,
  "fileLog": true,
  "timezone": "UTC"
}
1
2
3
4
5
6

目前支持的动态可重载的参数有:

  • debug
  • consoleLog
  • fileLog
  • timezone