Sha256: 2cc4233572096d45feb895f1067fed68cefd0de958ce5cffcbeae38704eb5b00
Contents?: true
Size: 277 Bytes
Versions: 4
Compression:
Stored size: 277 Bytes
Contents
module MicroserviceDSL module Instrument def self.instrument(name, title = nil, body = nil, &block) if defined?(Appsignal) Appsignal.instrument(name, title, body) do block.call end else block.call end end end end
Version data entries
4 entries across 4 versions & 1 rubygems