Package | Description |
---|---|
io.micrometer.core.instrument |
Copyright 2017 Pivotal Software, Inc.
|
Modifier and Type | Method and Description |
---|---|
Tags |
Tags.and(Iterable<? extends Tag> tags)
Return a new
Tags instance by merging this collection and the specific tags. |
Tags |
Tags.and(String... keyValues)
Return a new
Tags instance by merging this collection and the specific key/value pairs. |
Tags |
Tags.and(String key,
String value)
Return a new
Tags instance by merging this collection and the specific key/value pair. |
Tags |
Tags.and(Tag... tags)
Return a new
Tags instance by merging this collection and the specific tags. |
static Tags |
Tags.concat(Iterable<? extends Tag> tags,
Iterable<Tag> otherTags)
Return a new
Tags instance my concatenating the specified values. |
static Tags |
Tags.concat(Iterable<? extends Tag> tags,
String... keyValues)
Return a new
Tags instance my concatenating the specified key value pairs. |
static Tags |
Tags.empty()
Return a
Tags instance that contains no elements. |
static Tags |
Tags.of(Iterable<? extends Tag> tags)
Return a new
Tags instance containing tags constructed from the specified source tags. |
static Tags |
Tags.of(String... keyValues)
Return a new
Tags instance containing tags constructed from the specified key value pairs. |
static Tags |
Tags.of(String key,
String value)
Return a new
Tags instance containing tags constructed from the specified key value pair. |
static Tags |
Tags.of(Tag... tags)
Return a new
Tags instance containing tags constructed from the specified tags. |
Modifier and Type | Method and Description |
---|---|
static MultiGauge.Row |
MultiGauge.Row.of(Tags uniqueTags,
Number number) |
static MultiGauge.Row |
MultiGauge.Row.of(Tags uniqueTags,
Supplier<Number> valueFunction) |
static <T> MultiGauge.Row |
MultiGauge.Row.of(Tags uniqueTags,
T obj,
ToDoubleFunction<T> valueFunction) |
Constructor and Description |
---|
Id(String name,
Tags tags,
String baseUnit,
String description,
Meter.Type type) |
Copyright © 2019. All rights reserved.