## collectd
### Forwarding collectd metrics to another collectd instance
You need to add on destination collectd instance:
```
LoadPlugin network
SecurityLevel Encrypt
AuthFile "/etc/collectd/passwd"
```
In /etc/colllectd/passwd you need to add user and password for source collectd instance:
```
user:password
user2:password2
```
Source collectd instance:
```
LoadPlugin network
SecurityLevel Encrypt
Username "user"
Password "password"
```