Socket
Book a DemoInstallSign in
Socket

query_tracker

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

query_tracker

0.1.2
bundlerRubygems
Version published
Maintainers
1
Created
Source

QueryTracker

(DEPRECATED use active-record-query-count instead) QueryTracker is a Ruby gem designed to help you track and analyze SQL queries executed by your ActiveRecord models. By subscribing to ActiveSupport notifications, it provides detailed insights into the queries being run, including the tables involved and the locations in your code where the queries are generated. There are three things this gem allows you to do

  • You can compare two codes to view the difference in SQL counts on locations with a graph or a table.
  • You can view an overview of the SQL that a code does in a graph, a table or in the console.
  • (In progress) You can see an overview of the current request on a controller action

Installation

Add this line to your application's Gemfile:

gem 'query_tracker'

And then execute:

bundle install

Or install it yourself as:

gem install query_tracker

Usage

There are four ways of using this gem:

  • With a block of code
require 'query_tracker'
QueryTracker.start_with_block(printer: :html) do
    # your code goes here
end

this will open up a html table with the SQL stats of your code

  • Starting recording manually
require 'query_tracker'

QueryTracker.start_recording
# your code goes here
QueryTracker.end_recording(printer: :html)
  • Comparing two blocks of code (only available for html printer)
require 'query_tracker'
QueryTracker.compare do |bench|
    bench.code('script1') do
    end
    bench.code('script2') do
    end
    bench.compare!
end

this will open up a graph comparing the quantity of SQL of the two codes

  • (In progress) Enabling a middleware to see an overview of the current request SQL's in Rack Application. On config/development.rb or the initializer of the application.
  config.after_initialize do
    QueryTracker.configure do |configuration|
      configuration.enable_middleware = true
    end
  end

Printing options

There are two ways of displaying the collected queries data, :console and :html, to select one pass the printer argument to start_with_block o end_recording methods.

If you use html with WSL enviroment, you need to set on your enviroments variables the WSL_DISTRIBUTION that you are using, so the dependency Launchy work as expected.

Configuration options

When visualizing the html table or the console output, tables with less than ignore_table_count will not be shown. Also, the ammount of locations to show is given by max_locations_per_table

config.after_initialize do
    QueryTracker.configure do |configuration|
      configuration.ignore_table_count = 1
      configuration.max_locations_per_table = 4
    end
  end
end

Examples of visualization

  • Console output Console output
  • HTML output HTML output
  • Bar chart output Bar chart output

Development

After checking out the repo, run bin/setup to install dependencies. Then, run rake test to run the tests.

To install this gem onto your local machine, run bundle exec rake install. To release a new version, update the version number in version.rb, and then run bundle exec rake release, which will create a git tag for the version, push git commits and the created tag, and push the .gem file to rubygems.org.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/query_tracker. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the code of conduct.

License

The gem is available as open source under the terms of the MIT License.

Code of Conduct

Everyone interacting in the QueryTracker project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.

FAQs

Package last updated on 11 Jul 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.