function ExportMetricsPartialSuccess::setRejectedDataPoints
The number of rejected data points. A `rejected_<signal>` field holding a `0` value indicates that the request was fully accepted.
Generated from protobuf field <code>int64 rejected_data_points = 1;</code>
Parameters
int|string $var:
Return value
$this
File
-
vendor/
open-telemetry/ gen-otlp-protobuf/ Opentelemetry/ Proto/ Collector/ Metrics/ V1/ ExportMetricsPartialSuccess.php, line 82
Class
- ExportMetricsPartialSuccess
- Generated from protobuf message <code>opentelemetry.proto.collector.metrics.v1.ExportMetricsPartialSuccess</code>
Namespace
Opentelemetry\Proto\Collector\Metrics\V1Code
public function setRejectedDataPoints($var) {
GPBUtil::checkInt64($var);
$this->rejected_data_points = $var;
return $this;
}