qwtsc commented on issue #2354:
URL: 
https://github.com/apache/incubator-hugegraph/issues/2354#issuecomment-1818073731

   And metric name is also invalid. There are not allowed to have / or $, so 
this snippet of code should change to the following.
   ```java
       public static String replaceDotDashInKey(String orgKey) {
           return orgKey.replace(".", "_").replace("-", "_").replace("/", 
"_").replace("$", "_");
       }
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to