opentelemetry.proto.logs.v1.InstrumentationLibraryLogs
*/
class InstrumentationLibraryLogs extends \Google\Protobuf\Internal\Message
{
/**
* The instrumentation library information for the logs in this message.
* Semantically when InstrumentationLibrary isn't set, it is equivalent with
* an empty instrumentation library name (unknown).
*
* Generated from protobuf field .opentelemetry.proto.common.v1.InstrumentationLibrary instrumentation_library = 1;
*/
protected $instrumentation_library = null;
/**
* A list of logs that originate from an instrumentation library.
*
* Generated from protobuf field repeated .opentelemetry.proto.logs.v1.LogRecord log_records = 2;
*/
private $log_records;
/**
* This schema_url applies to all logs in the "logs" field.
*
* Generated from protobuf field string schema_url = 3;
*/
protected $schema_url = '';
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type \Opentelemetry\Proto\Common\V1\InstrumentationLibrary $instrumentation_library
* The instrumentation library information for the logs in this message.
* Semantically when InstrumentationLibrary isn't set, it is equivalent with
* an empty instrumentation library name (unknown).
* @type \Opentelemetry\Proto\Logs\V1\LogRecord[]|\Google\Protobuf\Internal\RepeatedField $log_records
* A list of logs that originate from an instrumentation library.
* @type string $schema_url
* This schema_url applies to all logs in the "logs" field.
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Opentelemetry\Proto\Logs\V1\Logs::initOnce();
parent::__construct($data);
}
/**
* The instrumentation library information for the logs in this message.
* Semantically when InstrumentationLibrary isn't set, it is equivalent with
* an empty instrumentation library name (unknown).
*
* Generated from protobuf field .opentelemetry.proto.common.v1.InstrumentationLibrary instrumentation_library = 1;
* @return \Opentelemetry\Proto\Common\V1\InstrumentationLibrary|null
*/
public function getInstrumentationLibrary()
{
return $this->instrumentation_library;
}
public function hasInstrumentationLibrary()
{
return isset($this->instrumentation_library);
}
public function clearInstrumentationLibrary()
{
unset($this->instrumentation_library);
}
/**
* The instrumentation library information for the logs in this message.
* Semantically when InstrumentationLibrary isn't set, it is equivalent with
* an empty instrumentation library name (unknown).
*
* Generated from protobuf field .opentelemetry.proto.common.v1.InstrumentationLibrary instrumentation_library = 1;
* @param \Opentelemetry\Proto\Common\V1\InstrumentationLibrary $var
* @return $this
*/
public function setInstrumentationLibrary($var)
{
GPBUtil::checkMessage($var, \Opentelemetry\Proto\Common\V1\InstrumentationLibrary::class);
$this->instrumentation_library = $var;
return $this;
}
/**
* A list of logs that originate from an instrumentation library.
*
* Generated from protobuf field repeated .opentelemetry.proto.logs.v1.LogRecord log_records = 2;
* @return \Google\Protobuf\Internal\RepeatedField
*/
public function getLogRecords()
{
return $this->log_records;
}
/**
* A list of logs that originate from an instrumentation library.
*
* Generated from protobuf field repeated .opentelemetry.proto.logs.v1.LogRecord log_records = 2;
* @param \Opentelemetry\Proto\Logs\V1\LogRecord[]|\Google\Protobuf\Internal\RepeatedField $var
* @return $this
*/
public function setLogRecords($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Opentelemetry\Proto\Logs\V1\LogRecord::class);
$this->log_records = $arr;
return $this;
}
/**
* This schema_url applies to all logs in the "logs" field.
*
* Generated from protobuf field string schema_url = 3;
* @return string
*/
public function getSchemaUrl()
{
return $this->schema_url;
}
/**
* This schema_url applies to all logs in the "logs" field.
*
* Generated from protobuf field string schema_url = 3;
* @param string $var
* @return $this
*/
public function setSchemaUrl($var)
{
GPBUtil::checkString($var, True);
$this->schema_url = $var;
return $this;
}
}