Steffen Hanikel

Results 24 comments of Steffen Hanikel

The problem is that I need to query external services via HTTP to aggregate the metrics. We could also run the collection in a separate task, but I'd prefer doing...

So here's basically what I want to do: ```python class Collector(object): async def collect(self): async with session.get(url) as response: async for s in response.content: yield CounterMetricFamily('my_counter_total', 'Help text', labels=['foo'], value=s)...

This happens because the master branch is currently not compatible with the Arduino SDK 1.5/1.6. I had more luck with: https://github.com/blemasle/arduino-cmake But you need to set ARDUINO_1_5 to True. Honestly,...

This helps with any issues like: ``` PHP message: PHP Warning: Illegal string of fset 'thumb' in /var/www/wp-content/plugins/magic-fields-2/mf_front_end.php on line 527PHP message: PHP Warning: Illegal string offset 'original' in /var/ww...

Are you sure the file is not in WOFF2 format?

I'm specifically talking about e.g. `/io/grpc/xds/shaded/io/envoyproxy/envoy/config/`, which uses 16MiB alone uncompressed. If these classes are critical for the operation it might make sense to split the grpc-xds package even further.

I'm sorry I'm not intrinsically familiar with xds or grpc-xds, I just see this package being pulled in by various google cloud sdk libraries and it increases the size of...

So we had the exact same issue as above having duplicated the `project_id` ourselves. But we discovered an other issue with duplicate labels after enabling audit logs for spanner: ```...

Same thing happens on current master, though it seems to keep running: [stackdriver.log](https://github.com/prometheus-community/stackdriver_exporter/files/4967306/stackdriver.log)

Apparently this can be fixed by specifying: `--no-collector.fill-missing-labels`. Not sure about any other implications.