Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a way to identify the heroku dyno name (e.g. web.1, web.2) from within the application? I'd like to be able to generate a unique request id (e.g. to track requests between web and worker dynos for consolidated logging of the entire request stack) and it seems to me that the dyno identifier would make a decent starting point.

If this can't be done, does anyone have a fallback recommendation?

share|improve this question

1 Answer

up vote 3 down vote accepted

I asked this question of Heroku support, and since there are others here who have asked similar questions to mine I figured I should share it. Heroku staff member JD replied with the following:

No, it's not possible to see this information from inside the dyno. We've reviewed this feature request before and have chosen not to implement it, as this would introduce a Heroku-specific variable which we aim to avoid in our stack. As such, we don't have plans to implement this feature.

You can generate / add to your environment a unique identifier (e.g. a UUID) on dyno boot to accomplish a similar result, and you can correlate this to your app's dynos by printing it to your logs at that time. If you ever need to find it later, you can check your logs for that line (of course, you'll need to drain your logs using Papertrail, Loggly, etc, or to your own server).

Unfortunately for my scenario, a UUID is too long (if I wanted such a large piece of data, I would just use a UUID to track things in the first place). But it's still good to have an official answer.

share|improve this answer
2  
Pfft, this is unacceptable since I capture metrics and my dashboard can't be reconfigured every time the source (UUID) changes. I'll raise the request again :-) – opyate Sep 13 '12 at 19:09
We eventually discovered snowflake and then heroku's own noeqd id generation server. It's a pity that heroku doesn't expose their noeq service to their customer base, but it's very easy to get it up and running, and each server is easily capable of generating over a million unique ID values per second, which is more than enough for tracking request IDs. – xris Dec 6 '12 at 5:22

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.