Skip to content

Commit 1751eec

Browse files
authored
Merge pull request #8 from monoscope-tech/update-query-support
Update and delete sql query support
2 parents 333d523 + cf90ce9 commit 1751eec

21 files changed

+3377
-1221
lines changed

.env.example

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,23 @@ MAX_BATCH_SIZE=1000
2929
ENABLE_BATCH_QUEUE=false
3030
# Maximum number of concurrent PostgreSQL connections (default: 100)
3131
MAX_PG_CONNECTIONS=100
32+
33+
# DataFusion tracing configuration
34+
# Enable/disable metrics recording in query traces (default: true)
35+
TIMEFUSION_TRACING_RECORD_METRICS=true
36+
37+
# OpenTelemetry Configuration
38+
# OTLP endpoint for sending traces (e.g., http://localhost:4317 for gRPC or http://localhost:4318 for HTTP)
39+
OTEL_EXPORTER_OTLP_ENDPOINT=http://localhost:4317
40+
# Service name for this application
41+
OTEL_SERVICE_NAME=timefusion
42+
# Optional: Additional resource attributes (comma-separated key=value pairs)
43+
OTEL_RESOURCE_ATTRIBUTES=environment=development,version=0.1.0
44+
# Optional: Trace sampling ratio (0.0-1.0, default: 1.0)
45+
OTEL_TRACES_SAMPLER_RATIO=1.0
46+
# Optional: Export protocol (grpc or http/protobuf, default: grpc)
47+
OTEL_EXPORTER_OTLP_PROTOCOL=grpc
48+
# Optional: Headers for authentication (e.g., api-key=your-key)
49+
OTEL_EXPORTER_OTLP_HEADERS=
50+
# Optional: Enable/disable tracing (default: true)
51+
OTEL_SDK_DISABLED=false

0 commit comments

Comments
 (0)