Skip to content

Commit 64af795

Browse files
committed
Fix issue with invalid line format
1 parent 76e5f05 commit 64af795

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

InfluxDbStorage.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ public function pushSentMessageStats(SentMessageStats $stats): void
155155
}
156156

157157
$points = [
158-
new Point($this->config['measurementSentMessages'], null, $tags, [], $stats->getTimestampMs()),
158+
new Point($this->config['measurementSentMessages'], 1, $tags, [], $stats->getTimestampMs()),
159159
];
160160

161161
$this->getDb()->writePoints($points, Database::PRECISION_MILLISECONDS);

0 commit comments

Comments
 (0)