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

com.netflix.zuul.netty.SpectatorUtils Maven / Gradle / Ivy

There is a newer version: 2.5.13
Show newest version
/*
 * Copyright 2018 Netflix, Inc.
 *
 *      Licensed under the Apache License, Version 2.0 (the "License");
 *      you may not use this file except in compliance with the License.
 *      You may obtain a copy of the License at
 *
 *          http://www.apache.org/licenses/LICENSE-2.0
 *
 *      Unless required by applicable law or agreed to in writing, software
 *      distributed under the License is distributed on an "AS IS" BASIS,
 *      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *      See the License for the specific language governing permissions and
 *      limitations under the License.
 */

package com.netflix.zuul.netty;

import com.netflix.spectator.api.CompositeRegistry;
import com.netflix.spectator.api.Counter;
import com.netflix.spectator.api.Id;
import com.netflix.spectator.api.Spectator;
import com.netflix.spectator.api.Timer;

public final class SpectatorUtils {
    private SpectatorUtils() {}

    public static Counter newCounter(String name, String id) {
        return Spectator.globalRegistry().counter(name, "id", id);
    }

    public static Counter newCounter(String name, String id, String... tags) {
        String[] allTags = getTagsWithId(id, tags);
        return Spectator.globalRegistry().counter(name, allTags);
    }

    public static Timer newTimer(String name, String id) {
        return Spectator.registry().timer(name, "id", id);
    }

    public static Timer newTimer(String name, String id, String... tags) {
        return Spectator.globalRegistry().timer(name, getTagsWithId(id, tags));
    }

    public static  T newGauge(String name, String id, T number) {
        final CompositeRegistry registry = Spectator.globalRegistry();
        Id gaugeId = registry.createId(name, "id", id);
        return registry.gauge(gaugeId, number);
    }

    public static  T newGauge(String name, String id, T number, String... tags) {
        final CompositeRegistry registry = Spectator.globalRegistry();
        Id gaugeId = registry.createId(name, getTagsWithId(id, tags));
        return registry.gauge(gaugeId, number);
    }

    private static String[] getTagsWithId(String id, String[] tags) {
        String[] allTags = new String[tags.length + 2];
        System.arraycopy(tags, 0, allTags, 0, tags.length);
        allTags[allTags.length - 2] = "id";
        allTags[allTags.length - 1] = id;
        return allTags;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy