blob: fd260a56558e47e4efdd455ddc8e593de3d6e3f3 [file] [log] [blame]
Daniele Moro94660a02019-12-02 12:02:07 -08001/*
Joey Armstronga68e7852024-01-28 13:27:02 -05002 * Copyright 2019-2024 Open Networking Foundation (ONF) and the ONF Contributors
Daniele Moro94660a02019-12-02 12:02:07 -08003 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package org.opencord.bng.cli;
18
19import org.apache.karaf.shell.api.action.Command;
20import org.apache.karaf.shell.api.action.lifecycle.Service;
21import org.onosproject.cli.AbstractShellCommand;
22import org.onosproject.net.pi.runtime.PiCounterCellData;
23import org.opencord.bng.BngStatsService;
24
25@Service
26@Command(scope = "bng", name = "control-stats",
27 description = "Retrieve statistics of control plane packets of un-registered attachments")
28public class ControlPacketsStats extends AbstractShellCommand {
29
30 @Override
31 protected void doExecute() throws Exception {
32 BngStatsService bngStatsService = AbstractShellCommand.get(BngStatsService.class);
33 PiCounterCellData stats = bngStatsService.getControlStats();
34 if (stats != null) {
35 print("Packets: " + stats.packets());
36 print("Bytes:\t" + stats.bytes());
37 } else {
38 print("No BNG user plane device configured");
39 }
40 }
41}