aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/active_support_instrumentation.textile
blob: 430549fba463af5dbc6215cade370a43c9504730 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
h2. Active Support Instrumentation

Active Support is a part of core Rails that provides Ruby language extensions, utilities and other things. One of the things it includes is an instrumentation API that can be used inside an application to measure certain actions that occur within Ruby code, such as that inside a Rails application or the framework itself. It is not limited to Rails, however. It can be used independently in other Ruby scripts if it is so desired.

In this guide, you will learn how to use the instrumentation API inside of ActiveSupport to measure events inside of Rails and other Ruby code. We cover:

* What instrumentation can provide
* The hooks inside the Rails framework for instrumentation
* Adding a subscriber to a hook
* Building a custom instrumentation implementation

endprologue.

h3. Introduction to instrumentation

The instrumentation API provided by ActiveSupport allows developers to provide hooks which other developers may hook into. There are several of these within the Rails framework, as described below in <TODO: link to section detailing each hook point>. With this API, developers can choose to be notified when certain events occur inside their application or another piece of Ruby code.

For example, there is a hook provided within Active Record that is called every time Active Record uses a SQL query on a database. This hook could be *subscribed* to, and used to track the number of queries during a certain action. There's another hook around the processing of an action of a controller. This could be used, for instance, to track how long a specific action has taken.

You are even able to create your own events inside your application which you can later subscribe to.

h3. Rails framework hooks

Within the Ruby on Rails framework, there are a number of hooks provided for common events. These are detailed below.

h3. ActionController

h4. write_fragment.action_controller

|_.Key         |_.Value|
|+:key+        |The complete key|

<ruby>
{
  :key => 'posts/1-dasboard-view'
}
</ruby>

h4. read_fragment.action_controller

|_.Key         |_.Value|
|+:key+        |The complete key|

<ruby>
{
  :key => 'posts/1-dasboard-view'
}
</ruby>

h4. expire_fragment.action_controller

|_.Key         |_.Value|
|+:key+        |The complete key|

<ruby>
{
  :key => 'posts/1-dasboard-view'
}
</ruby>

h4. exist_fragment?.action_controller

|_.Key         |_.Value|
|+:key+        |The complete key|

<ruby>
{
  :key => 'posts/1-dasboard-view'
}
</ruby>

h4. write_page.action_controller

|_.Key     |_.Value|
|+:path+   |The complete path|

<ruby>
{
  :path => '/users/1'
}
</ruby>

h4. expire_page.action_controller

|_.Key     |_.Value|
|+:path+   |The complete path|

<ruby>
{
  :path => '/users/1'
}
</ruby>

h4. start_processing.action_controller

|_.Key          |_.Value |
|+:controller+  |The controller name|
|+:action+      |The action|
|+:params+      |Hash of request parameters without any filtered parameter|
|+:format+      |html/js/json/xml etc|
|+:method+      |HTTP request verb|
|+:path+        |Request path|

<ruby>
{
  :controller => "PostsController",
  :action => "new",
  :params => { "action" => "new", "controller" => "posts" },
  :format => :html,
  :method => "GET",
  :path => "/posts/new"
}
</ruby>

h4. process_action.action_controller

|_.Key             |_.Value |
|+:controller+     |The controller name|
|+:action+         |The action|
|+:params+         |Hash of request parameters without any filtered parameter|
|+:format+         |html/js/json/xml etc|
|+:method+         |HTTP request verb|
|+:path+           |Request path|
|+:view_runtime+   |Amount spent in view in ms|

<ruby>
{
  :controller => "PostsController",
  :action => "index",
  :params => {"action" => "index", "controller" => "posts"},
  :format => :html,
  :method => "GET",
  :path => "/posts",
  :status => 200,
  :view_runtime => 46.848,
  :db_runtime => 0.157
}
</ruby>

h4. send_file.action_controller

|_.Key        |_.Value |
|+:path+      |Complete path to the file|

