Skip to content

Commit 430cd4b

Browse files
committed
Fix issue with invalid line format
1 parent 92c9f9c commit 430cd4b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: pkg/monitoring/InfluxDbStorage.php

+1-1
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)