We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b5543df commit f1f0548Copy full SHA for f1f0548
wrapper/src/main/java/software/amazon/jdbc/util/telemetry/OpenTelemetryFactory.java
@@ -29,9 +29,9 @@ public class OpenTelemetryFactory implements TelemetryFactory {
29
* Max allowed name length for counters and gauges.
30
*
31
* @see
32
- * <a href="https://opentelemetry.io/docs/specs/otel/metrics/api/#:~:text=It%20can%20have%20a%20maximum%20length%20of%2063%20characters">More details</a>
+ * <a href="https://opentelemetry.io/docs/specs/otel/metrics/api/#instrument-name-syntax">More details</a>
33
*/
34
- private static final int NAME_MAX_LENGTH = 63;
+ private static final int NAME_MAX_LENGTH = 255;
35
36
private static Tracer tracer;
37
private static Meter meter;
0 commit comments