Hey, I'm trying to get a setup going with a normal rails app. I've got the zipkin repository cloned, I ran the setup stuff:
./bin/web
./bin/query
./bin/collector
Now I'm trying to add it to my rails app, I add it as the middleware closest to the run rack statement (the middleware breaks at the same place if it's not the closest, which should be fixed). But anyway now I'm getting undefined method zipkin_tracer for the Rails.application as per:
!! Unexpected error while processing request: undefined method `zipkin_tracer' for #<Rails::Application::Configuration:0x007fd22a190790>
For:
config = app.config.zipkin_tracer
How do I go about adding the right configuration for my rails app? Is there a specific instance/class I should be using? Implementing a specific interface?
I'm on the IRC channel as shaiguitar as well.
TIA.