dnj/laravel-error-tracker-server is a Laravel package.
It currently has 1 GitHub stars and 78 downloads on Packagist (latest version v1.0.1).
Install it with composer require dnj/laravel-error-tracker-server.
Discover more Laravel packages by dnj
or browse all Laravel packages to compare alternatives.
Last updated
This package is specifically built for laravel error tracking.
README.md (badges included)LICENSEcomposer.jsonphpunit.xml.gitignore.php-cs-fixer.phpRequire this package with composer.
composer require dnj/laravel-error-tracker-server
Laravel uses Package Auto-Discovery, so doesn't require you to manually add the ServiceProvider.
php artisan vendor:publish --provider="dnj\ErrorTracker\Laravel\Server\ServiceProvider"
<?php
return [
// Define your user model class for connect entities to users.
'user_model' => \dnj\AAA\Models\User::class,
'routes' => [
'enable' => true,
'prefix' => 'log', // example: log, device, etc ... ,
],
];
ℹ️ Note
User activity logs are disabled by default, if you want to save them set
$userActivityLogto true.
Example :
use dnj\ErrorTracker\Contracts\IAppManager;
use dnj\ErrorTracker\Contracts\IDeviceManager;
use dnj\ErrorTracker\Contracts\ILogManager;
use dnj\ErrorTracker\Contracts\LogLevel;
$appManager = app(IAppManager::class);
$app = $appManager->store(
title: 'Android mobile app',
owner: 1,
meta: ['key' => 'value']),
userActivityLog: false,
);
$deviceManager = app(IDeviceManager::class);
$device = $deviceManager->store(
title: 'Nokia mobile',
owner: 1,
meta: ['serialNo' => 44514526985]),
userActivityLog: false,
);
$logManager = app(ILogManager::class);
$log = $logManager->store(
app: $app,
device: $device,
level: LogLevel::INFO,
message: 'App just installed',
data: ['version' => "1.0.0"]
);
use dnj\ErrorTracker\Contracts\IAppManager;
$appManager = app(IAppManager::class);
$apps = $appManager->search(
filters: [
'title' => 'mobile app'
'owner' => 2
],
);
use dnj\ErrorTracker\Contracts\IAppManager;
$appManager = app(IAppManager::class);
$app = $appManager->store(
title: 'Android mobile app',
owner: 1,
meta: ['key' => 'value']),
userActivityLog: false,
);
use dnj\ErrorTracker\Contracts\IAppManager;
$appManager = app(IAppManager::class);
$app = $appManager->update(
app: 1,
changes: [
'title' => 'new title',
'owner' => 2,
],
userActivityLog: true,
);
use dnj\ErrorTracker\Contracts\IAppManager;
$appManager = app(IAppManager::class);
$appManager->destroy(
log: 1,
userActivityLog: false,
);
use dnj\ErrorTracker\Contracts\IDeviceManager;
$deviceManager = app(IDeviceManager::class);
$devices = $deviceManager->search(
filters: [
'title' => 'Nokia Mobile'
'owner' => 2
],
);
use dnj\ErrorTracker\Contracts\IDeviceManager;
$deviceManager = app(IDeviceManager::class);
$device = $deviceManager->store(
title: 'Nokia mobile',
owner: 1,
meta: ['key' => 'value']),
userActivityLog: false,
);
use dnj\ErrorTracker\Contracts\IDeviceManager;
$deviceManager = app(IDeviceManager::class);
$device = $deviceManager->update(
device: 3,
changes: [
'title' => 'My Nokia Mobile',
'owner' => 2,
'meta' => ['serialNo' => 55245252]
],
userActivityLog: true,
);
use dnj\ErrorTracker\Contracts\IDeviceManager;
$deviceManager = app(IDeviceManager::class);
$deviceManager->destroy(
log: 3,
userActivityLog: false,
);
use dnj\ErrorTracker\Contracts\ILogManager;
use dnj\ErrorTracker\Contracts\LogLevel;
$logManager = app(ILogManager::class);
$logs = $logManager->search(
filters: [
'apps' => [1,2],
'devices' => [1],
'levels' => [LogLevel::DEBUG],
'message' => 'important flag',
'unread' => true,
]
);
use dnj\ErrorTracker\Contracts\ILogManager;
use dnj\ErrorTracker\Contracts\LogLevel;
$logManager = app(ILogManager::class);
$log = $logManager->store(
app: 1,
device: 1,
level: LogLevel::INFO,
message: 'App has been started',
);
use dnj\ErrorTracker\Contracts\ILogManager;
use dnj\ErrorTracker\Contracts\LogLevel;
$logManager = app(ILogManager::class);
$log = $logManager->markAsRead(
log: 44,
user: 3
);
use dnj\ErrorTracker\Contracts\ILogManager;
use dnj\ErrorTracker\Contracts\LogLevel;
$logManager = app(ILogManager::class);
$log = $logManager->markAsUnread(
log: 44,
);
use dnj\ErrorTracker\Contracts\ILogManager;
$logManager = app(ILogManager::class);
$logManager->destroy(
log: 44,
userActivityLog: true,
);
You can run unit tests with PHP Unit:
./vendor/bin/phpunit
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!
git checkout -b feature/AmazingFeature)git commit -m 'Add some AmazingFeature')git push origin feature/AmazingFeature)If you discover any security-related issues, please email [email protected] instead of using the issue tracker.
The MIT License (MIT). Please see License File for more information.