INFO. Additional keys may be added by the caller.

h4. send_data.action_controller

+ActionController+ does not had any specific information to the payload. All options are passed through to the payload.

h4. redirect_to.action_controller

|_.Key         |_.Value |
|+:status+     |HTTP response code|
|+:location+   |URL to redirect to|

<ruby>
{
  :status => 302,
  :location => "http://localhost:3000/posts/new"
}
</ruby>

h4. halted_callback.action_controller

|_.Key       |_.Value |
|+:filter+   |Filter that halted the action|

<ruby>
{
  :filter => ":halting_filter"
}
</ruby>

h3. ActionView

h4. render_template.action_view

|_.Key          |_.Value |
|+:identifier+  |Full path to template|
|+:layout+      |Applicable layout|

<ruby>
{
  :identifier => "/Users/adam/projects/notifications/app/views/posts/index.html.erb",
  :layout => "layouts/application"
}
</ruby>

h4. render_partial.action_view

|_.Key           |_.Value |
|+:identifier+   |Full path to template|

<ruby>
{
  :identifier => "/Users/adam/projects/notifications/app/views/posts/_form.html.erb",
}
</ruby>

h3. ActiveRecord

h4. sql.active_record

|_.Key          |_.Value |
|+:sql+         |SQL statement|
|+:name+        |Name of the operation|
|+:object_id+   |+self.object_id+|

INFO. The adapters will add their own data as well.

<ruby>
{
  :sql => "SELECT \"posts\".* FROM \"posts\" ",
  :name => "Post Load",
  :connection_id => 70307250813140,
  :binds => []
}
</ruby>

h4. identity.active_record

|_.Key            |_.Value |
|+:line+          |Primary Key of object in the identity map|
|+:name+          |Record's class|
|+:connection_id+ |+self.object_id+|

h3. ActionMailer

h4. receive.action_mailer

|_.Key          |_.Value|
|+:mailer+      |Name of the mailer class|
|+:message_id+  |ID of the message, generated by the Mail gem|
|+:subject+     |Subject of the mail|
|+:to+          |To address(es) of the mail|
|+:from+        |From address of the mail|
|+:bcc+         |BCC addresses of the mail|
|+:cc+          |CC addresses of the mail|
|+:date+        |Date of the mail|
|+:mail+        |The encoded form of the mail|

<ruby>
{
  :mailer => "Notification",
  :message_id => "4f5b5491f1774_181b23fc3d4434d38138e5@mba.local.mail",
  :subject => "Rails Guides",
  :to => ["users@rails.com", "ddh@rails.com"],
  :from => ["me@rails.com"],
  :date => Sat, 10 Mar 2012 14:18:09 +0100,
  :mail=> "..." # ommitted for beverity
}
</ruby>

h4. deliver.action_mailer

|_.Key          |_.Value|
|+:mailer+      |Name of the mailer class|
|+:message_id+  |ID of the message, generated by the Mail gem|
|+:subject+     |Subject of the mail|
|+:to+          |To address(es) of the mail|
|+:from+        |From address of the mail|
|+:bcc+         |BCC addresses of the mail|
|+:cc+          |CC addresses of the mail|
|+:date+        |Date of the mail|
|+:mail+        |The encoded form of the mail|

<ruby>
{
  :mailer => "Notification",
  :message_id => "4f5b5491f1774_181b23fc3d4434d38138e5@mba.local.mail",
  :subject => "Rails Guides",
  :to => ["users@rails.com", "ddh@rails.com"],
  :from => ["me@rails.com"],
  :date => Sat, 10 Mar 2012 14:18:09 +0100,
  :mail=> "..." # ommitted for beverity
}
</ruby>

h3. ActiveResource

h4. request.active_resource

|_.Key           |_.Value|
|+:method+       |HTTP method|
|+:request_uri+  |Complete URI|
|+:result+       |HTTP response object|

h3. ActiveSupport

h4. cache_read.active_support

