Hiroshi Saito

Results 48 comments of Hiroshi Saito
trafficstars

Thanks for your response, @ikesyo. Just FYI, I'm trying to merge current master into the develop/4.0 branch. https://github.com/hiroshi/APIKit/tree/develop/4.0 Some tests are still failing so far... Also, the app is not...

In my case, `~/.rbenv/versions/2.3.0/lib/ruby/gems/2.3.0/extensions/x86_64-darwin-15/2.3.0-static/curb-0.9.1/mkmf.log` show me `ld: library not found for -lnghttp2` So I tried `brew install curl --with-openssl --with-nghttp2` and it works! OS X: El Capitan 10.11.4 homebrew curl...

I wrote a quick hackish script that called `backstop_retry.js` for this purpose. It retries only once for each timed out scenario. It is ugly, but it may be better than...

> where in backstop do I define when this is triggered? Sorry, but I failed to understand your question. For usage, see the third line of my snippet. `backstopjs --config=backstop.json...

I made quick and dirty hack to this kind of purpose for my rails app. ```ruby # config/initializers/prometheus.rb require 'prometheus/client' Prometheus::Client.registry.gauge(:room_temperature_celsius, docstring: '...', labels: [:room]) ``` ```ruby # app/controller/prometheus_exporter.rb require...

Hi, thanks for your attention. I think at least a test is needed to be reviewable. So it remains as a draft. I'll add a test when I have a...

EDIT: I gave up running linter locally. Tried to fix the linter error and checked it by pushing commits.. So you can ignore this comment. --- https://github.com/percona/mongodb_exporter/pull/295#pullrequestreview-714630726 > Could you...

The line where the linter reported an error, https://github.com/percona/mongodb_exporter/pull/295/files#diff-36945caa3d7bc040bc4a27f3cd597e18399e05ec94a87f344ac74eac5efeb5bcR53 https://github.com/percona/mongodb_exporter/blob/be177633274f738b84a2d0baee24f68acad83616/exporter/replset_config_collector.go#L53 is a almost identiacal to the line, https://github.com/percona/mongodb_exporter/blob/be177633274f738b84a2d0baee24f68acad83616/exporter/replset_status_collector.go#L52 but it seems no linter error here. I'm not sure what difference...

Also I was trying to run test on my local Apple silicon mac, but unable to run them. I created another pull request to address it -> https://github.com/percona/mongodb_exporter/pull/342

I fear that to run lint and test on my Apple silicon mac is unneccesary harder than fix lint and add test itself... I hope someone taking over this pull...