6648bf9b1c74946dbd4ed7a5628b7584a1425f8e
[bgpcep.git] / bgp / rib-impl / src / main / java / org / opendaylight / protocol / bgp / rib / impl / stats / rib / impl / BGPRenderStats.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.rib.impl;
9
10 import org.opendaylight.controller.config.yang.bgp.rib.impl.RIBImplRuntimeMXBean;
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 BGPRenderStats extends RIBImplRuntimeMXBean {
18
19     PerTableTypeRouteCounter getLocRibRouteCounter();
20
21     UnsignedInt32Counter getConfiguredPeerCounter();
22
23     UnsignedInt32Counter getConnectedPeerCounter();
24 }