You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sentry provides a feature called Breadcrumbs.
According to the mention on the official site, this feature is intended for server-side use in the following ways
Sentry server-side SDKs, including Python and PHP, provide breadcrumbs for logging messages, network requests, database queries, and more. https://sentry.io/features/breadcrumbs/
If this plugin can also retain "what was happening" with these features, the development and maintenance of CakePHP applications will be even more pleasant.
Instead of "logging events", If the plugin provides a "log engine that handles Sentry breadcrumbs" that corresponds to CakePHP's original logging mechanism, we can handle in an intuitive way INFO logs and QUERY logs which we need?
Sentry's Breadcrumb can have some fields as below.
$this->type = $type;
$this->level = $level;
$this->category = $category;
$this->message = $message;
$this->metadata = $metadata;
$this->timestamp = microtime(true);
If I implement this as a log engine rather than a method of subscribing to events, can I extract the information corresponding to the following fields?
Some of these may include name, subject, etc. if it is an Event, there may be room to utilize them.
Sentry provides a feature called Breadcrumbs.
According to the mention on the official site, this feature is intended for server-side use in the following ways
If this plugin can also retain "what was happening" with these features, the development and maintenance of CakePHP applications will be even more pleasant.
In sentry-laravel, The following PR is the initial version implemented.
https://github.com/getsentry/sentry-laravel/pull/31/files
Would it be possible to perform a similar process? I think it's worth looking into.
The text was updated successfully, but these errors were encountered: