Ivan Kudibal
Ivan Kudibal
fix: typo
**Template**: Provide the template name here **Describe the problem** The current existing Jenkins template does not show Jenkins dashboard by jobs. **To Reproduce** Steps to reproduce the behavior: 1. Open...
**Is your template request related to a problem? Please describe.** A clear and concise description of what the problem is. Ex. I need to track and analyze [...] **Describe the...
The [gson-fire](https://github.com/julman99/gson-fire) is no longer maintained and has to be remove from client. The outdated `gson-fire` can cause collision with new major versions of `gson`. - https://github.com/julman99/gson-fire - https://github.com/google/gson
In the `C#` world is not common to use builder patter for initialization: ```c# var options = new InfluxDBClientOptions.Builder() .Url("http://localhost:8086") .AuthenticateToken("my-token") .TimeOut(TimeSpan.FromSeconds(30)) .Build(); using var client = InfluxDBClientFactory.Create(options); ``` instead...