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

com.netflix.zuul.stats.RouteStatusCodeMonitor 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.stats;

import com.google.common.annotations.VisibleForTesting;
import com.netflix.spectator.api.Registry;
import com.netflix.spectator.api.Spectator;
import com.netflix.spectator.api.patterns.PolledMeter;
import com.netflix.zuul.stats.monitoring.NamedCount;
import java.util.Objects;
import java.util.concurrent.atomic.AtomicLong;
import javax.annotation.Nullable;

/**
 * counter for per route/status code counting
 * @author Mikey Cohen
 * Date: 2/3/12
 * Time: 3:04 PM
 */
public class RouteStatusCodeMonitor implements NamedCount {
    private final String routeCode;

    @VisibleForTesting
    final String route;

    private final int statusCode;

    private final AtomicLong count = new AtomicLong();

    public RouteStatusCodeMonitor(@Nullable String route, int statusCode) {
        if (route == null) {
            route = "";
        }
        this.route = route;
        this.statusCode = statusCode;
        this.routeCode = route + "_" + statusCode;
        Registry registry = Spectator.globalRegistry();
        PolledMeter.using(registry)
                .withId(registry.createId("zuul.RouteStatusCodeMonitor", "ID", routeCode))
                .monitorValue(this, RouteStatusCodeMonitor::getCount);
    }

    @Override
    public boolean equals(Object o) {
        if (this == o) {
            return true;
        }
        if (o == null || getClass() != o.getClass()) {
            return false;
        }

        RouteStatusCodeMonitor statsData = (RouteStatusCodeMonitor) o;

        if (statusCode != statsData.statusCode) {
            return false;
        }
        if (!Objects.equals(route, statsData.route)) {
            return false;
        }

        return true;
    }

    @Override
    public int hashCode() {
        int result = route != null ? route.hashCode() : 0;
        result = 31 * result + statusCode;
        return result;
    }

    @Override
    public String getName() {
        return routeCode;
    }

    @Override
    public long getCount() {
        return count.get();
    }

    /**
     * increment the count
     */
    public void update() {
        count.incrementAndGet();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy