Tag

com.netflix.atlas.core.model.Tag
See theTag companion object
case class Tag(key: String, value: String, count: Int) extends Comparable[Tag]

Represents a key/value pair and it's associated count. The count is the number of items that are marked with the tag.

Value parameters

count

number of items with this tag or -1 if unknown

key

key for the tag

value

value associated with the key

Attributes

Companion
object
Graph
Supertypes
trait Serializable
trait Product
trait Equals
trait Comparable[Tag]
class Object
trait Matchable
class Any
Show all

Members list

Value members

Concrete methods

def <(t: Tag): Boolean
def >(t: Tag): Boolean
def compareTo(t: Tag): Int

Tags are ordered by key, value, and then count.

Tags are ordered by key, value, and then count.

Attributes

Inherited methods

def productElementNames: Iterator[String]

Attributes

Inherited from:
Product
def productIterator: Iterator[Any]

Attributes

Inherited from:
Product