-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathQueryExample.php
97 lines (82 loc) · 2.38 KB
/
QueryExample.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<?php
/**
* Shows how to query data into `FluxTable`
*/
require __DIR__ . '/../vendor/autoload.php';
use InfluxDB2\Client;
use InfluxDB2\Model\DeletePredicateRequest;
use InfluxDB2\Point;
use InfluxDB2\Service\DeleteService;
$org = 'my-org';
$bucket = 'my-bucket';
$token = 'my-token';
//
// Creating client
//
$client = new Client([
"url" => "http://localhost:8086",
"token" => $token,
"bucket" => $bucket,
"org" => $org,
"precision" => InfluxDB2\Model\WritePrecision::S
]);
//
// Delete data from influxDB
//
$service = $client->createService(DeleteService::class);
$predicate = new DeletePredicateRequest();
$predicate->setStart(DateTime::createFromFormat('Y', '1900'));
$predicate->setStop(new DateTime());
$predicate->setPredicate("_measurement=\"weather\"");
$service->postDelete($predicate, null, $org, $bucket);
//
// Write test data into InfluxDB
//
$writeApi = $client->createWriteApi();
$pointArray = [];
$dateNow = new DateTime('NOW');
for ($i = 1; $i <= 10; $i++) {
$point = Point::measurement("weather")
->addTag("location", "London")
->addField("temperature", rand(-5, 20))
->time($dateNow->getTimestamp());
$pointArray[] = $point;
$dateNow->sub(new DateInterval('P1D'));
}
$writeApi->write($pointArray);
$writeApi->close();
//
// Get query client
//
$queryApi = $client->createQueryApi();
//
// Synchronously executes query and return result as an Array of FluxTables
//
$result = $queryApi->query(
'from(bucket: "my-bucket")
|> range(start: -8d)
|> filter(fn: (r) => r["_measurement"] == "weather")'
);
//
// Encoding to JSON with json_encode
//
printf("\n\n----------------------- Query (JsonEncode) -----------------------\n\n");
echo json_encode($result, JSON_PRETTY_PRINT);
//
// Working with returned data in FluxTables
//
printf("\n\n----------------------- Query (FluxTables) -----------------------\n\n");
foreach ($result as $table) {
foreach ($table->records as $record) {
$location = $record["location"];
$temperature = $record->getValue();
try {
$time = (new DateTime($record->getTime()))->format('d.m.Y');
} catch (Exception $e) {
$time = $record->getTime();
}
$measurement = $record->getMeasurement();
print "$measurement in $location at $time - Temperature is $temperature °C\n";
}
}
$client->close();