From 5aeca569c4df1276c3bead5113fdf6b2914447e0 Mon Sep 17 00:00:00 2001 From: Mishuk Adhikari Date: Wed, 17 Nov 2021 10:36:44 +0600 Subject: [PATCH] Add $entry->isSlowQuery() in documentation. As this PR has been merged I think it's better to add the method in documentation so it will be easier for developers to find it. https://github.com/laravel/telescope/pull/1146 --- telescope.md | 1 + 1 file changed, 1 insertion(+) diff --git a/telescope.md b/telescope.md index e471cd4939a..e28a77b5a39 100644 --- a/telescope.md +++ b/telescope.md @@ -183,6 +183,7 @@ You may filter the data that is recorded by Telescope via the `filter` closure t return $entry->isReportableException() || $entry->isFailedJob() || $entry->isScheduledTask() || + $entry->isSlowQuery() || $entry->hasMonitoredTag(); }); }