forked from influxdata/influxdb-client-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathQueryFromFileExample.php
96 lines (82 loc) · 2.06 KB
/
QueryFromFileExample.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
<?php
/**
* Shows how to use a Flux query defined in a separate file
*/
require __DIR__ . '/../vendor/autoload.php';
use InfluxDB2\Client;
use InfluxDB2\Point;
$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
]);
//
// 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", "Prague")
->addField("temperature", rand(-5, 15))
->time($dateNow->getTimestamp());
$pointArray[] = $point;
$dateNow->sub(new DateInterval('P1D'));
}
$writeApi->write($pointArray);
$writeApi->close();
//
// Get query client
//
$queryApi = $client->createQueryApi();
//
// Executes Flux query defined in a separate file
//
$filename = "query.flux";
$handle = fopen($filename, "r");
$contents = fread($handle, filesize($filename));
fclose($handle);
$result = $queryApi->query($contents);
//
// Working with returned data in FluxTables
//
printf("\n\n------------------------------- Query -------------------------------\n\n");
foreach ($result as $table) {
foreach ($table->records as $record) {
$day = getDayName($record["weekDay"]);
$location = $record["location"];
$temperature = $record["temperature"];
$measurement = $record->getMeasurement();
print "Temperature in $location at $day is $temperature °C\n";
}
}
function getDayName(int $weekDay): string
{
switch ($weekDay) {
case "1":
return "Monday";
case "2":
return "Tuesday";
case "3":
return "Wednesday";
case "4":
return "Thursday";
case "5":
return "Friday";
case "6":
return "Saturday";
case "0":
return "Sunday";
}
return "";
}
$client->close();