OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:tagKey
(Results
1 - 7
of
7
) sorted by null
/external/opencensus-java/impl_core/src/main/java/io/opencensus/implcore/stats/
MetricUtils.java
29
import io.opencensus.tags.
TagKey
;
49
for (
TagKey
tagKey
: view.getColumns()) {
51
labelKeys.add(LabelKey.create(
tagKey
.getName(), ""));
RecordUtils.java
46
import io.opencensus.tags.
TagKey
;
64
static Map<
TagKey
, TagValue> getTagMap(TagContext ctx) {
68
Map<
TagKey
, TagValue> tags = Maps.newHashMap();
79
Map<? extends
TagKey
, ? extends TagValue> tags, List<? extends
TagKey
> columns) {
84
TagKey
tagKey
= columns.get(i);
85
if (!tags.containsKey(
tagKey
)) {
89
tagValues.add(tags.get(
tagKey
));
/external/opencensus-java/exporters/stats/stackdriver/src/main/java/io/opencensus/exporter/stats/stackdriver/
StackdriverExportUtils.java
60
import io.opencensus.tags.
TagKey
;
81
@VisibleForTesting static final String LABEL_DESCRIPTION = "OpenCensus
TagKey
";
222
for (
TagKey
tagKey
: view.getColumns()) {
223
builder.addLabels(createLabelDescriptor(
tagKey
));
245
// Construct a LabelDescriptor from a
TagKey
247
static LabelDescriptor createLabelDescriptor(
TagKey
tagKey
) {
249
builder.setKey(
tagKey
.getName());
339
List<
TagKey
> columns = view.getColumns()
[
all
...]
/external/opencensus-java/exporters/stats/prometheus/src/main/java/io/opencensus/exporter/stats/prometheus/
PrometheusExportUtils.java
39
import io.opencensus.tags.
TagKey
;
77
* <p>{@link
TagKey
} and {@link TagValue} will be converted to Prometheus {@code LabelName} and
274
static List<String> convertToLabelNames(List<
TagKey
> tagKeys) {
276
for (
TagKey
tagKey
: tagKeys) {
277
labelNames.add(Collector.sanitizeMetricName(
tagKey
.getName()));
/external/opencensus-java/contrib/zpages/src/test/java/io/opencensus/contrib/zpages/
StatszZPageHandlerTest.java
46
import io.opencensus.tags.
TagKey
;
72
Arrays.asList(
TagKey
.create("my_key")),
218
for (
TagKey
tagKey
: view.getColumns()) {
219
assertThat(output.toString()).contains(
tagKey
.getName());
/cts/tests/tests/media/src/android/media/cts/
ExifInterfaceTest.java
237
for (String
tagKey
: EXIF_TAGS) {
238
String tagValue = exifInterface.getAttribute(
tagKey
);
239
Log.v(TAG, fileName + " Key{" +
tagKey
+ "} = '" + tagValue + "'");
/external/opencensus-java/contrib/zpages/src/main/java/io/opencensus/contrib/zpages/
StatszZPageHandler.java
47
import io.opencensus.tags.
TagKey
;
386
for (
TagKey
tagKey
: view.getColumns()) {
387
formatter.format("<th class=\"borderRL\">
TagKey
: %s (string)</th>",
tagKey
.getName());
Completed in 5069 milliseconds