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 --- .../Agent/PerOperationSamplingStrategies.php | 88 ---------------------- 1 file changed, 88 deletions(-) delete mode 100644 vendor/jonahgeorge/jaeger-client-php/src/Jaeger/Thrift/Agent/PerOperationSamplingStrategies.php (limited to 'vendor/jonahgeorge/jaeger-client-php/src/Jaeger/Thrift/Agent/PerOperationSamplingStrategies.php') diff --git a/vendor/jonahgeorge/jaeger-client-php/src/Jaeger/Thrift/Agent/PerOperationSamplingStrategies.php b/vendor/jonahgeorge/jaeger-client-php/src/Jaeger/Thrift/Agent/PerOperationSamplingStrategies.php deleted file mode 100644 index 2a6ae8a61..000000000 --- a/vendor/jonahgeorge/jaeger-client-php/src/Jaeger/Thrift/Agent/PerOperationSamplingStrategies.php +++ /dev/null @@ -1,88 +0,0 @@ - array( - 'var' => 'defaultSamplingProbability', - 'isRequired' => true, - 'type' => TType::DOUBLE, - ), - 2 => array( - 'var' => 'defaultLowerBoundTracesPerSecond', - 'isRequired' => true, - 'type' => TType::DOUBLE, - ), - 3 => array( - 'var' => 'perOperationStrategies', - 'isRequired' => true, - 'type' => TType::LST, - 'etype' => TType::STRUCT, - 'elem' => array( - 'type' => TType::STRUCT, - 'class' => '\Jaeger\Thrift\Agent\OperationSamplingStrategy', - ), - ), - 4 => array( - 'var' => 'defaultUpperBoundTracesPerSecond', - 'isRequired' => false, - 'type' => TType::DOUBLE, - ), - ); - - /** - * @var double - */ - public $defaultSamplingProbability = null; - /** - * @var double - */ - public $defaultLowerBoundTracesPerSecond = null; - /** - * @var \Jaeger\Thrift\Agent\OperationSamplingStrategy[] - */ - public $perOperationStrategies = null; - /** - * @var double - */ - public $defaultUpperBoundTracesPerSecond = null; - - public function __construct($vals=null) { - if (is_array($vals)) { - parent::__construct(self::$_TSPEC, $vals); - } - } - - public function getName() { - return 'PerOperationSamplingStrategies'; - } - - public function read($input) - { - return $this->_read('PerOperationSamplingStrategies', self::$_TSPEC, $input); - } - - public function write($output) { - return $this->_write('PerOperationSamplingStrategies', self::$_TSPEC, $output); - } - -} - -- cgit v1.2.3