Skip to content

A Rails plugin to track database queries - Rails 3 compatible branch.

Notifications You must be signed in to change notification settings

diedthreetimes/query_stats

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

The Query Stats plugin tracks database queries.

Use the “queries” helper or controller method to access data on the queries. See the documentation on QueryStats::Holder for functionality.

You can easily display statistics in your page footer, such as:

Queries in Controller: <%= queries.count_with_label :controller %>
Queries in View:       <%= queries.count_with_label :view %>
Query Time:            <%= queries.runtime %>

QueryStats adds the number of queries to the log in the DB section:

Completed in 0.00642 (155 reqs/sec) | Rendering: 0.00228 (35%) | DB: 0.00247 (38%) 6 queries | 200 OK [http://test.host/]
  • X-QueryCount will be set to the number of queries

  • X-QueryRuntime will be set to the db runtime

Tests pass with:

  • Rails: 1.2.6, 2.0.2, 2.1.0

  • Adapters: sqlite3, mysql

  • Dan Manges

  • Guillaume Dufloux

Released under the MIT license.

About

A Rails plugin to track database queries - Rails 3 compatible branch.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Ruby 100.0%