NormalizeValueFunction

com.netflix.atlas.core.norm.NormalizeValueFunction
See theNormalizeValueFunction companion object
class NormalizeValueFunction(step: Long, heartbeat: Long, next: ValueFunction) extends ValueFunction

Normalizes metrics in a manner similar to RRDtool.

Value parameters

heartbeat

maximum time allowed between updates before NaN values will be used.

next

normalized values will be passed to the this function.

step

normalized distance between samples produced by this class.

Attributes

Companion
object
Graph
Supertypes
trait AutoCloseable
class Object
trait Matchable
class Any

Members list

Value members

Concrete methods

def apply(timestamp: Long, value: Double): Unit

Update with a new sample and return the value for a complete interval if one is available.

Update with a new sample and return the value for a complete interval if one is available.

Attributes

override def close(): Unit

Attributes

Definition Classes
ValueFunction -> AutoCloseable
override def toString: String

Returns a string representation of the object.

Returns a string representation of the object.

The default representation is platform dependent.

Attributes

Returns

a string representation of the object.

Definition Classes
Any