Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sryze/mysql-logger
Query logging plugin for MySQL/MariaDB :dolphin: server
https://github.com/sryze/mysql-logger
c mysql plugin vanilla-js websockets
Last synced: 8 days ago
JSON representation
Query logging plugin for MySQL/MariaDB :dolphin: server
- Host: GitHub
- URL: https://github.com/sryze/mysql-logger
- Owner: sryze
- License: mit
- Created: 2019-04-20T17:59:10.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-12-21T01:40:13.000Z (about 1 year ago)
- Last Synced: 2024-11-09T05:09:48.955Z (2 months ago)
- Topics: c, mysql, plugin, vanilla-js, websockets
- Language: C
- Homepage:
- Size: 287 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
MySQL Logger
============[![Build Status](https://travis-ci.com/sryze/mysql-logger.svg?branch=master)](https://travis-ci.com/sryze/mysql-logger)
MySQL Logger is a server-side plugin for MySQL/MariaDB that allows you to see
what SQL queries are executed by your server in real time inside a web browser.**PLEASE DO NOT USE IN PRODUCTION**
![Screenshot](screenshot.png)
Installation
------------1. Build with CMake
2. Copy logger.so/.dll to the plugins directory of your MySQL/MariaDB server
3. Register the plugin:```sql
install plugin logger soname 'logger.so'
```4. Restart the server and connect to http://yourserver:13306
License
-------MIT license. See [LICENSE.txt](LICENSE.txt) for details.