Sha256: 552fc018895d50c62572b567c0610e0b3626e3dcd017aed5242d5804e3405be0
Contents?: true
Size: 764 Bytes
Versions: 7
Compression:
Stored size: 764 Bytes
Contents
# encoding: utf-8 # This file is distributed under New Relic's license terms. # See https://github.com/newrelic/rpm/blob/master/LICENSE for complete details. module NewRelic autoload :MetricParser, 'new_relic/metric_parser' module MetricParser class ActiveMerchant < NewRelic::MetricParser::MetricParser def is_active_merchant?; true; end def is_active_merchant_gateway? segments[1] == 'gateway' end def is_active_merchant_operation? segments[1] == 'operation' end def gateway_name # ends in "Gateway" - trim that off segments[2][0..-8].titleize end def operation_name segments[2] end def short_name segments[2] end end end end
Version data entries
7 entries across 7 versions & 1 rubygems