Skip to content

docs: added missing Client Options #168

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,10 @@ $client = new InfluxDB2\Client([
| verifySSL | Turn on/off SSL certificate verification. Set to `false` to disable certificate verification. | :warning: required `Guzzle` HTTP client | bool | true |
| timeout | Describing the number of seconds to wait while trying to connect to a server. Use 0 to wait indefinitely. | :warning: required `Guzzle` HTTP client | int | 10 |
| proxy | specify an HTTP proxy, or an array to specify different proxies for different protocols. | :warning: required `Guzzle` HTTP client | string | none |
| udpPort | Port for the UDP connection | | int | none |
| ipVersion | You can specify the ip version | | int (4 or 6) | 4 |
| udpPort | Host for the UDP connection, otherwise udpHost will parsed from url option | | String | url host |
| tags | default tags (e.g `"tags" => ['id' => '1234', 'hostname' => '${env.Hostname}'`] | | array<String, String> | none |

#### Custom HTTP client

Expand Down