I am going to start developing a logging system for future implementation in the current PHP application to get download and usage statistics from the MYSQL database.
Then the statistics will be used to obtain information about database calls per second, query time, etc.
Of course, this will only be used when the application is in the testing phase, as it will certainly cause a bit of extra workload.
However, my biggest question now is if I should use MYSQL to register queries or for the file system. I suppose it would be a headache to create something that would allow you to write notes from multiple places when using the file system to process logs?
How do you do this?
source
share