From cdd7ad020e165fe680703b6d3319b908b682fb7a Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Fri, 20 Oct 2023 17:12:29 +0300 Subject: jaeger-client -> opentelemetry --- .../Thrift/Agent/OperationSamplingStrategy.php | 66 ---------------------- 1 file changed, 66 deletions(-) delete mode 100644 vendor/jonahgeorge/jaeger-client-php/src/Jaeger/Thrift/Agent/OperationSamplingStrategy.php (limited to 'vendor/jonahgeorge/jaeger-client-php/src/Jaeger/Thrift/Agent/OperationSamplingStrategy.php') diff --git a/vendor/jonahgeorge/jaeger-client-php/src/Jaeger/Thrift/Agent/OperationSamplingStrategy.php b/vendor/jonahgeorge/jaeger-client-php/src/Jaeger/Thrift/Agent/OperationSamplingStrategy.php deleted file mode 100644 index 7532a7b50..000000000 --- a/vendor/jonahgeorge/jaeger-client-php/src/Jaeger/Thrift/Agent/OperationSamplingStrategy.php +++ /dev/null @@ -1,66 +0,0 @@ - array( - 'var' => 'operation', - 'isRequired' => true, - 'type' => TType::STRING, - ), - 2 => array( - 'var' => 'probabilisticSampling', - 'isRequired' => true, - 'type' => TType::STRUCT, - 'class' => '\Jaeger\Thrift\Agent\ProbabilisticSamplingStrategy', - ), - ); - - /** - * @var string - */ - public $operation = null; - /** - * @var \Jaeger\Thrift\Agent\ProbabilisticSamplingStrategy - */ - public $probabilisticSampling = null; - - public function __construct($vals=null) { - if (is_array($vals)) { - parent::__construct(self::$_TSPEC, $vals); - } - } - - public function getName() { - return 'OperationSamplingStrategy'; - } - - public function read($input) - { - return $this->_read('OperationSamplingStrategy', self::$_TSPEC, $input); - } - - public function write($output) { - return $this->_write('OperationSamplingStrategy', self::$_TSPEC, $output); - } - -} - -- cgit v1.2.3