opentelemetry.proto.logs.v1.LogsData
*/
class LogsData extends \Google\Protobuf\Internal\Message
{
/**
* An array of ResourceLogs.
* 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.logs.v1.ResourceLogs resource_logs = 1;
*/
private $resource_logs;
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type \Opentelemetry\Proto\Logs\V1\ResourceLogs[]|\Google\Protobuf\Internal\RepeatedField $resource_logs
* An array of ResourceLogs.
* 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\Logs\V1\Logs::initOnce();
parent::__construct($data);
}
/**
* An array of ResourceLogs.
* 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.logs.v1.ResourceLogs resource_logs = 1;
* @return \Google\Protobuf\Internal\RepeatedField
*/
public function getResourceLogs()
{
return $this->resource_logs;
}
/**
* An array of ResourceLogs.
* 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.logs.v1.ResourceLogs resource_logs = 1;
* @param \Opentelemetry\Proto\Logs\V1\ResourceLogs[]|\Google\Protobuf\Internal\RepeatedField $var
* @return $this
*/
public function setResourceLogs($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Opentelemetry\Proto\Logs\V1\ResourceLogs::class);
$this->resource_logs = $arr;
return $this;
}
}