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 booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.labels()Returns the value of thelabelsrecord component.Returns the value of thelabelsNamesrecord component.name()Returns the value of thenamerecord component.longReturns the value of thetimestamprecord component.final StringtoString()Returns a string representation of this record class.doublevalue()Returns the value of thevaluerecord component.
-
Constructor Details
-
Sample
public Sample(String name, List<String> labelsNames, List<String> labels, double value, long timestamp) Creates an instance of aSamplerecord class.- Parameters:
name- the value for thenamerecord componentlabelsNames- the value for thelabelsNamesrecord componentlabels- the value for thelabelsrecord componentvalue- the value for thevaluerecord componenttimestamp- the value for thetimestamprecord 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 thenamerecord component.- Returns:
- the value of the
namerecord component
-
labelsNames
Returns the value of thelabelsNamesrecord component.- Returns:
- the value of the
labelsNamesrecord component
-
labels
Returns the value of thelabelsrecord component.- Returns:
- the value of the
labelsrecord component
-
value
public double value()Returns the value of thevaluerecord component.- Returns:
- the value of the
valuerecord component
-
timestamp
public long timestamp()Returns the value of thetimestamprecord component.- Returns:
- the value of the
timestamprecord component
-