All Downloads are FREE. Search and download functionalities are using the official Maven repository.

pl.allegro.tech.hermes.client.metrics.MetricsUtils Maven / Gradle / Ivy

There is a newer version: 2.10.0
Show newest version
package pl.allegro.tech.hermes.client.metrics;

class MetricsUtils {

  static String sanitizeTopic(String topic) {
    int lastDot = topic.lastIndexOf(".");
    char[] sanitized = topic.replaceAll("\\.", "_").toCharArray();
    sanitized[lastDot] = '.';
    return String.valueOf(sanitized);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy