activeinsights 1.1.2 → 1.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +13 -6
- data/app/models/active_insights/request.rb +5 -5
- data/db/migrate/20241015142450_add_ip_address_to_requests.rb +7 -0
- data/lib/active_insights/version.rb +1 -1
- data/lib/generators/active_insights/update/update_generator.rb +7 -0
- data/lib/tasks/active_insights_tasks.rake +8 -0
- metadata +5 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 39be8c6402f757c5e3db80481b1275bdd0c221eb067fbaf0f274c418d598d72a
|
4
|
+
data.tar.gz: 2edea1bfb069a9015aa1d2612a96eb8db248a9b420d55c68c0022d008cb28c3c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d50aae6bb1cad6a11568a52883b3a66f0d3b0c8d5fedd716b7ebf0aeddb943ff33126eeb13e81a97175240ba9cd7ef82f584d204267af9352fc7b07bdc6f7744
|
7
|
+
data.tar.gz: 66f45dfa2400ed9622e06af1bf34c55876b8513c7f4fd56598ece347a9dff644d4b70f45efb035221ebd035938b3cff119cf941071ac4cbcfa5200c8e6562535
|
data/README.md
CHANGED
@@ -1,10 +1,12 @@
|
|
1
1
|
# ActiveInsights
|
2
2
|
|
3
|
-
One of the
|
4
|
-
a way to track response times. Unfortunately,
|
5
|
-
open source
|
3
|
+
One of the fundamental tools needed when taking your Rails app to production is
|
4
|
+
a way to track response times. Unfortunately, there aren't many free, easy,
|
5
|
+
open source ways to track them for small or medium apps. Skylight, Honeybadger,
|
6
6
|
Sentry, AppSignal, etc. are great, but they are are closed source and
|
7
7
|
there should be an easy open source alternative where you control the data.
|
8
|
+
With Rails 8's ethos of No PAAS, there should be a way for new apps to start out
|
9
|
+
with a basic error reporter and not be forced to pay a third party for one.
|
8
10
|
|
9
11
|
ActiveInsights hooks into the ActiveSupport [instrumention](https://guides.rubyonrails.org/active_support_instrumentation.html#)
|
10
12
|
baked directly into Rails. ActiveInsights tracks RPM, RPM per controller, and
|
@@ -34,13 +36,13 @@ Or install it yourself as:
|
|
34
36
|
$ gem install activeinsights
|
35
37
|
```
|
36
38
|
|
37
|
-
|
39
|
+
Run the installer and migrate:
|
38
40
|
```bash
|
39
|
-
bin/rails
|
41
|
+
bin/rails active_insights:install
|
40
42
|
bin/rails rails db:migrate
|
41
43
|
```
|
42
44
|
|
43
|
-
This
|
45
|
+
This will mount a route in your routes file to view the insights at `/insights`.
|
44
46
|
|
45
47
|
|
46
48
|
##### Config
|
@@ -58,6 +60,11 @@ You can supply an array of ignored endpoints
|
|
58
60
|
config.active_insights.ignored_endpoints = ["Rails::HealthController#show"]
|
59
61
|
```
|
60
62
|
|
63
|
+
If you are using Sprockets, add the ActiveInsights css file to manifest.js:
|
64
|
+
```javascript
|
65
|
+
//= link active_insights/application.css
|
66
|
+
```
|
67
|
+
|
61
68
|
## Development
|
62
69
|
|
63
70
|
After checking out the repo, run `bin/setup` to install dependencies. Then, run
|
@@ -3,11 +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,
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
6
|
+
create!(started_at: started, ip_address: payload[:request].remote_ip,
|
7
|
+
finished_at: finished, uuid: unique_id,
|
8
|
+
http_method: payload[:method],
|
9
|
+
**payload.slice(:controller, :action, :format, :status,
|
10
|
+
:view_runtime, :db_runtime, :path))
|
11
11
|
end
|
12
12
|
|
13
13
|
def percentage(others)
|
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.
|
4
|
+
version: 1.2.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-
|
11
|
+
date: 2024-10-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: chartkick
|
@@ -90,6 +90,7 @@ files:
|
|
90
90
|
- config/initializers/importmap.rb
|
91
91
|
- config/routes.rb
|
92
92
|
- db/migrate/20240111225806_create_active_insights_tables.rb
|
93
|
+
- db/migrate/20241015142450_add_ip_address_to_requests.rb
|
93
94
|
- lib/active_insights.rb
|
94
95
|
- lib/active_insights/engine.rb
|
95
96
|
- lib/active_insights/seeders/jobs.rb
|
@@ -97,6 +98,8 @@ files:
|
|
97
98
|
- lib/active_insights/version.rb
|
98
99
|
- lib/activeinsights.rb
|
99
100
|
- lib/generators/active_insights/install/install_generator.rb
|
101
|
+
- lib/generators/active_insights/update/update_generator.rb
|
102
|
+
- lib/tasks/active_insights_tasks.rake
|
100
103
|
homepage: https://github.com/npezza93/activeinsights
|
101
104
|
licenses:
|
102
105
|
- MIT
|