public static String checkServiceUrl()

in src/main/java/org/apache/pulsar/manager/service/impl/BrokerStatsServiceImpl.java [292:301]


    public static String checkServiceUrl(String serviceUrl, String requestHost) {
        if (serviceUrl == null || serviceUrl.length() <= 0) {
            serviceUrl = requestHost;
        }

        if (!serviceUrl.startsWith("http")) {
            serviceUrl = "http://" + serviceUrl;
        }
        return serviceUrl;
    }