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 015ee5c commit b091041Copy full SHA for b091041
document-store/src/main/java/org/hypertrace/core/documentstore/metric/BaseDocStoreMetricProviderImpl.java
@@ -140,6 +140,8 @@ private String getStringLabelValue(JsonNode jsonNode) {
140
return String.valueOf(jsonNode.numberValue());
141
case BOOLEAN:
142
return String.valueOf(jsonNode.booleanValue());
143
+ case NULL:
144
+ return NULL_LABEL_VALUE_PLACEHOLDER;
145
default:
146
throw new IllegalArgumentException(
147
String.format("Unsupported JSON node type: %s", jsonNode.getNodeType()));
0 commit comments