Jerome Froelich

Results 53 comments of Jerome Froelich

@Ralith definitely, would be more than happy to review it.

Hi @gauteh! I like this idea, but I think it may be tricky to implement because the cache uses both a hashmap and a linked list internally. So while it...

Here's an example program: ```rust #[macro_use] extern crate lazy_static; extern crate lru; use lru::LruCache; lazy_static! { static ref LRU: LruCache

I agree, that would be helpful! I think I should have time in the next couple of weeks to take a crack at it. PR's are certainly welcome though if...

Personally, the thing I like most about Prometheus's client libraries is that they easily lead to standard conventions. Metric definitions are visually distinctive and are almost always defined at the...

I thought about this some more, instead of adding another configuration option, how would you feel if we modify the prometheus configuration in the service itself? For example, we could...

@robskillington would this be considered a breaking change? Since slashes are legal I think it would be fine to include them.

Unfortunately `key: "${FOO}"` doesn't work because when the sources are merged together in the call to `merge.YAML` within `NewYAML` the values are ultimately passed to the yaml decoder which, since...

This is a thorny problem, expanding the variables before merging would enable one to ensure they are quoted as suggested above, but leads to other issues [such as environment variables...

I could, but it's less overhead for me to just replace the value. I control the value of the variable (it's created in Terraform and then stored as a secret...