You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This solution should improves the actual message to line protocol conversion strategy and it includes a new feature in order to set point-to-point capture timing
```php
$client->mark([
"time" => "2009-01-01T10:28:00Z", //All point use this
"points" => [ ... ]
...
]);
```
In this PR you can specify time for single measured point
```php
$client->mark([
"points" => [
[
"measurement" => "cpu",
"time" => "2009-11-10T23:00:00Z",
"fields" => [
// ...
]
]
]);
```
It is also possibile to mix previous solution in order to apply a base timing to existing points without a time capture
0 commit comments