Agent configuration filter does not provide access to node object - because it is just a request from certain IP and not necessarily matches already known node (although probably it will be good idea to implement such lookup). However, you can implement such lookup yourself, for example (I assume version 5.x):
Best regards,
Victor
Code Select
node = FindNodeByIPAddress($1);
return node?.name?.startsWith('db');
This script will return true if requested IP address corresponds to existing node and name of that node starts with "db".Best regards,
Victor