On Wed, 20 Jun 2018 at 12:51, Janning Vygen <vygen(at)kicktipp(dot)de> wrote:
> But for analyzing usage patterns it would be very nice to have this
> combined with a sample_rate for logging.
>
> logging_sample_rate = n
>
> So each n-th statement will get logged regardless of execution time.
>
I think you would need to introduce a randomizing element if you wanted to
make it statistically valid. Logging every n'th statement could (depending
on your usage pattern) be catastrophically inaccurate.
Geoff