# encoding: utf-8 module OneApm module Agent module Datastores module MetricHelper ROLLUP_METRIC = "Datastore/all".freeze WEB_ROLLUP_METRIC = "Datastore/allWeb".freeze OTHER_ROLLUP_METRIC = "Datastore/allOther".freeze DEFAULT_PRODUCT_NAME = "ActiveRecord".freeze OTHER = "Other".freeze ALL = "all".freeze ALL_WEB = "allWeb".freeze ALL_OTHER = "allOther".freeze def self.statement_metric_for(product, collection, operation) "Datastore/statement/#{product}/#{collection}/#{operation}" end def self.operation_metric_for(product, operation) "Datastore/operation/#{product}/#{operation}" end def self.product_suffixed_rollup(product, suffix) "Datastore/#{product}/#{suffix}" end def self.product_rollup(product) "Datastore/#{product}/all" end def self.suffixed_rollup(suffix) "Datastore/#{suffix}" end def self.all_suffix if OneApm::Transaction.recording_web_transaction? ALL_WEB else ALL_OTHER end end def self.metrics_for(product, operation, collection = nil) if overrides = overridden_operation_and_collection operation, collection = overrides end suffix = all_suffix # Order of these metrics matters--the first metric in the list will # be treated as the scoped metric in a bunch of different cases. metrics = [ operation_metric_for(product, operation), product_suffixed_rollup(product, suffix), product_rollup(product), suffixed_rollup(suffix), ROLLUP_METRIC ] metrics.unshift statement_metric_for(product, collection, operation) if collection metrics end def self.metrics_from_sql(product, sql) operation = OneApm::Agent::Database.parse_operation_from_query(sql) || OTHER metrics_for(product, operation) end # Allow Transaction#with_database_metric_name to override our # collection and operation def self.overridden_operation_and_collection state = OneApm::TransactionState.tl_get txn = state.current_transaction txn ? txn.instrumentation_state[:datastore_override] : nil end end end end end