azure_application_insights 0.5.8 → 0.5.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e6eba144cbee63217828c46782dbcdec502623717c7aa3d32641a6a621501e22
4
- data.tar.gz: 9116f96c46790b82636958dbc86a6a206b682a2dce05ff2375ec63469738e0a1
3
+ metadata.gz: 5a7555afe21ef34f4e9cf6066cee384256c0c0ef1f2b7b76dd8ff3bdac101e5a
4
+ data.tar.gz: 27a5d3504b4168ce2ca7d7847814fe80c7a962448192548f597af7d32beb608e
5
5
  SHA512:
6
- metadata.gz: 2fdf40dbf35b296ce7e2752d1ff7a20fc213f7716983f5ed9f9966a6ed534856418f2e5dc19918fc180c3a8e57838cbf39d09672ad092d1bdf8125a0de19b8e0
7
- data.tar.gz: 8def216324b877c8af1a346f80f710645d1485bcfdda2c76297a9d1f4ca7f51a012b709e1d1195b5eb5ba6520a17eb12a770d6a40087dda94e81574b7615e9dd
6
+ metadata.gz: 6fb8788acb041fa15f5ae229d43a71d60310e67ace2aa971dfbe06b7a4610cb6461b732d54cbc66ef7d52a92c7b89da85fe4e95e160c26437ad8576df3ad79a4
7
+ data.tar.gz: ae7cdbaf8927e32988b7c5e7e697aae62c052c6865d44f1122f5dee3bb953dc84ff494af695f6d92f0f4172126c6f00dbcd82f2a38c58919d06e8d854f58d681
data/README.md CHANGED
@@ -143,7 +143,7 @@ raise Exception, 'Boom!'
143
143
  require 'azure_application_insights'
144
144
  use AzureApplicationInsights::Rack::TrackRequest, '<YOUR INSTRUMENTATION KEY GOES HERE>', <buffer size>
145
145
  # For rails, suggest to set up this middleware in application.rb so that unhandled exceptions from controllers are also collected
146
- config.middleware.use 'AzureApplicationInsights::Rack::TrackRequest', '<YOUR INSTRUMENTATION KEY GOES HERE>', <buffer size>
146
+ config.middleware.use AzureApplicationInsights::Rack::TrackRequest, '<YOUR INSTRUMENTATION KEY GOES HERE>', <buffer size>
147
147
  ```
148
148
 
149
149
  #### Rerieving the Request-Id value from AzureApplicationInsights ####
@@ -124,8 +124,8 @@ module AzureApplicationInsights
124
124
  http_method: request.request_method,
125
125
  url: request.url,
126
126
  properties: {
127
- params: request.params.to_json,
128
- requestBody: request.body.to_json
127
+ params: request.params.to_json#,
128
+ # requestBody: request.body.to_json
129
129
  }
130
130
  }
131
131
  end
@@ -1,3 +1,3 @@
1
1
  module AzureApplicationInsights
2
- VERSION = '0.5.8'.freeze
2
+ VERSION = '0.5.11'.freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: azure_application_insights
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.8
4
+ version: 0.5.11
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel Blasina
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-11-10 00:00:00.000000000 Z
11
+ date: 2022-11-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake