PHPackages                             ronasit/laravel-telescope-extension - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Debugging &amp; Profiling](/categories/debugging)
4. /
5. ronasit/laravel-telescope-extension

ActiveLibrary[Debugging &amp; Profiling](/categories/debugging)

ronasit/laravel-telescope-extension
===================================

Laravel library for Telescope

0.1.5(3mo ago)11.6k—0%[2 issues](https://github.com/RonasIT/laravel-telescope-extension/issues)[2 PRs](https://github.com/RonasIT/laravel-telescope-extension/pulls)MITPHPPHP ^8.4CI passing

Since Jan 22Pushed 1mo ago3 watchersCompare

[ Source](https://github.com/RonasIT/laravel-telescope-extension)[ Packagist](https://packagist.org/packages/ronasit/laravel-telescope-extension)[ RSS](/packages/ronasit-laravel-telescope-extension/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (10)Dependencies (9)Versions (22)Used By (0)

Laravel Telescope Extension
===========================

[](#laravel-telescope-extension)

[![Coverage Status](https://camo.githubusercontent.com/6527a4490d8f76846a5d04209b17347d58700a5837e9e3104a01678fd36f0461/68747470733a2f2f636f766572616c6c732e696f2f7265706f732f6769746875622f526f6e617349542f6c61726176656c2d74656c6573636f70652d657874656e73696f6e2f62616467652e7376673f6272616e63683d6d61696e)](https://coveralls.io/github/RonasIT/laravel-telescope-extension?branch=main)

The library extends the [Laravel Telescope's](https://github.com/laravel/telescope) package.

Installation
------------

[](#installation)

Install the package using the following command

```
composer require ronasit/laravel-telescope-extension
```

Publish the package configuration:

```
php artisan vendor:publish --provider=RonasIT\\TelescopeExtension\\TelescopeExtensionServiceProvider
```

That's it!

Features
--------

[](#features)

### 🔒 Restricting Access by IP in the Production environment

[](#-restricting-access-by-ip-in-the-production-environment)

Package allows to restrict access to the Telescope only in the `production` environment using an IP whitelist.

Modify the `allowed_ips` config for this.

Empty config value will allow to have access from **any** IP address.

### 🧹 Updated prune command

[](#-updated-prune-command)

Manually call the console command `telescope:prune` with your options or specify it into [schedule](https://laravel.com/docs/12.x/scheduling#scheduling-artisan-commands). For example:

```
php artisan telescope:prune --set-hours=request:240,query:24,unresolved_exception:480 --hours=100
```

The explanation: remove all records with entry type `request` older than 240 hours, with entry type `query` older than 24 hours, and entry type `unresolved-exception` older than 480 hours. Also, remove records of all other entry types older than 100 hours.

Command's options have the following formats:

OptionFormatDescription--set-hours\[entry-type\]:\[hours\],\[entry-type\]:\[hours\]...List of rules for specified entry types--hours\[hours\]Rule for all other entry typesHere is the list of possible `entry-type` values:

Entry Typebatchcachedumpeventexceptionjoblogmailmodelnotificationqueryredisrequestschedulegateviewunresolved\_exceptionresolved\_exceptioncompleted\_job### 🧩 Store content in JSON field

[](#-store-content-in-json-field)

The content field in the `telescope_entries` table now has the `jsonb` type which makes it easier to work with using the database management system's tools.

### 🔍 Production Filter

[](#-production-filter)

Feel free to use the predefined telescope filter for the `production` environment. It'll collect next entries:

• Exceptions

• Incoming HTTP requests with the status &gt;= `400`

• Outgoing HTTP requests with the status &gt;= `400`

• Failed jobs

• Slow DB queries

• Scheduled tasks

To enable the filter just use it in your own `TelescopeServiceProvider`

```
Telescope::filter(call_user_func(new \RonasIT\TelescopeExtension\Filters\ProductionFilter));
```

### 👀 Extended Request Watcher

[](#-extended-request-watcher)

The extended Request watcher provides new configurable logic.

#### 🙈 Ignoring requests by response message

[](#-ignoring-requests-by-response-message)

Watcher will ignore incoming HTTP requests if the `message` field in the response is equal to one of the ignorable messages.

Just add the full message to the `ignore_error_messages` config.

#### 🙈 Ignoring requests by path

[](#-ignoring-requests-by-path)

Works the same as the `ignore` config of the CommandWatcher. The watcher will skip incoming HTTP requests if they are made to one of the ignorable paths.

Use the `ignore_paths` config for this.

The main difference between this config and the global telescope `ignore_paths` config is that the request watcher's config will ignore only incoming HTTP requests and will still store all other entries related to the request (such as queries, jobs, exceptions, etc.)

###  Health Score

42

—

FairBetter than 90% of packages

Maintenance66

Regular maintenance activity

Popularity21

Limited adoption so far

Community16

Small or concentrated contributor base

Maturity55

Maturing project, gaining track record

 Bus Factor2

2 contributors hold 50%+ of commits

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~26 days

Recently: every ~39 days

Total

15

Last Release

106d ago

PHP version history (2 changes)0.0.1-betaPHP ^8.1

0.1PHP ^8.4

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/1585993?v=4)[Evgeny Leonov](/maintainers/eleonov)[@eleonov](https://github.com/eleonov)

![](https://avatars.githubusercontent.com/u/129854316?v=4)[DPankratov](/maintainers/DPankratov)[@dpankratov](https://github.com/dpankratov)

---

Top Contributors

[![DenTray](https://avatars.githubusercontent.com/u/9486872?v=4)](https://github.com/DenTray "DenTray (62 commits)")[![pirs1337](https://avatars.githubusercontent.com/u/98943794?v=4)](https://github.com/pirs1337 "pirs1337 (30 commits)")[![AZabolotnikov](https://avatars.githubusercontent.com/u/110885041?v=4)](https://github.com/AZabolotnikov "AZabolotnikov (30 commits)")[![artengin](https://avatars.githubusercontent.com/u/152782500?v=4)](https://github.com/artengin "artengin (28 commits)")[![RGO230](https://avatars.githubusercontent.com/u/76399317?v=4)](https://github.com/RGO230 "RGO230 (11 commits)")[![Goodmain](https://avatars.githubusercontent.com/u/1735581?v=4)](https://github.com/Goodmain "Goodmain (9 commits)")[![NikitaYakovlev](https://avatars.githubusercontent.com/u/36948499?v=4)](https://github.com/NikitaYakovlev "NikitaYakovlev (5 commits)")

---

Tags

laraveltelescope

###  Code Quality

TestsPHPUnit

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/ronasit-laravel-telescope-extension/health.svg)

```
[![Health](https://phpackages.com/badges/ronasit-laravel-telescope-extension/health.svg)](https://phpackages.com/packages/ronasit-laravel-telescope-extension)
```

###  Alternatives

[fruitcake/laravel-telescope-toolbar

Toolbar for Laravel Telescope based on Symfony Web Profiler

8041.6M3](/packages/fruitcake-laravel-telescope-toolbar)[laracraft-tech/laravel-xhprof

Easy XHProf setup to profile your laravel application!

235321.4k](/packages/laracraft-tech-laravel-xhprof)[mad-web/nova-telescope-link

Smart Link for Laravel Nova to Telescope Debug Assistant.

38195.2k](/packages/mad-web-nova-telescope-link)[muhammadhuzaifa/telescope-guzzle-watcher

Telescope Guzzle Watcher provide a custom watcher for intercepting http requests made via guzzlehttp/guzzle php library. The package uses the on\_stats request option for extracting the request/response data. The watcher intercept and log the request into the Laravel Telescope HTTP Client Watcher.

98239.8k1](/packages/muhammadhuzaifa-telescope-guzzle-watcher)[bavix/laravel-xhprof

Quick profiling of your code for Laravel

22156.6k](/packages/bavix-laravel-xhprof)[daylerees/anbu

The Anbu profiler for Laravel 4.

3054.9k](/packages/daylerees-anbu)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
