Sandip Bhattacharya

Results 9 issues of Sandip Bhattacharya

I don't see a way to retrieve the history, only a way to set it at program startup. I would like to persist history between sessions. I can implement persistence/restore...

https://github.com/ansible-community/ansible-consul/pull/460 introduced an typo causing repo installations to fail ``` TASK [ansible-consul : Install OS packages] *********************************************************************************************************************** fatal: [neptune]: FAILED! => {"msg": "The conditional check '(consul_os_repo_prerequisites)' failed. The error was:...

If a sink takes too long to process an event, goroutines can pile up. For example, intermittent Kafka latency can cause memory spikes because of Goroutine pileup.

Currently the flickr plugin tries to initialize flickraw at the time of import. Since there is no other way to access the site configuration which ois already loaded, a default...

Hey Jason, Long time. :) How do I reduce the log messages for this build of zooinspector. It emits a line for every node that I select. e.g. ``` ZooInspectorNodeViewersPanel.stateChanged()...

The reindex operation to change the mapping was timing out. Perhaps we can ask the trainee to do it async? I had to do this to make it work. Start...

Since some site configuration can contain secrets which I would not like to commit to public repos, I like to keep them separate from the main config file, e.g. flickr...

I usually use counters, gauges and timers in code somewhat like this: ``` metrics.GetOrRegisterCounter(metricName, metricsRegistry).Inc(amount) ``` But doing the same thing with Histograms are a problem. This is the call...