Marc Neudert

Results 21 comments of Marc Neudert

There are two things to note here: 1. Matching is not done by a regular expression but by substring. The correct value would be one of the two options you...

I don't know if I understand you correctly, so I might tell you things that might not answer your question at all. Please tell me if that happens. The definition...

I whipped up a somewhat prototypical implementation for this hydration operations in a [separate branch](https://github.com/mneudert/instream/tree/series-hydration) ([full diff](https://github.com/mneudert/instream/compare/series-hydration)). Having the ability to construct any struct from a plain map also made...

From what I see the basic intent is to flatten the current series struct (remove the nesting for fields/tags). Your helper methods are mostly looking like a rewording to other...

Apparently there is no direct way because for whatever reason I decided to not set the result of the write request into the log entry :facepalm: The only somewhat usable...

Well, the `:v1` client is was never intended to work with an InfluxDB v2.x instance. And I would argue it never should. As you are using a Flux query with...

As the current behaviour is not really a bug but it would also be quite painful to add an option to however many function calls there are I would like...

Supporting InfluxDB v2 is still a work-in-progress with a lot of cleanup. And most likely more of these "look, something new... meh, remove it, seems to messy"-changes :D But eventually...

If you are using a released version from Hex that would be expected as the v2 support is still unreleased. You could integrate the current development version to connect: ```elixir...

That is most likely the HTTP request taking more than 5 seconds (the default timeout). You could increase the timeout by passing a higher one to the query function: ```...