├── .gitignore ├── LICENSE ├── README.md ├── bin └── thrift-gen.sh ├── composer.json └── src ├── Client ├── ClientInterface.php └── ThriftClient.php ├── Codec ├── CodecInterface.php ├── CodecRegistry.php └── TextCodec.php ├── General ├── JaegerHostnameTag.php ├── JaegerVersionTag.php ├── PhpBinaryTag.php └── PhpVersionTag.php ├── Http ├── HttpCodeTag.php ├── HttpMethodTag.php └── HttpUriTag.php ├── Id ├── IdGeneratorInterface.php └── RandomIntGenerator.php ├── Log ├── AbstractLog.php ├── ErrorKindTag.php ├── ErrorLog.php ├── ErrorObjectTag.php ├── EventTag.php ├── LevelTag.php ├── MessageTag.php ├── StackTag.php └── UserLog.php ├── Process ├── AbstractProcess.php ├── CliProcess.php ├── FpmProcess.php ├── InternalServerProcess.php ├── ProcessGidTag.php ├── ProcessIpTag.php ├── ProcessPidTag.php ├── ProcessSapiTag.php └── ProcessUidTag.php ├── Sampler ├── AbstractSampler.php ├── AdaptiveSampler.php ├── ConstGenerator.php ├── ConstSampler.php ├── GeneratorInterface.php ├── OperationGenerator.php ├── ProbabilisticSampler.php ├── RateLimitingSampler.php ├── SamplerDecisionTag.php ├── SamplerFlagsTag.php ├── SamplerInterface.php ├── SamplerParamTag.php ├── SamplerResult.php ├── SamplerTypeTag.php └── SamplingPriorityTag.php ├── Span ├── Batch │ └── SpanBatch.php ├── Context │ ├── ContextAwareInterface.php │ └── SpanContext.php ├── Factory │ ├── SpanFactory.php │ └── SpanFactoryInterface.php ├── Options.php ├── Span.php ├── SpanAwareInterface.php ├── SpanInterface.php ├── SpanManagerInterface.php └── StackSpanManager.php ├── Tag ├── AbstractSpanKindTag.php ├── AbstractTag.php ├── BinaryTag.php ├── BoolTag.php ├── ComponentTag.php ├── DbInstanceTag.php ├── DbStatementTag.php ├── DbType.php ├── DbUser.php ├── DebugRequestTag.php ├── DoubleTag.php ├── ErrorTag.php ├── LongTag.php ├── MessageBusDestinationTag.php ├── OutOfScopeTag.php ├── PeerAddressTag.php ├── PeerHostnameTag.php ├── PeerIpv4Tag.php ├── PeerPortTag.php ├── PeerServiceTag.php ├── SpanKindClientTag.php ├── SpanKindConsumerTag.php ├── SpanKindProducerTag.php ├── SpanKindServerTag.php ├── StringTag.php └── TagInterface.php ├── Thrift ├── Agent │ ├── AgentClient.php │ ├── AgentIf.php │ ├── Agent_emitBatch_args.php │ ├── Agent_emitZipkinBatch_args.php │ ├── AggregationValidatorClient.php │ ├── AggregationValidatorIf.php │ ├── AggregationValidator_validateTrace_args.php │ ├── AggregationValidator_validateTrace_result.php │ ├── BaggageRestriction.php │ ├── BaggageRestrictionManagerClient.php │ ├── BaggageRestrictionManagerIf.php │ ├── BaggageRestrictionManager_getBaggageRestrictions_args.php │ ├── BaggageRestrictionManager_getBaggageRestrictions_result.php │ ├── Dependencies.php │ ├── DependencyClient.php │ ├── DependencyIf.php │ ├── DependencyLink.php │ ├── Dependency_getDependenciesForTrace_args.php │ ├── Dependency_getDependenciesForTrace_result.php │ ├── Dependency_saveDependencies_args.php │ ├── OperationSamplingStrategy.php │ ├── PerOperationSamplingStrategies.php │ ├── ProbabilisticSamplingStrategy.php │ ├── RateLimitingSamplingStrategy.php │ ├── SamplingManagerClient.php │ ├── SamplingManagerIf.php │ ├── SamplingManager_getSamplingStrategy_args.php │ ├── SamplingManager_getSamplingStrategy_result.php │ ├── SamplingStrategyResponse.php │ ├── SamplingStrategyType.php │ ├── ServiceThrottlingConfig.php │ ├── ThrottlingConfig.php │ ├── ThrottlingResponse.php │ ├── ThrottlingServiceClient.php │ ├── ThrottlingServiceIf.php │ ├── ThrottlingService_getThrottlingConfigs_args.php │ ├── ThrottlingService_getThrottlingConfigs_result.php │ ├── ValidateTraceResponse.php │ └── Zipkin │ │ ├── Annotation.php │ │ ├── AnnotationType.php │ │ ├── BinaryAnnotation.php │ │ ├── Constant.php │ │ ├── Endpoint.php │ │ ├── Response.php │ │ ├── Span.php │ │ ├── ZipkinCollectorClient.php │ │ ├── ZipkinCollectorIf.php │ │ ├── ZipkinCollector_submitZipkinBatch_args.php │ │ └── ZipkinCollector_submitZipkinBatch_result.php ├── Batch.php ├── BatchSubmitResponse.php ├── ClientStats.php ├── CollectorClient.php ├── CollectorIf.php ├── Collector_submitBatches_args.php ├── Collector_submitBatches_result.php ├── Log.php ├── Process.php ├── Span.php ├── SpanRef.php ├── SpanRefType.php ├── Tag.php └── TagType.php ├── Tracer ├── DebuggableInterface.php ├── FinishableInterface.php ├── FlushableInterface.php ├── InjectableInterface.php ├── ResettableInterface.php ├── Tracer.php └── TracerInterface.php └── Transport └── TUDPTransport.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-tool/jaeger-client-php/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-tool/jaeger-client-php/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-tool/jaeger-client-php/HEAD/README.md -------------------------------------------------------------------------------- /bin/thrift-gen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-tool/jaeger-client-php/HEAD/bin/thrift-gen.sh -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-tool/jaeger-client-php/HEAD/composer.json -------------------------------------------------------------------------------- /src/Client/ClientInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-tool/jaeger-client-php/HEAD/src/Client/ClientInterface.php -------------------------------------------------------------------------------- /src/Client/ThriftClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-tool/jaeger-client-php/HEAD/src/Client/ThriftClient.php -------------------------------------------------------------------------------- /src/Codec/CodecInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-tool/jaeger-client-php/HEAD/src/Codec/CodecInterface.php -------------------------------------------------------------------------------- /src/Codec/CodecRegistry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-tool/jaeger-client-php/HEAD/src/Codec/CodecRegistry.php -------------------------------------------------------------------------------- /src/Codec/TextCodec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-tool/jaeger-client-php/HEAD/src/Codec/TextCodec.php -------------------------------------------------------------------------------- /src/General/JaegerHostnameTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-tool/jaeger-client-php/HEAD/src/General/JaegerHostnameTag.php -------------------------------------------------------------------------------- /src/General/JaegerVersionTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-tool/jaeger-client-php/HEAD/src/General/JaegerVersionTag.php -------------------------------------------------------------------------------- /src/General/PhpBinaryTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-tool/jaeger-client-php/HEAD/src/General/PhpBinaryTag.php -------------------------------------------------------------------------------- /src/General/PhpVersionTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-tool/jaeger-client-php/HEAD/src/General/PhpVersionTag.php -------------------------------------------------------------------------------- /src/Http/HttpCodeTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-tool/jaeger-client-php/HEAD/src/Http/HttpCodeTag.php -------------------------------------------------------------------------------- /src/Http/HttpMethodTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-tool/jaeger-client-php/HEAD/src/Http/HttpMethodTag.php -------------------------------------------------------------------------------- /src/Http/HttpUriTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-tool/jaeger-client-php/HEAD/src/Http/HttpUriTag.php -------------------------------------------------------------------------------- /src/Id/IdGeneratorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-tool/jaeger-client-php/HEAD/src/Id/IdGeneratorInterface.php -------------------------------------------------------------------------------- /src/Id/RandomIntGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-tool/jaeger-client-php/HEAD/src/Id/RandomIntGenerator.php -------------------------------------------------------------------------------- /src/Log/AbstractLog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-tool/jaeger-client-php/HEAD/src/Log/AbstractLog.php -------------------------------------------------------------------------------- /src/Log/ErrorKindTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-tool/jaeger-client-php/HEAD/src/Log/ErrorKindTag.php -------------------------------------------------------------------------------- /src/Log/ErrorLog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-tool/jaeger-client-php/HEAD/src/Log/ErrorLog.php -------------------------------------------------------------------------------- /src/Log/ErrorObjectTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-tool/jaeger-client-php/HEAD/src/Log/ErrorObjectTag.php -------------------------------------------------------------------------------- /src/Log/EventTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-tool/jaeger-client-php/HEAD/src/Log/EventTag.php -------------------------------------------------------------------------------- /src/Log/LevelTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-tool/jaeger-client-php/HEAD/src/Log/LevelTag.php -------------------------------------------------------------------------------- /src/Log/MessageTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-tool/jaeger-client-php/HEAD/src/Log/MessageTag.php -------------------------------------------------------------------------------- /src/Log/StackTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-tool/jaeger-client-php/HEAD/src/Log/StackTag.php -------------------------------------------------------------------------------- /src/Log/UserLog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-tool/jaeger-client-php/HEAD/src/Log/UserLog.php -------------------------------------------------------------------------------- /src/Process/AbstractProcess.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-tool/jaeger-client-php/HEAD/src/Process/AbstractProcess.php -------------------------------------------------------------------------------- /src/Process/CliProcess.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-tool/jaeger-client-php/HEAD/src/Process/CliProcess.php -------------------------------------------------------------------------------- /src/Process/FpmProcess.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-tool/jaeger-client-php/HEAD/src/Process/FpmProcess.php -------------------------------------------------------------------------------- /src/Process/InternalServerProcess.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-tool/jaeger-client-php/HEAD/src/Process/InternalServerProcess.php -------------------------------------------------------------------------------- /src/Process/ProcessGidTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-tool/jaeger-client-php/HEAD/src/Process/ProcessGidTag.php -------------------------------------------------------------------------------- /src/Process/ProcessIpTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-tool/jaeger-client-php/HEAD/src/Process/ProcessIpTag.php -------------------------------------------------------------------------------- /src/Process/ProcessPidTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-tool/jaeger-client-php/HEAD/src/Process/ProcessPidTag.php -------------------------------------------------------------------------------- /src/Process/ProcessSapiTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-tool/jaeger-client-php/HEAD/src/Process/ProcessSapiTag.php -------------------------------------------------------------------------------- /src/Process/ProcessUidTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-tool/jaeger-client-php/HEAD/src/Process/ProcessUidTag.php -------------------------------------------------------------------------------- /src/Sampler/AbstractSampler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-tool/jaeger-client-php/HEAD/src/Sampler/AbstractSampler.php -------------------------------------------------------------------------------- /src/Sampler/AdaptiveSampler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-tool/jaeger-client-php/HEAD/src/Sampler/AdaptiveSampler.php -------------------------------------------------------------------------------- /src/Sampler/ConstGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-tool/jaeger-client-php/HEAD/src/Sampler/ConstGenerator.php -------------------------------------------------------------------------------- /src/Sampler/ConstSampler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-tool/jaeger-client-php/HEAD/src/Sampler/ConstSampler.php -------------------------------------------------------------------------------- /src/Sampler/GeneratorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-tool/jaeger-client-php/HEAD/src/Sampler/GeneratorInterface.php -------------------------------------------------------------------------------- /src/Sampler/OperationGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-tool/jaeger-client-php/HEAD/src/Sampler/OperationGenerator.php -------------------------------------------------------------------------------- /src/Sampler/ProbabilisticSampler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-tool/jaeger-client-php/HEAD/src/Sampler/ProbabilisticSampler.php -------------------------------------------------------------------------------- /src/Sampler/RateLimitingSampler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-tool/jaeger-client-php/HEAD/src/Sampler/RateLimitingSampler.php -------------------------------------------------------------------------------- /src/Sampler/SamplerDecisionTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-tool/jaeger-client-php/HEAD/src/Sampler/SamplerDecisionTag.php -------------------------------------------------------------------------------- /src/Sampler/SamplerFlagsTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-tool/jaeger-client-php/HEAD/src/Sampler/SamplerFlagsTag.php -------------------------------------------------------------------------------- /src/Sampler/SamplerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-tool/jaeger-client-php/HEAD/src/Sampler/SamplerInterface.php -------------------------------------------------------------------------------- /src/Sampler/SamplerParamTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-tool/jaeger-client-php/HEAD/src/Sampler/SamplerParamTag.php -------------------------------------------------------------------------------- /src/Sampler/SamplerResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-tool/jaeger-client-php/HEAD/src/Sampler/SamplerResult.php -------------------------------------------------------------------------------- /src/Sampler/SamplerTypeTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-tool/jaeger-client-php/HEAD/src/Sampler/SamplerTypeTag.php -------------------------------------------------------------------------------- /src/Sampler/SamplingPriorityTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-tool/jaeger-client-php/HEAD/src/Sampler/SamplingPriorityTag.php -------------------------------------------------------------------------------- /src/Span/Batch/SpanBatch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-tool/jaeger-client-php/HEAD/src/Span/Batch/SpanBatch.php -------------------------------------------------------------------------------- /src/Span/Context/ContextAwareInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-tool/jaeger-client-php/HEAD/src/Span/Context/ContextAwareInterface.php -------------------------------------------------------------------------------- /src/Span/Context/SpanContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-tool/jaeger-client-php/HEAD/src/Span/Context/SpanContext.php -------------------------------------------------------------------------------- /src/Span/Factory/SpanFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-tool/jaeger-client-php/HEAD/src/Span/Factory/SpanFactory.php -------------------------------------------------------------------------------- /src/Span/Factory/SpanFactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-tool/jaeger-client-php/HEAD/src/Span/Factory/SpanFactoryInterface.php -------------------------------------------------------------------------------- /src/Span/Options.php: -------------------------------------------------------------------------------- 1 |