Actions
Workstation-config¶
- 配置信息、告警等redis缓存操作接口,以下接口的ip和端口是部署config模块对应的ip和端口,可在浏览器执行,可通过postman执行,可在linux服务器执行
#全量刷新redis
curl http://95.12.89.34:8414/global/refresh
# 删除redis所有key(慎用)
curl http://95.12.89.34:8414/delete/key?key=*
# 删除缓存中所有指标
curl http://95.12.89.34:8414/delete/kpi
# 删除缓存中所有资源
curl http://95.12.89.34:8414/delete/allResource
# 删除缓存中指定资源
curl http://95.12.89.34:8414/delete/resource?resId=249694A485FC5D3289C38986B4F8E888
# 删除快照缓存
curl http://95.12.89.34:8414/delete/lastcoll
# 删除告警缓存
curl http://95.12.89.34:8414/delete/currentAlarm
- 其他