Is it possible to check how many times a certain node with a certain unique name (property NOT a label) has been queried against? Thanks.
out of the box i don't think it's possible. However 2 idea might be
- using logging
** turn on logging
** add a monitor to the log file
** on write, parse out query and if a match to your criteria is found update your counter somewhere - using procedures
** make all calls go through your custom procedure and update counter as desired.