Skip to content

Commit 74b1a03

Browse files
brettmcNevay
andauthored
support refactored otlp export config (#1477)
upstream config now splits otlp exporters into otlp_http and otlp_grpc * use const, remove insecure from otlp_http config * Apply suggestions from code review Co-authored-by: Tobias Bachert <[email protected]> * set default endpoints, fix review feedback * move endpoint out of yaml anchor * convert timeouts from millis to seconds --------- Co-authored-by: Tobias Bachert <[email protected]>
1 parent 351a30b commit 74b1a03

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

Common/Time/ClockInterface.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ interface ClockInterface
99
public const NANOS_PER_SECOND = 1_000_000_000;
1010
public const NANOS_PER_MILLISECOND = 1_000_000;
1111
public const NANOS_PER_MICROSECOND = 1_000;
12+
public const MILLIS_PER_SECOND = 1_000;
1213

1314
/**
1415
* Returns the current epoch wall-clock timestamp in nanoseconds

0 commit comments

Comments
 (0)