opentelemetry.proto.metrics.v1.MetricsData */ class MetricsData extends \Google\Protobuf\Internal\Message { /** * An array of ResourceMetrics. * For data coming from a single resource this array will typically contain * one element. Intermediary nodes that receive data from multiple origins * typically batch the data before forwarding further and in that case this * array will contain multiple elements. * * Generated from protobuf field repeated .opentelemetry.proto.metrics.v1.ResourceMetrics resource_metrics = 1; */ private $resource_metrics; /** * Constructor. * * @param array $data { * Optional. Data for populating the Message object. * * @type \Opentelemetry\Proto\Metrics\V1\ResourceMetrics[]|\Google\Protobuf\Internal\RepeatedField $resource_metrics * An array of ResourceMetrics. * For data coming from a single resource this array will typically contain * one element. Intermediary nodes that receive data from multiple origins * typically batch the data before forwarding further and in that case this * array will contain multiple elements. * } */ public function __construct($data = NULL) { \GPBMetadata\Opentelemetry\Proto\Metrics\V1\Metrics::initOnce(); parent::__construct($data); } /** * An array of ResourceMetrics. * For data coming from a single resource this array will typically contain * one element. Intermediary nodes that receive data from multiple origins * typically batch the data before forwarding further and in that case this * array will contain multiple elements. * * Generated from protobuf field repeated .opentelemetry.proto.metrics.v1.ResourceMetrics resource_metrics = 1; * @return \Google\Protobuf\Internal\RepeatedField */ public function getResourceMetrics() { return $this->resource_metrics; } /** * An array of ResourceMetrics. * For data coming from a single resource this array will typically contain * one element. Intermediary nodes that receive data from multiple origins * typically batch the data before forwarding further and in that case this * array will contain multiple elements. * * Generated from protobuf field repeated .opentelemetry.proto.metrics.v1.ResourceMetrics resource_metrics = 1; * @param \Opentelemetry\Proto\Metrics\V1\ResourceMetrics[]|\Google\Protobuf\Internal\RepeatedField $var * @return $this */ public function setResourceMetrics($var) { $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Opentelemetry\Proto\Metrics\V1\ResourceMetrics::class); $this->resource_metrics = $arr; return $this; } }