|_.Key                |_.Value|
|+:key+               |Key used in the store|
|+:hit+               |If this read is a hit|
|+:super_operation+   |:fetch is added when a read is used with +#fetch+|

h4. cache_generate.active_support

This event is only used when +#fetch+ is called with a block.

|_.Key   |_.Value|
|+:key+  |Key used in the store|

INFO. Options passed to fetch will be merged with the payload when writing to the store

<ruby>
{
  :key => 'name-of-complicated-computation'
}
</ruby>


h4. cache_fetch_hit.active_support

This event is only used when +#fetch+ is called with a block.

|_.Key   |_.Value|
|+:key+  |Key used in the store|

INFO. Options passed to fetch will be merged with the payload.

<ruby>
{
  :key => 'name-of-complicated-computation'
}
</ruby>

h4. cache_write.active_support

|_.Key   |_.Value|
|+:key+  |Key used in the store|

INFO. Cache stores my add their own keys

<ruby>
{
  :key => 'name-of-complicated-computation'
}
</ruby>

h4. cache_delete.active_support

|_.Key   |_.Value|
|+:key+  |Key used in the store|

<ruby>
{
  :key => 'name-of-complicated-computation'
}
</ruby>

h4. cache_exist?.active_support

|_.Key   |_.Value|
|+:key+  |Key used in the store|

<ruby>
{
  :key => 'name-of-complicated-computation'
}
</ruby>

h3. Rails

h4. deprecation.rails

|_.Key           |_.Value|
|+:message+      |The deprecation warning|
|+:callstack+    |Where the deprecation came from|

h3. Subscribing to an event

Subscribing to an event is easy. Use +ActiveSupport::Notifications.subscribe+ with a block to
listen to any notification.

The block receives the following arguments:

# The name of the event
# Time when is started
# Time when it finished
# An unique ID for this event
# The payload (described in previous sections)

<ruby>
ActiveSupport::Notifications.subscribe "process_action.action_controller" do |name, started, finished, unique_id, data|
  # your own custom stuff
  Rails.logger.info "#{name} Received!"
end
</ruby>

Defining all those block arguments each time can be tedious. You can easily create an +ActiveSupport::Notifications::Event+
from block args like this:

<ruby>
ActiveSupport::Notifications.subscribe "process_action.action_controller" do |*args|
  event = ActiveSupport::Notification::Event.new args

  event.name      # => "process_action.action_controller"
  event.duration  # => 10 (in milliseconds)
  event.payload   # => { :extra => :information }

  Rails.logger.info "#{event} Received!"
end
</ruby>

Most times you only care about the data itself. Here is a shortuct to just get the data.

<ruby>
ActiveSupport::Notifications.subscribe "process_action.action_controller" do |*args|
  data = args.extract_options!
  data # { :extra => :information }
</ruby>

You may also subscribe to events matching a regular expresssion. This enables you to subscribe to
multiple events at once. Here's you could subscribe to everything from +ActionController+.

<ruby>
ActiveSupport::Notifications.subscribe /action_controller/ do |*args|
  # inspect all ActionController events
end
</ruby>

h3. Creating custom events

Adding your own events is easy as well. +ActiveSupport::Notifications+ will take care of
all the heavy lifting for you. Simply call +instrument+ with a +name+, +payload+ and a block.
The notification will be sent after the block returns. +ActiveSupport+ will generate the start and end times
as well as the unique ID. All data passed into the +insturment+ call will make it into the payload.

Here's an example:

<ruby>
ActiveSupport::Notifications.instrument "my.custom.event", :this => :data do
  # do your custom stuff here
end
</ruby>

Now you can listen to this event with:

<ruby>
ActiveSupport::Notifications.subscribe "my.custom.event" do |name, started, finished, unique_id, data|
  puts data.inspect # { :this => :data }
end
</ruby>

You should follow Rails conventions when defining your own events. The format is: +event.library+.
If you application is sending Tweets, you should create an event named +tweet.twitter+.