activeinsights 1.2.0 → 1.3.0

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
  SHA256:
3
- metadata.gz: 39be8c6402f757c5e3db80481b1275bdd0c221eb067fbaf0f274c418d598d72a
4
- data.tar.gz: 2edea1bfb069a9015aa1d2612a96eb8db248a9b420d55c68c0022d008cb28c3c
3
+ metadata.gz: ee74ccb0286c40e6d26ff5d8afc796accaf4941632e517e975eddf0fe362106c
4
+ data.tar.gz: 39ebc303db5774d2b8215065a8b524071bc20fa8b3261111b8ad01071301acd1
5
5
  SHA512:
6
- metadata.gz: d50aae6bb1cad6a11568a52883b3a66f0d3b0c8d5fedd716b7ebf0aeddb943ff33126eeb13e81a97175240ba9cd7ef82f584d204267af9352fc7b07bdc6f7744
7
- data.tar.gz: 66f45dfa2400ed9622e06af1bf34c55876b8513c7f4fd56598ece347a9dff644d4b70f45efb035221ebd035938b3cff119cf941071ac4cbcfa5200c8e6562535
6
+ metadata.gz: cbba0c03ad4a0a8c63be5c9aed3fc336b0389f86a28319c10efb75e946ec4d8994aec453bfd446f8d1b79268b070f2a784577f23ae9309969a105de894216e04
7
+ data.tar.gz: 3f7f01153b7f7c2560a8234178830b0c7fd22cc9b9d2cde366982c8de3a1ad37e1fc3cd12659c4cfae6300a47fde9fddb31ebc27a1ef7695701633c68dfcb291
@@ -3,9 +3,11 @@
3
3
  module ActiveInsights
4
4
  class Request < ::ActiveInsights::Record
5
5
  def self.setup(started, finished, unique_id, payload)
6
- create!(started_at: started, ip_address: payload[:request].remote_ip,
6
+ req = paylooad[:request]
7
+
8
+ create!(started_at: started, ip_address: req.remote_ip,
7
9
  finished_at: finished, uuid: unique_id,
8
- http_method: payload[:method],
10
+ http_method: payload[:method], user_agent: req.user_agent,
9
11
  **payload.slice(:controller, :action, :format, :status,
10
12
  :view_runtime, :db_runtime, :path))
11
13
  end
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ class AddUserAgentToRequests < ActiveRecord::Migration[7.2]
4
+ def change
5
+ add_column :active_insights_requests, :user_agent, :string
6
+ end
7
+ end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ActiveInsights
4
- VERSION = "1.2.0"
4
+ VERSION = "1.3.0"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: activeinsights
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.0
4
+ version: 1.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nick Pezza
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-10-15 00:00:00.000000000 Z
11
+ date: 2024-10-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: chartkick
@@ -91,6 +91,7 @@ files:
91
91
  - config/routes.rb
92
92
  - db/migrate/20240111225806_create_active_insights_tables.rb
93
93
  - db/migrate/20241015142450_add_ip_address_to_requests.rb
94
+ - db/migrate/20241016142157_add_user_agent_to_requests.rb
94
95
  - lib/active_insights.rb
95
96
  - lib/active_insights/engine.rb
96
97
  - lib/active_insights/seeders/jobs.rb