summaryrefslogtreecommitdiff
path: root/vendor/open-telemetry/gen-otlp-protobuf/Opentelemetry/Proto/Metrics/V1/SummaryDataPoint/ValueAtQuantile.php
blob: 8200b6d266e23d36d4a34f5881dc7f09623d70ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<?php
# Generated by the protocol buffer compiler.  DO NOT EDIT!
# source: opentelemetry/proto/metrics/v1/metrics.proto

namespace Opentelemetry\Proto\Metrics\V1\SummaryDataPoint;

use Google\Protobuf\Internal\GPBType;
use Google\Protobuf\Internal\RepeatedField;
use Google\Protobuf\Internal\GPBUtil;

/**
 * Represents the value at a given quantile of a distribution.
 * To record Min and Max values following conventions are used:
 * - The 1.0 quantile is equivalent to the maximum value observed.
 * - The 0.0 quantile is equivalent to the minimum value observed.
 * See the following issue for more context:
 * https://github.com/open-telemetry/opentelemetry-proto/issues/125
 *
 * Generated from protobuf message <code>opentelemetry.proto.metrics.v1.SummaryDataPoint.ValueAtQuantile</code>
 */
class ValueAtQuantile extends \Google\Protobuf\Internal\Message
{
    /**
     * The quantile of a distribution. Must be in the interval
     * [0.0, 1.0].
     *
     * Generated from protobuf field <code>double quantile = 1;</code>
     */
    protected $quantile = 0.0;
    /**
     * The value at the given quantile of a distribution.
     * Quantile values must NOT be negative.
     *
     * Generated from protobuf field <code>double value = 2;</code>
     */
    protected $value = 0.0;

    /**
     * Constructor.
     *
     * @param array $data {
     *     Optional. Data for populating the Message object.
     *
     *     @type float $quantile
     *           The quantile of a distribution. Must be in the interval
     *           [0.0, 1.0].
     *     @type float $value
     *           The value at the given quantile of a distribution.
     *           Quantile values must NOT be negative.
     * }
     */
    public function __construct($data = NULL) {
        \GPBMetadata\Opentelemetry\Proto\Metrics\V1\Metrics::initOnce();
        parent::__construct($data);
    }

    /**
     * The quantile of a distribution. Must be in the interval
     * [0.0, 1.0].
     *
     * Generated from protobuf field <code>double quantile = 1;</code>
     * @return float
     */
    public function getQuantile()
    {
        return $this->quantile;
    }

    /**
     * The quantile of a distribution. Must be in the interval
     * [0.0, 1.0].
     *
     * Generated from protobuf field <code>double quantile = 1;</code>
     * @param float $var
     * @return $this
     */
    public function setQuantile($var)
    {
        GPBUtil::checkDouble($var);
        $this->quantile = $var;

        return $this;
    }

    /**
     * The value at the given quantile of a distribution.
     * Quantile values must NOT be negative.
     *
     * Generated from protobuf field <code>double value = 2;</code>
     * @return float
     */
    public function getValue()
    {
        return $this->value;
    }

    /**
     * The value at the given quantile of a distribution.
     * Quantile values must NOT be negative.
     *
     * Generated from protobuf field <code>double value = 2;</code>
     * @param float $var
     * @return $this
     */
    public function setValue($var)
    {
        GPBUtil::checkDouble($var);
        $this->value = $var;

        return $this;
    }

}

// Adding a class alias for backwards compatibility with the previous class name.
class_alias(ValueAtQuantile::class, \Opentelemetry\Proto\Metrics\V1\SummaryDataPoint_ValueAtQuantile::class);