Doppar Insight is a request profiler for debugging, performance analysis, and traffic inspection. It gives you a clean in-browser toolbar for the current request, and it also keeps a recent request history so you can compare status codes, response times, errors, and route activity across multiple requests.
Insight is useful when you want to inspect SQL queries, cache usage, authentication state, request and response payloads, session data, logs, or performance timing without leaving the page you are working on. It is designed for day-to-day development, but it is especially helpful when you need to trace slow endpoints or understand why a route is returning 4xx or 5xx responses.
|
|
|
|
|
|
Doppar Insight is primarily a development and diagnostics tool. It can capture sensitive request data, exception details, session state, logs, query information, and recent traffic history, so it should not be left enabled for normal public production traffic.
If you need to use Insight on a live server, treat it as a temporary internal debugging tool:
- keep it disabled by default
- enable it only for short troubleshooting windows
- restrict access to trusted internal or VPN IP addresses only
- avoid exposing the toolbar and history endpoints to public users
A safer production-style configuration looks like this:
return [
'enabled' => false,
'allow_ips' => ['127.0.0.1', '::1'],
'retention_days' => 1,
];Thank you for considering contributing to the Doppar framework! The contribution guide can be found in the Doppar documentation.
In order to ensure that the Doppar community is welcoming to all, please review and abide by the Code of Conduct.
Please review our security policy on how to report security vulnerabilities.
The Doppar framework is open-sourced software licensed under the MIT license.





