We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
InfluxDBClient loads configuration form the App.config file automatically. All you have to do is to add configuration to your App.config:
InfluxDBClient
App.config
<?xml version="1.0" encoding="utf-8"?> <configuration> <configSections> <section name="influx2" type="InfluxDB.Client.Configurations.Influx2, InfluxDB.Client" /> </configSections> <influx2 url="http://localhost:9999" org="my-org" bucket="my-bucket" token="my-token" logLevel="BODY" readWriteTimeout="5s" timeout="10s"> </influx2> </configuration>
The text was updated successfully, but these errors were encountered:
#18: Configure client by App.config and connection string
5319116
#18: Configure client by App.config and connection string (#20)
24fc933
bednar
Successfully merging a pull request may close this issue.
InfluxDBClient
loads configuration form theApp.config
file automatically.All you have to do is to add configuration to your
App.config
:The text was updated successfully, but these errors were encountered: