This gem is a logging library for Treasure Data. The events logged by this module will be uploaded into the cloud. There’re two ways to upload:
-
1) direct upload from applications: app -> cloud (used by default)
-
2) in-direct upload from td-agent: app -> td-agent -> cloud
(1) is more easy to configure and extra setup, but it requires extra memory in the application processes. (2) requires the extra installation of the daemons into your cluster, but lowers the logging impact to your applications. You can choose whether to use, by config file described laster.
Add the following line to your Gemfile:
gem 'td-logger'
For Rails 2.x (not tested) without Bundler, edit environment.rb
and add to the initalizer block:
config.gem "td-logger"
And then add config/treasure_data.yml
file as followings. This is a template, which is doing the direct upload from the application processes.
development: apikey: "YOUR_API_KEY" database: rails_development debug_mode: true # enable debug mode production: apikey: "YOUR_API_KEY" database: rails_production debug_mode: false # disable logging test:
If you would wish to keep your API key as an environment variable, you can use the following template.
development: apikey: <% ENV['TD_API_KEY'] %> database: rails_development debug_mode: true # enable debug mode production: apikey: <% ENV['TD_API_KEY'] %> database: rails_production debug_mode: false # disable logging test:
You can log anytime using ‘TD.event.post’ method:
class MyClass def mymethod TD.event.post('table_name', {:foo=>:bar}) end end
In rails application, you can use ‘TD.event.attribute’ to set static attribute to all events:
class ApplicationController def authenticate # set 'uid' attribute to succeeding event logs TD.event.attribute[:uid] = 198 end end class MyController < ApplicationController def mymethod authenticate() # this event includes 'uid' attribute TD.event.post('table_name', {:foo=>:bar}) end end
This configuration enables the application to upload the events, directly from the application processes (app -> cloud).
production: apikey: "YOUR_API_KEY" database: rails_production debug_mode: false
When ‘agent’ and ‘tag’ options are specified, the events are logged into the local td-agent daemon. Later on, the daemon uploads the event periodically to the cloud (app -> td-agent -> cloud).
This requires the additional setup to your infrastructure, but lowers the memory and performance impact to your application processes. For the installation process, please look at our knowledge base page.
NOTE: This configuration is not supported on PaaP platforms.
production: agent: "localhost:24224" tag: td.myapp debug_mode: false
This mode uses TestLogger of fluent-logger-ruby to store the events. If you want to enable this mode, then specify ‘test_mode’ in your configuration.
development: apikey: "YOUR_API_KEY" database: rails_development debug_mode: true test_mode: true
You can access the logger instance via TD.logger to check the status.
TD.logger.queue #=> [{},{},..]
If you have any problem, please ask us from the support site.
- Copyright
-
Copyright © 2011 Treasure Data Inc.
- License
-
Apache License, Version 2.0