39494418136f5c83ed8b8f034da9ba6c12a4bb53
[bgpcep.git] / bgp / rib-impl / src / main / java / org / opendaylight / protocol / bgp / rib / impl / stats / peer / BGPPeerStats.java
1 /*
2  * Copyright (c) 2016 Brocade Communications Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.protocol.bgp.rib.impl.stats.peer;
9
10 import org.opendaylight.controller.config.yang.bgp.rib.impl.BgpPeerState;
11 import org.opendaylight.protocol.bgp.rib.impl.stats.UnsignedInt32Counter;
12 import org.opendaylight.protocol.bgp.rib.impl.stats.peer.route.PerTableTypeRouteCounter;
13
14 /**
15  * @author Kevin Wang
16  */
17 public interface BGPPeerStats {
18     BgpPeerState getBgpPeerState();
19
20     PerTableTypeRouteCounter getAdjRibInRouteCounters();
21
22     PerTableTypeRouteCounter getAdjRibOutRouteCounters();
23
24     PerTableTypeRouteCounter getEffectiveRibInRouteCounters();
25
26     UnsignedInt32Counter getSessionEstablishedCounter();
27 }