diff options
author | Paul Nikitochkin <paul.nikitochkin@gmail.com> | 2013-11-11 19:56:02 +0200 |
---|---|---|
committer | Paul Nikitochkin <paul.nikitochkin@gmail.com> | 2013-11-16 21:47:08 +0200 |
commit | 251923c7a85a303d74b41255c39d8928ffa109ea (patch) | |
tree | da3afd05f6f68737c914dcccd4486e3cd2524004 /guides/source | |
parent | 93e752cfae4564eff9827de7ee16a24b1f832c91 (diff) | |
download | rails-251923c7a85a303d74b41255c39d8928ffa109ea.tar.gz rails-251923c7a85a303d74b41255c39d8928ffa109ea.tar.bz2 rails-251923c7a85a303d74b41255c39d8928ffa109ea.zip |
Instrument each load config initializer
In order to simplify profiling loading of initializers,
added instument for tracking load config initializer event from
`config/initializers`
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/active_support_instrumentation.md | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/guides/source/active_support_instrumentation.md b/guides/source/active_support_instrumentation.md index 969596f470..6c77a40d42 100644 --- a/guides/source/active_support_instrumentation.md +++ b/guides/source/active_support_instrumentation.md @@ -396,6 +396,15 @@ INFO. Cache stores my add their own keys } ``` +Railties +-------- + +### load_config_initializer.railties + +| Key | Value | +| -------------- | ----------------------------------------------------- | +| `:initializer` | Path to loaded initializer from `config/initializers` | + Rails ----- |