sschepens

Results 23 comments of sschepens

It's not really much considering statsd format is very verbose and a command gets sent for every counter o gauge reported. If i call count multiple times,no buffering occurs and...

@howardjohn what is your opinion on this? I would like to make progress on this feature, it is something that many people need.

Marvel is now integrated into kibana as a plugin, maybe kopf could become a kibana plugin.

Yup, i have this implemented on a fork of mine. Couple of things: - Not based on current changes - Breakes API compatibility (though i think it best) - Has...

Yeah I think so too, the change I made to the API is not so great, it just basically forces clients to provide each resource with it's corresponding version when...

Try this: ``` builder.setRequestIdExtension(RequestIDExtension.newBuilder() .setTypedConfig(Any.newBuilder() .setTypeUrl("type.googleapis.com/envoy.extensions.request_id.uuid.v3.UuidRequestIdConfig") .setValue(Struct.newBuilder() .putFields("pack_trace_reason", Value.newBuilder() .setBoolValue(false) .build()) .build() .toByteString()) .build())); ``` This is sort of a hack, I think the real issue is that our Protos...

@jakubdyszkiewicz It really depends on the use case. For example: - If using ADS, it would see a huge jump in performance since only changed resources would get propagated. -...

> What's the state of this and are there plans to get this merged in? @sschepens how has this been working out in production for you? @mikegajda this has been...

Is there a reason why this pr has not been merged? Connection pooling is a necessity when using threaded webservers such as Puma.

@balvig the issue relies in Faraday actually, Faraday connections are not guaranteed to be thread safe, so, multiple issues can arise when using threaded webservers because all threads share the...