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 e484143 commit 754817cCopy full SHA for 754817c
pom.xml
@@ -4,7 +4,7 @@
4
5
<groupId>scouter.plugin.server</groupId>
6
<artifactId>scouter-plugin-server-influxdb</artifactId>
7
- <version>1.0.1-SNAPSHOT</version>
+ <version>1.0.2-SNAPSHOT</version>
8
<packaging>jar</packaging>
9
10
<name>scouter-plugin-server-influxdb</name>
src/main/java/scouter/plugin/server/influxdb/InfluxdbPlugin.java
@@ -160,6 +160,9 @@ public void counter(final PerfCounterPack pack) {
160
continue;
161
}
162
Object value = valueOrigin.toJavaObject();
163
+ if(!(value instanceof Number)) {
164
+ continue;
165
+ }
166
String key = field.getKey();
167
builder.field(key, value);
168
0 commit comments