django-sonar
django-sonar copied to clipboard
Feature request: filtering requests
Hello.
Filtering requests by method, path and status (maybe date as well) would be really useful!
Thank you.
Hello.
This is a bit tricky to achieve because the data is collected in a structured way inside a json field. I'll look into it. ( for instance, on Laravel Telescope is not possible ;) )
It is stored separately as charfields in SonarRequest, right?
class SonarRequest(models.Model):
verb = models.CharField(max_length=255, verbose_name=_('Verb'))
path = models.CharField(max_length=255, verbose_name=_('Path'))
status = models.CharField(max_length=255, verbose_name=_('Status'))
Yes I will add a filter on path, verb and status in the next release. thanks