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

io.prometheus.client.exporter.DefaultHttpConnectionFactory Maven / Gradle / Ivy

package io.prometheus.client.exporter;

import java.io.IOException;
import java.net.HttpURLConnection;
import java.net.URL;

public class DefaultHttpConnectionFactory implements HttpConnectionFactory {
    @Override
    public HttpURLConnection create(String url) throws IOException {
        return (HttpURLConnection) new URL(url).openConnection();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy