-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathDnsIncubatingAttributes.java
More file actions
34 lines (27 loc) · 1.05 KB
/
DnsIncubatingAttributes.java
File metadata and controls
34 lines (27 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/*
* Copyright The OpenTelemetry Authors
* SPDX-License-Identifier: Apache-2.0
*/
package io.opentelemetry.semconv.incubating;
import static io.opentelemetry.api.common.AttributeKey.stringArrayKey;
import static io.opentelemetry.api.common.AttributeKey.stringKey;
import io.opentelemetry.api.common.AttributeKey;
import java.util.List;
// DO NOT EDIT, this is an Auto-generated file from
// buildscripts/templates/registry/incubating_java/IncubatingSemanticAttributes.java.j2
@SuppressWarnings("unused")
public final class DnsIncubatingAttributes {
/** The list of IPv4 or IPv6 addresses resolved during DNS lookup. */
public static final AttributeKey<List<String>> DNS_ANSWERS = stringArrayKey("dns.answers");
/**
* The name being queried.
*
* <p>Notes:
*
* <p>The name represents the queried domain name as it appears in the DNS query without any
* additional normalization.
*/
public static final AttributeKey<String> DNS_QUESTION_NAME = stringKey("dns.question.name");
// Enum definitions
private DnsIncubatingAttributes() {}
}