summaryrefslogtreecommitdiff
path: root/vendor/open-telemetry/gen-otlp-protobuf/Opentelemetry/Proto/Metrics/Experimental
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/open-telemetry/gen-otlp-protobuf/Opentelemetry/Proto/Metrics/Experimental')
-rw-r--r--vendor/open-telemetry/gen-otlp-protobuf/Opentelemetry/Proto/Metrics/Experimental/MetricConfigRequest.php113
-rw-r--r--vendor/open-telemetry/gen-otlp-protobuf/Opentelemetry/Proto/Metrics/Experimental/MetricConfigResponse.php201
-rw-r--r--vendor/open-telemetry/gen-otlp-protobuf/Opentelemetry/Proto/Metrics/Experimental/MetricConfigResponse/Schedule.php149
-rw-r--r--vendor/open-telemetry/gen-otlp-protobuf/Opentelemetry/Proto/Metrics/Experimental/MetricConfigResponse/Schedule/Pattern.php113
-rw-r--r--vendor/open-telemetry/gen-otlp-protobuf/Opentelemetry/Proto/Metrics/Experimental/MetricConfigResponse_Schedule.php16
-rw-r--r--vendor/open-telemetry/gen-otlp-protobuf/Opentelemetry/Proto/Metrics/Experimental/MetricConfigResponse_Schedule_Pattern.php16
6 files changed, 608 insertions, 0 deletions
diff --git a/vendor/open-telemetry/gen-otlp-protobuf/Opentelemetry/Proto/Metrics/Experimental/MetricConfigRequest.php b/vendor/open-telemetry/gen-otlp-protobuf/Opentelemetry/Proto/Metrics/Experimental/MetricConfigRequest.php
new file mode 100644
index 000000000..bdf9ea2fa
--- /dev/null
+++ b/vendor/open-telemetry/gen-otlp-protobuf/Opentelemetry/Proto/Metrics/Experimental/MetricConfigRequest.php
@@ -0,0 +1,113 @@
+<?php
+# Generated by the protocol buffer compiler. DO NOT EDIT!
+# source: opentelemetry/proto/metrics/experimental/metrics_config_service.proto
+
+namespace Opentelemetry\Proto\Metrics\Experimental;
+
+use Google\Protobuf\Internal\GPBType;
+use Google\Protobuf\Internal\RepeatedField;
+use Google\Protobuf\Internal\GPBUtil;
+
+/**
+ * Generated from protobuf message <code>opentelemetry.proto.metrics.experimental.MetricConfigRequest</code>
+ */
+class MetricConfigRequest extends \Google\Protobuf\Internal\Message
+{
+ /**
+ * Required. The resource for which configuration should be returned.
+ *
+ * Generated from protobuf field <code>.opentelemetry.proto.resource.v1.Resource resource = 1;</code>
+ */
+ protected $resource = null;
+ /**
+ * Optional. The value of MetricConfigResponse.fingerprint for the last
+ * configuration that the caller received and successfully applied.
+ *
+ * Generated from protobuf field <code>bytes last_known_fingerprint = 2;</code>
+ */
+ protected $last_known_fingerprint = '';
+
+ /**
+ * Constructor.
+ *
+ * @param array $data {
+ * Optional. Data for populating the Message object.
+ *
+ * @type \Opentelemetry\Proto\Resource\V1\Resource $resource
+ * Required. The resource for which configuration should be returned.
+ * @type string $last_known_fingerprint
+ * Optional. The value of MetricConfigResponse.fingerprint for the last
+ * configuration that the caller received and successfully applied.
+ * }
+ */
+ public function __construct($data = NULL) {
+ \GPBMetadata\Opentelemetry\Proto\Metrics\Experimental\MetricsConfigService::initOnce();
+ parent::__construct($data);
+ }
+
+ /**
+ * Required. The resource for which configuration should be returned.
+ *
+ * Generated from protobuf field <code>.opentelemetry.proto.resource.v1.Resource resource = 1;</code>
+ * @return \Opentelemetry\Proto\Resource\V1\Resource
+ */
+ public function getResource()
+ {
+ return isset($this->resource) ? $this->resource : null;
+ }
+
+ public function hasResource()
+ {
+ return isset($this->resource);
+ }
+
+ public function clearResource()
+ {
+ unset($this->resource);
+ }
+
+ /**
+ * Required. The resource for which configuration should be returned.
+ *
+ * Generated from protobuf field <code>.opentelemetry.proto.resource.v1.Resource resource = 1;</code>
+ * @param \Opentelemetry\Proto\Resource\V1\Resource $var
+ * @return $this
+ */
+ public function setResource($var)
+ {
+ GPBUtil::checkMessage($var, \Opentelemetry\Proto\Resource\V1\Resource::class);
+ $this->resource = $var;
+
+ return $this;
+ }
+
+ /**
+ * Optional. The value of MetricConfigResponse.fingerprint for the last
+ * configuration that the caller received and successfully applied.
+ *
+ * Generated from protobuf field <code>bytes last_known_fingerprint = 2;</code>
+ * @return string
+ */
+ public function getLastKnownFingerprint()
+ {
+ return $this->last_known_fingerprint;
+ }
+
+ /**
+ * Optional. The value of MetricConfigResponse.fingerprint for the last
+ * configuration that the caller received and successfully applied.
+ *
+ * Generated from protobuf field <code>bytes last_known_fingerprint = 2;</code>
+ * @param string $var
+ * @return $this
+ */
+ public function setLastKnownFingerprint($var)
+ {
+ GPBUtil::checkString($var, False);
+ $this->last_known_fingerprint = $var;
+
+ return $this;
+ }
+
+}
+
diff --git a/vendor/open-telemetry/gen-otlp-protobuf/Opentelemetry/Proto/Metrics/Experimental/MetricConfigResponse.php b/vendor/open-telemetry/gen-otlp-protobuf/Opentelemetry/Proto/Metrics/Experimental/MetricConfigResponse.php
new file mode 100644
index 000000000..0993a59ea
--- /dev/null
+++ b/vendor/open-telemetry/gen-otlp-protobuf/Opentelemetry/Proto/Metrics/Experimental/MetricConfigResponse.php
@@ -0,0 +1,201 @@
+<?php
+# Generated by the protocol buffer compiler. DO NOT EDIT!
+# source: opentelemetry/proto/metrics/experimental/metrics_config_service.proto
+
+namespace Opentelemetry\Proto\Metrics\Experimental;
+
+use Google\Protobuf\Internal\GPBType;
+use Google\Protobuf\Internal\RepeatedField;
+use Google\Protobuf\Internal\GPBUtil;
+
+/**
+ * Generated from protobuf message <code>opentelemetry.proto.metrics.experimental.MetricConfigResponse</code>
+ */
+class MetricConfigResponse extends \Google\Protobuf\Internal\Message
+{
+ /**
+ * Optional. The fingerprint associated with this MetricConfigResponse. Each
+ * change in configs yields a different fingerprint. The resource SHOULD copy
+ * this value to MetricConfigRequest.last_known_fingerprint for the next
+ * configuration request. If there are no changes between fingerprint and
+ * MetricConfigRequest.last_known_fingerprint, then all other fields besides
+ * fingerprint in the response are optional, or the same as the last update if
+ * present.
+ * The exact mechanics of generating the fingerprint is up to the
+ * implementation. However, a fingerprint must be deterministically determined
+ * by the configurations -- the same configuration will generate the same
+ * fingerprint on any instance of an implementation. Hence using a timestamp is
+ * unacceptable, but a deterministic hash is fine.
+ *
+ * Generated from protobuf field <code>bytes fingerprint = 1;</code>
+ */
+ protected $fingerprint = '';
+ /**
+ * A single metric may match multiple schedules. In such cases, the schedule
+ * that specifies the smallest period is applied.
+ * Note, for optimization purposes, it is recommended to use as few schedules
+ * as possible to capture all required metric updates. Where you can be
+ * conservative, do take full advantage of the inclusion/exclusion patterns to
+ * capture as much of your targeted metrics.
+ *
+ * Generated from protobuf field <code>repeated .opentelemetry.proto.metrics.experimental.MetricConfigResponse.Schedule schedules = 2;</code>
+ */
+ private $schedules;
+ /**
+ * Optional. The client is suggested to wait this long (in seconds) before
+ * pinging the configuration service again.
+ *
+ * Generated from protobuf field <code>int32 suggested_wait_time_sec = 3;</code>
+ */
+ protected $suggested_wait_time_sec = 0;
+
+ /**
+ * Constructor.
+ *
+ * @param array $data {
+ * Optional. Data for populating the Message object.
+ *
+ * @type string $fingerprint
+ * Optional. The fingerprint associated with this MetricConfigResponse. Each
+ * change in configs yields a different fingerprint. The resource SHOULD copy
+ * this value to MetricConfigRequest.last_known_fingerprint for the next
+ * configuration request. If there are no changes between fingerprint and
+ * MetricConfigRequest.last_known_fingerprint, then all other fields besides
+ * fingerprint in the response are optional, or the same as the last update if
+ * present.
+ * The exact mechanics of generating the fingerprint is up to the
+ * implementation. However, a fingerprint must be deterministically determined
+ * by the configurations -- the same configuration will generate the same
+ * fingerprint on any instance of an implementation. Hence using a timestamp is
+ * unacceptable, but a deterministic hash is fine.
+ * @type \Opentelemetry\Proto\Metrics\Experimental\MetricConfigResponse\Schedule[]|\Google\Protobuf\Internal\RepeatedField $schedules
+ * A single metric may match multiple schedules. In such cases, the schedule
+ * that specifies the smallest period is applied.
+ * Note, for optimization purposes, it is recommended to use as few schedules
+ * as possible to capture all required metric updates. Where you can be
+ * conservative, do take full advantage of the inclusion/exclusion patterns to
+ * capture as much of your targeted metrics.
+ * @type int $suggested_wait_time_sec
+ * Optional. The client is suggested to wait this long (in seconds) before
+ * pinging the configuration service again.
+ * }
+ */
+ public function __construct($data = NULL) {
+ \GPBMetadata\Opentelemetry\Proto\Metrics\Experimental\MetricsConfigService::initOnce();
+ parent::__construct($data);
+ }
+
+ /**
+ * Optional. The fingerprint associated with this MetricConfigResponse. Each
+ * change in configs yields a different fingerprint. The resource SHOULD copy
+ * this value to MetricConfigRequest.last_known_fingerprint for the next
+ * configuration request. If there are no changes between fingerprint and
+ * MetricConfigRequest.last_known_fingerprint, then all other fields besides
+ * fingerprint in the response are optional, or the same as the last update if
+ * present.
+ * The exact mechanics of generating the fingerprint is up to the
+ * implementation. However, a fingerprint must be deterministically determined
+ * by the configurations -- the same configuration will generate the same
+ * fingerprint on any instance of an implementation. Hence using a timestamp is
+ * unacceptable, but a deterministic hash is fine.
+ *
+ * Generated from protobuf field <code>bytes fingerprint = 1;</code>
+ * @return string
+ */
+ public function getFingerprint()
+ {
+ return $this->fingerprint;
+ }
+
+ /**
+ * Optional. The fingerprint associated with this MetricConfigResponse. Each
+ * change in configs yields a different fingerprint. The resource SHOULD copy
+ * this value to MetricConfigRequest.last_known_fingerprint for the next
+ * configuration request. If there are no changes between fingerprint and
+ * MetricConfigRequest.last_known_fingerprint, then all other fields besides
+ * fingerprint in the response are optional, or the same as the last update if
+ * present.
+ * The exact mechanics of generating the fingerprint is up to the
+ * implementation. However, a fingerprint must be deterministically determined
+ * by the configurations -- the same configuration will generate the same
+ * fingerprint on any instance of an implementation. Hence using a timestamp is
+ * unacceptable, but a deterministic hash is fine.
+ *
+ * Generated from protobuf field <code>bytes fingerprint = 1;</code>
+ * @param string $var
+ * @return $this
+ */
+ public function setFingerprint($var)
+ {
+ GPBUtil::checkString($var, False);
+ $this->fingerprint = $var;
+
+ return $this;
+ }
+
+ /**
+ * A single metric may match multiple schedules. In such cases, the schedule
+ * that specifies the smallest period is applied.
+ * Note, for optimization purposes, it is recommended to use as few schedules
+ * as possible to capture all required metric updates. Where you can be
+ * conservative, do take full advantage of the inclusion/exclusion patterns to
+ * capture as much of your targeted metrics.
+ *
+ * Generated from protobuf field <code>repeated .opentelemetry.proto.metrics.experimental.MetricConfigResponse.Schedule schedules = 2;</code>
+ * @return \Google\Protobuf\Internal\RepeatedField
+ */
+ public function getSchedules()
+ {
+ return $this->schedules;
+ }
+
+ /**
+ * A single metric may match multiple schedules. In such cases, the schedule
+ * that specifies the smallest period is applied.
+ * Note, for optimization purposes, it is recommended to use as few schedules
+ * as possible to capture all required metric updates. Where you can be
+ * conservative, do take full advantage of the inclusion/exclusion patterns to
+ * capture as much of your targeted metrics.
+ *
+ * Generated from protobuf field <code>repeated .opentelemetry.proto.metrics.experimental.MetricConfigResponse.Schedule schedules = 2;</code>
+ * @param \Opentelemetry\Proto\Metrics\Experimental\MetricConfigResponse\Schedule[]|\Google\Protobuf\Internal\RepeatedField $var
+ * @return $this
+ */
+ public function setSchedules($var)
+ {
+ $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Opentelemetry\Proto\Metrics\Experimental\MetricConfigResponse\Schedule::class);
+ $this->schedules = $arr;
+
+ return $this;
+ }
+
+ /**
+ * Optional. The client is suggested to wait this long (in seconds) before
+ * pinging the configuration service again.
+ *
+ * Generated from protobuf field <code>int32 suggested_wait_time_sec = 3;</code>
+ * @return int
+ */
+ public function getSuggestedWaitTimeSec()
+ {
+ return $this->suggested_wait_time_sec;
+ }
+
+ /**
+ * Optional. The client is suggested to wait this long (in seconds) before
+ * pinging the configuration service again.
+ *
+ * Generated from protobuf field <code>int32 suggested_wait_time_sec = 3;</code>
+ * @param int $var
+ * @return $this
+ */
+ public function setSuggestedWaitTimeSec($var)
+ {
+ GPBUtil::checkInt32($var);
+ $this->suggested_wait_time_sec = $var;
+
+ return $this;
+ }
+
+}
+
diff --git a/vendor/open-telemetry/gen-otlp-protobuf/Opentelemetry/Proto/Metrics/Experimental/MetricConfigResponse/Schedule.php b/vendor/open-telemetry/gen-otlp-protobuf/Opentelemetry/Proto/Metrics/Experimental/MetricConfigResponse/Schedule.php
new file mode 100644
index 000000000..07091928d
--- /dev/null
+++ b/vendor/open-telemetry/gen-otlp-protobuf/Opentelemetry/Proto/Metrics/Experimental/MetricConfigResponse/Schedule.php
@@ -0,0 +1,149 @@
+<?php
+# Generated by the protocol buffer compiler. DO NOT EDIT!
+# source: opentelemetry/proto/metrics/experimental/metrics_config_service.proto
+
+namespace Opentelemetry\Proto\Metrics\Experimental\MetricConfigResponse;
+
+use Google\Protobuf\Internal\GPBType;
+use Google\Protobuf\Internal\RepeatedField;
+use Google\Protobuf\Internal\GPBUtil;
+
+/**
+ * A Schedule is used to apply a particular scheduling configuration to
+ * a metric. If a metric name matches a schedule's patterns, then the metric
+ * adopts the configuration specified by the schedule.
+ *
+ * Generated from protobuf message <code>opentelemetry.proto.metrics.experimental.MetricConfigResponse.Schedule</code>
+ */
+class Schedule extends \Google\Protobuf\Internal\Message
+{
+ /**
+ * Metrics with names that match a rule in the inclusion_patterns are
+ * targeted by this schedule. Metrics that match the exclusion_patterns
+ * are not targeted for this schedule, even if they match an inclusion
+ * pattern.
+ *
+ * Generated from protobuf field <code>repeated .opentelemetry.proto.metrics.experimental.MetricConfigResponse.Schedule.Pattern exclusion_patterns = 1;</code>
+ */
+ private $exclusion_patterns;
+ /**
+ * Generated from protobuf field <code>repeated .opentelemetry.proto.metrics.experimental.MetricConfigResponse.Schedule.Pattern inclusion_patterns = 2;</code>
+ */
+ private $inclusion_patterns;
+ /**
+ * Describes the collection period for each metric in seconds.
+ * A period of 0 means to not export.
+ *
+ * Generated from protobuf field <code>int32 period_sec = 3;</code>
+ */
+ protected $period_sec = 0;
+
+ /**
+ * Constructor.
+ *
+ * @param array $data {
+ * Optional. Data for populating the Message object.
+ *
+ * @type \Opentelemetry\Proto\Metrics\Experimental\MetricConfigResponse\Schedule\Pattern[]|\Google\Protobuf\Internal\RepeatedField $exclusion_patterns
+ * Metrics with names that match a rule in the inclusion_patterns are
+ * targeted by this schedule. Metrics that match the exclusion_patterns
+ * are not targeted for this schedule, even if they match an inclusion
+ * pattern.
+ * @type \Opentelemetry\Proto\Metrics\Experimental\MetricConfigResponse\Schedule\Pattern[]|\Google\Protobuf\Internal\RepeatedField $inclusion_patterns
+ * @type int $period_sec
+ * Describes the collection period for each metric in seconds.
+ * A period of 0 means to not export.
+ * }
+ */
+ public function __construct($data = NULL) {
+ \GPBMetadata\Opentelemetry\Proto\Metrics\Experimental\MetricsConfigService::initOnce();
+ parent::__construct($data);
+ }
+
+ /**
+ * Metrics with names that match a rule in the inclusion_patterns are
+ * targeted by this schedule. Metrics that match the exclusion_patterns
+ * are not targeted for this schedule, even if they match an inclusion
+ * pattern.
+ *
+ * Generated from protobuf field <code>repeated .opentelemetry.proto.metrics.experimental.MetricConfigResponse.Schedule.Pattern exclusion_patterns = 1;</code>
+ * @return \Google\Protobuf\Internal\RepeatedField
+ */
+ public function getExclusionPatterns()
+ {
+ return $this->exclusion_patterns;
+ }
+
+ /**
+ * Metrics with names that match a rule in the inclusion_patterns are
+ * targeted by this schedule. Metrics that match the exclusion_patterns
+ * are not targeted for this schedule, even if they match an inclusion
+ * pattern.
+ *
+ * Generated from protobuf field <code>repeated .opentelemetry.proto.metrics.experimental.MetricConfigResponse.Schedule.Pattern exclusion_patterns = 1;</code>
+ * @param \Opentelemetry\Proto\Metrics\Experimental\MetricConfigResponse\Schedule\Pattern[]|\Google\Protobuf\Internal\RepeatedField $var
+ * @return $this
+ */
+ public function setExclusionPatterns($var)
+ {
+ $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Opentelemetry\Proto\Metrics\Experimental\MetricConfigResponse\Schedule\Pattern::class);
+ $this->exclusion_patterns = $arr;
+
+ return $this;
+ }
+
+ /**
+ * Generated from protobuf field <code>repeated .opentelemetry.proto.metrics.experimental.MetricConfigResponse.Schedule.Pattern inclusion_patterns = 2;</code>
+ * @return \Google\Protobuf\Internal\RepeatedField
+ */
+ public function getInclusionPatterns()
+ {
+ return $this->inclusion_patterns;
+ }
+
+ /**
+ * Generated from protobuf field <code>repeated .opentelemetry.proto.metrics.experimental.MetricConfigResponse.Schedule.Pattern inclusion_patterns = 2;</code>
+ * @param \Opentelemetry\Proto\Metrics\Experimental\MetricConfigResponse\Schedule\Pattern[]|\Google\Protobuf\Internal\RepeatedField $var
+ * @return $this
+ */
+ public function setInclusionPatterns($var)
+ {
+ $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Opentelemetry\Proto\Metrics\Experimental\MetricConfigResponse\Schedule\Pattern::class);
+ $this->inclusion_patterns = $arr;
+
+ return $this;
+ }
+
+ /**
+ * Describes the collection period for each metric in seconds.
+ * A period of 0 means to not export.
+ *
+ * Generated from protobuf field <code>int32 period_sec = 3;</code>
+ * @return int
+ */
+ public function getPeriodSec()
+ {
+ return $this->period_sec;
+ }
+
+ /**
+ * Describes the collection period for each metric in seconds.
+ * A period of 0 means to not export.
+ *
+ * Generated from protobuf field <code>int32 period_sec = 3;</code>
+ * @param int $var
+ * @return $this
+ */
+ public function setPeriodSec($var)
+ {
+ GPBUtil::checkInt32($var);
+ $this->period_sec = $var;
+
+ return $this;
+ }
+
+}
+
+// Adding a class alias for backwards compatibility with the previous class name.
+class_alias(Schedule::class, \Opentelemetry\Proto\Metrics\Experimental\MetricConfigResponse_Schedule::class);
+
diff --git a/vendor/open-telemetry/gen-otlp-protobuf/Opentelemetry/Proto/Metrics/Experimental/MetricConfigResponse/Schedule/Pattern.php b/vendor/open-telemetry/gen-otlp-protobuf/Opentelemetry/Proto/Metrics/Experimental/MetricConfigResponse/Schedule/Pattern.php
new file mode 100644
index 000000000..839c097fb
--- /dev/null
+++ b/vendor/open-telemetry/gen-otlp-protobuf/Opentelemetry/Proto/Metrics/Experimental/MetricConfigResponse/Schedule/Pattern.php
@@ -0,0 +1,113 @@
+<?php
+# Generated by the protocol buffer compiler. DO NOT EDIT!
+# source: opentelemetry/proto/metrics/experimental/metrics_config_service.proto
+
+namespace Opentelemetry\Proto\Metrics\Experimental\MetricConfigResponse\Schedule;
+
+use Google\Protobuf\Internal\GPBType;
+use Google\Protobuf\Internal\RepeatedField;
+use Google\Protobuf\Internal\GPBUtil;
+
+/**
+ * A light-weight pattern that can match 1 or more
+ * metrics, for which this schedule will apply. The string is used to
+ * match against metric names. It should not exceed 100k characters.
+ *
+ * Generated from protobuf message <code>opentelemetry.proto.metrics.experimental.MetricConfigResponse.Schedule.Pattern</code>
+ */
+class Pattern extends \Google\Protobuf\Internal\Message
+{
+ protected $match;
+
+ /**
+ * Constructor.
+ *
+ * @param array $data {
+ * Optional. Data for populating the Message object.
+ *
+ * @type string $equals
+ * matches the metric name exactly
+ * @type string $starts_with
+ * prefix-matches the metric name
+ * }
+ */
+ public function __construct($data = NULL) {
+ \GPBMetadata\Opentelemetry\Proto\Metrics\Experimental\MetricsConfigService::initOnce();
+ parent::__construct($data);
+ }
+
+ /**
+ * matches the metric name exactly
+ *
+ * Generated from protobuf field <code>string equals = 1;</code>
+ * @return string
+ */
+ public function getEquals()
+ {
+ return $this->readOneof(1);
+ }
+
+ public function hasEquals()
+ {
+ return $this->hasOneof(1);
+ }
+
+ /**
+ * matches the metric name exactly
+ *
+ * Generated from protobuf field <code>string equals = 1;</code>
+ * @param string $var
+ * @return $this
+ */
+ public function setEquals($var)
+ {
+ GPBUtil::checkString($var, True);
+ $this->writeOneof(1, $var);
+
+ return $this;
+ }
+
+ /**
+ * prefix-matches the metric name
+ *
+ * Generated from protobuf field <code>string starts_with = 2;</code>
+ * @return string
+ */
+ public function getStartsWith()
+ {
+ return $this->readOneof(2);
+ }
+
+ public function hasStartsWith()
+ {
+ return $this->hasOneof(2);
+ }
+
+ /**
+ * prefix-matches the metric name
+ *
+ * Generated from protobuf field <code>string starts_with = 2;</code>
+ * @param string $var
+ * @return $this
+ */
+ public function setStartsWith($var)
+ {
+ GPBUtil::checkString($var, True);
+ $this->writeOneof(2, $var);
+
+ return $this;
+ }
+
+ /**
+ * @return string
+ */
+ public function getMatch()
+ {
+ return $this->whichOneof("match");
+ }
+
+}
+
+// Adding a class alias for backwards compatibility with the previous class name.
+class_alias(Pattern::class, \Opentelemetry\Proto\Metrics\Experimental\MetricConfigResponse_Schedule_Pattern::class);
+
diff --git a/vendor/open-telemetry/gen-otlp-protobuf/Opentelemetry/Proto/Metrics/Experimental/MetricConfigResponse_Schedule.php b/vendor/open-telemetry/gen-otlp-protobuf/Opentelemetry/Proto/Metrics/Experimental/MetricConfigResponse_Schedule.php
new file mode 100644
index 000000000..5486976fc
--- /dev/null
+++ b/vendor/open-telemetry/gen-otlp-protobuf/Opentelemetry/Proto/Metrics/Experimental/MetricConfigResponse_Schedule.php
@@ -0,0 +1,16 @@
+<?php
+# Generated by the protocol buffer compiler. DO NOT EDIT!
+# source: opentelemetry/proto/metrics/experimental/metrics_config_service.proto
+
+namespace Opentelemetry\Proto\Metrics\Experimental;
+
+if (false) {
+ /**
+ * This class is deprecated. Use Opentelemetry\Proto\Metrics\Experimental\MetricConfigResponse\Schedule instead.
+ * @deprecated
+ */
+ class MetricConfigResponse_Schedule {}
+}
+class_exists(MetricConfigResponse\Schedule::class);
+@trigger_error('Opentelemetry\Proto\Metrics\Experimental\MetricConfigResponse_Schedule is deprecated and will be removed in the next major release. Use Opentelemetry\Proto\Metrics\Experimental\MetricConfigResponse\Schedule instead', E_USER_DEPRECATED);
+
diff --git a/vendor/open-telemetry/gen-otlp-protobuf/Opentelemetry/Proto/Metrics/Experimental/MetricConfigResponse_Schedule_Pattern.php b/vendor/open-telemetry/gen-otlp-protobuf/Opentelemetry/Proto/Metrics/Experimental/MetricConfigResponse_Schedule_Pattern.php
new file mode 100644
index 000000000..cd516c784
--- /dev/null
+++ b/vendor/open-telemetry/gen-otlp-protobuf/Opentelemetry/Proto/Metrics/Experimental/MetricConfigResponse_Schedule_Pattern.php
@@ -0,0 +1,16 @@
+<?php
+# Generated by the protocol buffer compiler. DO NOT EDIT!
+# source: opentelemetry/proto/metrics/experimental/metrics_config_service.proto
+
+namespace Opentelemetry\Proto\Metrics\Experimental;
+
+if (false) {
+ /**
+ * This class is deprecated. Use Opentelemetry\Proto\Metrics\Experimental\MetricConfigResponse\Schedule\Pattern instead.
+ * @deprecated
+ */
+ class MetricConfigResponse_Schedule_Pattern {}
+}
+class_exists(MetricConfigResponse\Schedule\Pattern::class);
+@trigger_error('Opentelemetry\Proto\Metrics\Experimental\MetricConfigResponse_Schedule_Pattern is deprecated and will be removed in the next major release. Use Opentelemetry\Proto\Metrics\Experimental\MetricConfigResponse\Schedule\Pattern instead', E_USER_DEPRECATED);
+