README.md in logjam_agent-0.19.6 vs README.md in logjam_agent-0.20.0
- old
+ new
@@ -38,15 +38,15 @@
# Configure the application revision (optional). Defaults to (git rev-parse HEAD).
# self.application_revision = "f494e11afa0738b279517a2a96101a952052da5d"
# Configure request data forwarder for ZeroMQ. Default options as given below.
# the host parameter can be a comma separted list of zmq connection specifictions,
- # where ths protocol prefix and port suffix are optional.
+ # where the protocol prefix and port suffix are optional.
add_forwarder(:zmq,
:host => "localhost",
:port => 9605,
- :linger => 100,
+ :linger => 1000,
:snd_hwm => 100)
# Configure request data forwarder for AMQP.
# add_forwarder(:amqp, :host => "message.broker.at.your.org")
@@ -58,9 +58,13 @@
# Configure asset request logging and forwarding. Defaults to ignore
# asset requests in development mode. Set this to false if you need
# to debug asset request handling.
self.ignore_asset_requests = Rails.env.development?
+
+ # Disable ActiveSupport::Notifications (and thereby logging) of ActionView
+ # render events. Defaults to false.
+ # self.ignore_render_events = Rails.env.production?
# Configure log level for logging on disk: only lines with a log level
# greater than or equal to the specified one will be logged to disk.
# Defaults to Logger::INFO. Note that logjam_agent extends the standard
# logger log levels by the constant NONE, which indicates no logging.