From 23c39ff0258f6ba0fc9522c17a1d47ae3abde5dc Mon Sep 17 00:00:00 2001 From: Anatolij Vasilev <3026792+tolik518@users.noreply.github.com> Date: Mon, 11 Aug 2025 14:17:52 +0200 Subject: [PATCH] docs: added missing Client Options --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index b6774abf..d1cb470b 100644 --- a/README.md +++ b/README.md @@ -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 | none | #### Custom HTTP client