Hi Team , I was setting up my services to send Ope...
# support
s
Hi Team , I was setting up my services to send OpenTel traces to signoz collector, On my local docker setup all things were working , But as I move to remote setup over AWS I am finding out while spans I am getting , trace formation is not happeing as it should . Nothing changed code wise from the client side . Giving both image of the same client from local and remote set up .
@nitya-signoz @Nagesh Bansal @Vishal Sharma can any one help ? Any direction in debugging will help too
Config :
Copy code
# OTEL Config 
OTEL_PHP_AUTOLOAD_ENABLED=true
OTEL_PHP_DETECTORS=env
OTEL_PHP_PROFILING_ENABLED=true
OTEL_INSTRUMENTATION_FUNCTION_HOOK_ENABLED=true
OTEL_SERVICE_NAME=twid-api-service
OTEL_TRACES_EXPORTER=otlp
OTEL_METRICS_EXPORTER=otlp
OTEL_LOGS_EXPORTER=otlp
OTEL_EXPORTER_OTLP_METRICS_TEMPORALITY_PREFERENCE=cumulative
OTEL_EXPORTER_OTLP_METRICS_DEFAULT_HISTOGRAM_AGGREGATION=explicit_bucket_histogram
OTEL_EXPORTER_OTLP_PROTOCOL=http/protobuf
OTEL_TRACES_SAMPLER=parentbased_traceidratio
OTEL_TRACES_SAMPLER_ARG=1
OTEL_LOG_LEVEL=info
OTEL_EXPORTER_OTLP_ENDPOINT=<http://host.docker.internal:4318>
OTEL_PROPAGATORS=baggage,tracecontext
OTEL_PHP_INSTRUMENTATION_HTTP_RESPONSE_HEADERS=content-type,server
OTEL_PHP_INSTRUMENTATION_HTTP_REQUEST_HEADERS=host,accept
@Nagesh Bansal can you help in this ? Any experience in missing span issue ? Application is in - PHP lumen Local set up - not getting any issue .