We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f7b695 commit 488fbffCopy full SHA for 488fbff
src/Wrappers/TransactionEvent.php
@@ -75,7 +75,7 @@ public function start()
75
* @see https://github.com/elastic/apm-server/blob/v6.7.1/docs/spec/timestamp_epoch.json
76
*/
77
$this->setTimestamp();
78
- $this->timestamp = microtime(true) * 1000000;
+ $this->timestamp = intval(microtime(true) * 1000000);
79
$this->transaction->setTimestamp($this->getTimestamp());
80
$this->timer->start();
81
}
@@ -274,4 +274,4 @@ public function getProtoBufTransaction() {
274
275
276
277
-}
+}
0 commit comments