(unixMS)
| 458 | } |
| 459 | |
| 460 | function timestampToDateTime643(unixMS) { |
| 461 | if (unixMS === undefined || unixMS === null) { |
| 462 | return null; |
| 463 | } |
| 464 | |
| 465 | // clickhouse DateTime64(3) expects "seconds.milliseconds" (string type). |
| 466 | return (unixMS / 1000).toFixed(3); |
| 467 | } |
| 468 | |
| 469 | /** |
| 470 | * Builds a log entry object with common fields |
no outgoing calls
no test coverage detected