File tree Expand file tree Collapse file tree 3 files changed +14
-15
lines changed Expand file tree Collapse file tree 3 files changed +14
-15
lines changed Original file line number Diff line number Diff line change @@ -693,7 +693,7 @@ function isStringValue(value: AnyValue | undefined): value is { stringValue: str
693
693
function isIntValue ( value : AnyValue | undefined ) : value is { intValue : bigint } {
694
694
if ( ! value ) return false ;
695
695
696
- return typeof value . intValue === "number" ;
696
+ return typeof value . intValue === "number" || typeof value . intValue === "bigint" ;
697
697
}
698
698
699
699
function isDoubleValue ( value : AnyValue | undefined ) : value is { doubleValue : number } {
Original file line number Diff line number Diff line change @@ -57,3 +57,16 @@ services:
57
57
- app_network
58
58
ports :
59
59
- 6379:6379
60
+
61
+ # otel-collector:
62
+ # container_name: otel-collector
63
+ # image: otel/opentelemetry-collector-contrib:latest
64
+ # restart: always
65
+ # command: ["--config", "/etc/otel-collector-config.yaml"]
66
+ # volumes:
67
+ # - ./otel-collector-config.yaml:/etc/otel-collector-config.yaml
68
+ # ports:
69
+ # - "55680:55680"
70
+ # - "55681:55681"
71
+ # - "4317:4317" # OTLP gRPC receiver
72
+ # - "4318:4318" # OTLP http receiver
Original file line number Diff line number Diff line change @@ -5,21 +5,11 @@ receivers:
5
5
endpoint : 0.0.0.0:4317
6
6
http :
7
7
endpoint : 0.0.0.0:4318
8
- otlp/internal :
9
- protocols :
10
- http :
11
- endpoint : 0.0.0.0:4319
12
8
13
9
processors :
14
10
batch :
15
11
16
12
exporters :
17
- otlphttp/internal :
18
- endpoint : " https://otel.baselime.io/v1/"
19
- headers :
20
- " x-api-key " : ${env:BASELIME_API_KEY}
21
- " x-service " : ${env:BASELIME_SERVICE}
22
- " x-baselime-dataset " : " otel"
23
13
logging :
24
14
verbosity : normal
25
15
otlphttp :
@@ -36,7 +26,3 @@ service:
36
26
receivers : [otlp]
37
27
processors : [batch]
38
28
exporters : [otlphttp]
39
- traces/internal :
40
- receivers : [otlp/internal]
41
- processors : [batch]
42
- exporters : [otlphttp/internal]
You can’t perform that action at this time.
0 commit comments