grape-appsignal 0.0.3 → 0.0.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f311666b0bb23c686df9aaf2cb0d02d93779cc71
4
- data.tar.gz: 8f8f3a49a22d73af5a76cc22dcbbf225dfd06145
3
+ metadata.gz: 7136d04699d93c961004b7ad5471ae7fb4b24313
4
+ data.tar.gz: 49a911215e0643c5d45a5574db2d02ff5e682b43
5
5
  SHA512:
6
- metadata.gz: bfdcef06a17deab910a475484da3087b9a4c4eee6c69a875fc6dd9c78aeca6f1c1e1e2ac0abe2eb91bac9b93bae9e6f0899706f7a7b39b8b8fb23e7f16346eef
7
- data.tar.gz: d607c876afd687d2f0c5f256031ab92d08214364389caa97e3296087a1a4a84943f489a5d685d9ca3e4817ea3ac59441dc67cc6f9ed99e13bcb2ff45314c9a65
6
+ metadata.gz: 1dfd6d09b56cdb7601d92d180e6233ff19f7f7c7f179b16be159bcf406ea0c52859601c5348452662ed76d3c88e363d4edfc83d82b9c3e254d63efdc17cd5f4f
7
+ data.tar.gz: 9febdfd2143b747dc731e7134fa4f369776bc2b8c9e8742b48fee34e9f6a130cf19cc02d98f453d76a9bcf47d16fddb92a66e608ac8e4693c67358442e586222
@@ -12,7 +12,8 @@ module Appsignal
12
12
  req = ::Rack::Request.new(env)
13
13
  request_path = env['api.endpoint'].routes.first.route_path[1..-1].gsub(/\(\.:format\)\z/, "")
14
14
  metric_name = "process_action.grape"
15
- ActiveSupport::Notifications.instrument(metric_name, { method: req.request_method, path: request_path } ) do |payload|
15
+ action = "#{req.request_method}::#{request_path}"
16
+ ActiveSupport::Notifications.instrument(metric_name, { method: req.request_method, path: request_path, action: action } ) do |payload|
16
17
  @app.call(env)
17
18
  end
18
19
  end
@@ -1,5 +1,5 @@
1
1
  module Appsignal
2
2
  module Grape
3
- VERSION = "0.0.3"
3
+ VERSION = "0.0.4"
4
4
  end
5
5
  end
@@ -26,7 +26,7 @@ describe Appsignal::Grape::Middleware do
26
26
  end
27
27
 
28
28
  it do
29
- should == { method: "GET" , path: "hello/:name"}
29
+ should == { method: "GET" , path: "hello/:name", action: "GET::hello/:name"}
30
30
  end
31
31
 
32
32
  context "verify the api request" do
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: grape-appsignal
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mark Madsen