npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

loginspect

v1.0.6

Published

Command line tool used to analyze MySql log files (including percona and MariaDB)

Downloads

15

Readme

loginspect :mag:

Command line tool used to analyze MySql log files (including Percona and MariaDB)

Install

  1. Install node (version >= 4.1.1)
  • Windows or Mac: download from nodejs.org
  • Mac (homebrew): $ brew update ; brew install node ; brew link --override node. Call upgrade instead of install if you already have an older verison of node installed.
  • Linux: apt-get
  1. Install loginspect via npm
  • $ npm install -g loginspect

Usage

You can inspect any sql log file that has entries formatted the following way:

# Query_time: %SECONDS%  Lock_time: %NUMBER% Rows_sent: %NUMBER%  Rows_examined: %NUMBER%
use %TABLE%;
SET timestamp=%NUMBER%;
%SQL_STATEMENT%;

In a future version you will be able to define your own log format.

Report summary

Get a report containing the following:

  • Start and end date of the report
  • The total amount of slow queries and average slow queries per day
  • Top list with the ten slowest queries found (add -c 50 to get the 50 slowest queries)
  • Top list with most frequent normalized queries and their average execution time
$ loginspect -l /var/log/mysql/slow.log

From:           Fri 09, Sep 2011
To:             Tue 05, Jan 2016
Entries:        140789  (2 unknown entries)
Average:        89.1 entries per day
Execution time: 17 seconds

 SLOWEST QUERIES:
┌────┬──────────────────┬────────────────────────────────────────────────────┬──────────┐
│ #  │ Date             │ SQL                                                │ Time     │
├────┼──────────────────┼────────────────────────────────────────────────────┼──────────┤
│ 1  │ Tue 03, Dec 2013 │ SELECT * FROM applies WHERE name LIKE `%antwerp%`  │ 16 hours │
├────┼──────────────────┼────────────────────────────────────────────────────┼──────────┤
│ 2  │ Wed 18, Sep 2013 │ select cs.id, cu.id AS customerId, cu              │ 12 hours │
│    │                  │ .companyName, cu.ssn, c.ssn cus                    │          │
│    │                  │ tomerSsn, s.service, cu.balance, cs.service        │          │
│    │                  │ ... (run -q 2 to view entire SQL statement)        │          │
├────┼──────────────────┼────────────────────────────────────────────────────┼──────────┤
│ 3  │ Mon 05, May 2014 │ select cs.id, cu.id AS customerId, cu              │ 6 hours  │
│    │                  │ eId, se.name as serviceName, comp.name as companyN │          │
│    │                  │ ame, comp.orgNr as orgNr,cu.name as sellerName,    │          │
│    │                  │ ... (run -q 3 to view entire SQL statement)        │          │
├────┼──────────────────┼────────────────────────────────────────────────────┼──────────┤


 NORMALIZED QUERIES:
┌──────────────────────────────────┬────────────┬──────────────┐
│ ID                               │ Executions │ Average time │
├──────────────────────────────────┼────────────┼──────────────┤
│ 45f60cd9e6f35ccf6a3f61b96b5d99eb │ 15082      │ 2 minutes    │
├──────────────────────────────────┼────────────┼──────────────┤
│ d542e82e23f71354ff542ab27676b766 │ 9262       │ 3 minutes    │
├──────────────────────────────────┼────────────┼──────────────┤
│ 3ae4bb208afa5627c303dd9f7b6e6257 │ 8627       │ 2 minutes    │
├──────────────────────────────────┼────────────┼──────────────┤
│ 4fdb7c80840f59eac83c2ca31d8d0a62 │ 8626       │ 1 minute     │
├──────────────────────────────────┼────────────┼──────────────┤
...
Showing 30 of 2053 normalized queries (use "-n [ID]" to inspect a specific normalized query)

Report summary for a specified date

# Get a report summary of all slow queries since first jan 2016
$ loginspect -l /var/log/mysql/slow.log -f 2016-01-01

# Get a report summary of all slow queries during 2015
$ loginspect -l /var/log/mysql/slow.log -f 2015-01-01 -t 2015-12-31

Export data

By adding the argument -v json the console program will output the result as valid json.

Bar chart

By adding the argument -v chart you will get a bar chart displaying the number of slow queries per day

Get a larger top list of slow queries

You can increase the size of the top list of slow queries by using the argument -c [NUMBER]

Inspecting normalized queries

The normalization of queries turns a statement like SELECT col FROM table WHERE x=1 AND y=0 into SELECT ? FROM table WHERE x=? AND y=?. This can be really useful when trying to find which type of statements causing you most trouble.

When generating a report you will get a list of the most frequent normalized queries.

$ loginspect -f 2015-12-00 -t 2015-12-31
...

NORMALIZED QUERIES:
| ID                                | Executions    | Avg time  |
| --------------------------------- |:-------------:| ---------:|
| 4dd91307399ff040a579b83cb9cdd798  |  921          | 2 minutes |
| m3l91307399ff040am31283cb9cdlmq1  |  701          | 22 sec    |
| l32oe307399ff040ame2l83cb9cd4mp0  |  645          | 1 minute  |
...

To view the details of a normalized query, such as the normalized sql and an example statement, you use the flag -n.

$ loginspect -f 2015-12-00 -t 2015-12-31 -n m3l91307399ff040am31283cb9cdlmq1
Average time: 22 seconds
Executions: 645

NORMALIZED QUERY:
SELECT ? FROM table WHERE ? IN (SELECT ? FROM other_table WHERE x=?)

EXAMPLE:
SELECT id, name FROM table WHERE name IN (SELECT name FROM other_table WHERE x=321)

Troubleshooting

The report summary will give you information about how many log entries that couldn't become parsed. Add the flag -u to get hold of the raw data of these log entries.