Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ityetti/database-profiler
Magento 2 Database Profiler
https://github.com/ityetti/database-profiler
Last synced: 9 days ago
JSON representation
Magento 2 Database Profiler
- Host: GitHub
- URL: https://github.com/ityetti/database-profiler
- Owner: ityetti
- Created: 2020-12-18T23:00:16.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2023-08-24T21:29:00.000Z (over 1 year ago)
- Last Synced: 2024-04-23T15:21:48.111Z (8 months ago)
- Language: PHP
- Homepage:
- Size: 264 KB
- Stars: 7
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
ITYetti Database Profiler
=====================Description
-----------
This extension shows sql queries and execution time in simple table view. You can see which of the SQL process take a lot of time and optimize your code.Compatibility
-------------
- Magento v2.4.1 (Should work on previous versions. Not tested)Installation Instructions
-------------------------
1. `composer require ityetti/database-profiler`
2. Open project config file `app/etc/env.php` and add profiler class to your configuration:
```
'db' => [
'connection' => [
'default' => [
'profiler' => [
'class' => '\Magento\Framework\DB\Profiler',
'enabled' => true
]
]
]
]
```
3. `bin/magento module:enable ITYetti_DatabaseProfiler`
4. `bin/magento setup:upgrade`
5. Go to Admin - Store - Configuration - ITYetti - Database Profiler
6. `Enable On Frontend` - Yes
6. `Enable On Backend` - Yes![ITYetti Database Profiler](https://github.com/ityetti/database-profiler/blob/main/database-profiler.png?raw=true)
Uninstallation
--------------
1. `composer remove ityetti/database-profiler`Support
-------
If you have any issues with this extension, open an issue on [GitHub](https://github.com/ityetti/database-profiler/issues).Contribution
------------
Any contribution is highly appreciated. The best way to contribute code is to open a [pull request on GitHub](https://github.com/ityetti/database-profiler/pulls).Developer
---------
Oleksii Borovyk
[https://github.com/ityetti](https://github.com/ityetti)License
-------
[OSL - Open Software Licence 3.0](http://opensource.org/licenses/osl-3.0.php)