influxdb-php icon indicating copy to clipboard operation
influxdb-php copied to clipboard

influxdb-php: A PHP Client for InfluxDB, a time series database

Results 58 influxdb-php issues
Sort by recently updated
recently updated
newest added

Bumps [guzzlehttp/guzzle](https://github.com/guzzle/guzzle) from 7.2.0 to 7.4.5. Release notes Sourced from guzzlehttp/guzzle's releases. Release 7.4.5 See change log for changes. Release 7.4.4 See change log for changes. Release 7.4.3 See change...

dependencies

fixed "Argument #1 ($socket) must be of type resource, bool given". whenever a stream could not be created the property was still passed to `stream_socket_sendto` which causes an type error...

Hello, since php 8.1 some tests are failing with TypeErrors: ![image](https://user-images.githubusercontent.com/5016464/157678020-6fac9c5c-ab73-4306-9ea0-1650a12c8265.png) `stream_socket_sendto(): Argument #1 ($socket) must be of type resource, bool given` ``` public function write($data = null) { if...

InfluxDB supports [binding parameters](https://docs.influxdata.com/influxdb/v1.7//tools/api/#bind-parameters). This feature covers issue #53

Hi there, I've been looking around for a safe way to inject variables into queries using `$database->query(...)` but haven't come across anything (and looking through the code, it doesn't appear...

I'm getting `202` from my InfluxDB instance. But it throws an exception, probably because of https://github.com/influxdata/influxdb-php/blob/master/src/InfluxDB/Driver/Guzzle.php#L120 Isn't `202` a valid status code as well?

Not sure if its me doing something stupid but: The queries are the same.... running in the CLI `select max("wind_avg_km_h") as "windgust10m", mean("wind_dir_deg") as "windgustdir10m" FROM "Acurite-5n1" WHERE (sequence_num =...

bug

In https://github.com/influxdata/influxdb-php/blob/master/src/InfluxDB/Database.php#L35 ``` const PRECISION_NANOSECONDS = 'n'; ``` Technically this is incorrect as the parameter should be 'ns' not 'n', but since the default is nanoseconds anyway, it's basically just...

I think it's necessary. I did use it in my development process, and it has no impact on others

Hello guys i have a problem using the PHP_Client. On my Xampp Local Machine (Windows 10) everthing works great. But if i put the exact same files on my Linux...