Ubuntu
- Navigate to the agent config directory:
cd /opt/watchlog-agent sudo vim integration.json
- Locate the Redis object:
{ "service": "redis", "monitor": false, "host": "127.0.0.1", "port": "6379", "password": "" }
3. Change `"monitor"` from `false` to `true`:
```diff
- "monitor": false
+ "monitor": true
- Update
host
,port
, andpassword
as needed. - Save the file and reload the agent:
sudo pm2 reload watchlog-agent