When using Rails with ActiveRecord (and PostgreSQL), executing "simple" queries adds a name to them, e.g. calling
Article.all
# => Article Load (2.6ms) SELECT "articles".* FROM "articles"
names the query Article Load
. However, when executing slightly more complex queries, no name is being generated, as for example with
Article.group(:article_group_id).count
# => (1.2ms) SELECT COUNT(*) AS count_all, "articles"."article_group_id" AS articles_article_group_id FROM "articles" GROUP BY "articles"."article_group_id"
I can add a name if executing a custom query using the execute
method:
ActiveRecord::Base.connection.execute("SELECT * FROM articles", "My custom query name")
# => My custom query name (2.5ms) SELECT * FROM articles
But is there a way to add a custom name to a query built with the ActiveRecord-methods?
If you wonder why: The name is useful for all kinds of monitoring, e.g. when looking at slow queries in AppSignal.
Since you just want to custom query name for monitoring purpose, so i think you only need to change the
query name
in theActiveRecord::ConnectionAdapters#log
method, this method is the one log the sql query that be executed, include thequery name
.Here is my solution:
Demo
Note
In case you want to fix
query name
for specific query, you can use a hash with key is the whole the specific sql string (or hash of whole sql, such as the way Rails core cache query:query_signature = ActiveSupport::Digest.hexdigest(to_sql)
) and the value is thequery name
you want.