Record Class Sample
java.lang.Object
java.lang.Record
eu.rarogsoftware.rarog.platform.api.metrics.Sample
- Record Components:
name
- name of sample/metriclabelsNames
- list of ordered labels (dimensions) nameslabels
- list of ordered labels values (the same order as labelsNames)value
- value of metric
public record Sample(String name, List<String> labelsNames, List<String> labels, double value, long timestamp)
extends Record
Single metric sample. Represents state of metric in given time.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.labels()
Returns the value of thelabels
record component.Returns the value of thelabelsNames
record component.name()
Returns the value of thename
record component.long
Returns the value of thetimestamp
record component.final String
toString()
Returns a string representation of this record class.double
value()
Returns the value of thevalue
record component.
-
Constructor Details
-
Sample
public Sample(String name, List<String> labelsNames, List<String> labels, double value, long timestamp) Creates an instance of aSample
record class.- Parameters:
name
- the value for thename
record componentlabelsNames
- the value for thelabelsNames
record componentlabels
- the value for thelabels
record componentvalue
- the value for thevalue
record componenttimestamp
- the value for thetimestamp
record component
-
Sample
-
-
Method Details
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. Reference components are compared withObjects::equals(Object,Object)
; primitive components are compared with '=='. -
name
Returns the value of thename
record component.- Returns:
- the value of the
name
record component
-
labelsNames
Returns the value of thelabelsNames
record component.- Returns:
- the value of the
labelsNames
record component
-
labels
Returns the value of thelabels
record component.- Returns:
- the value of the
labels
record component
-
value
public double value()Returns the value of thevalue
record component.- Returns:
- the value of the
value
record component
-
timestamp
public long timestamp()Returns the value of thetimestamp
record component.- Returns:
- the value of the
timestamp
record component
-