blob: f446ef78afc067180e0d28f0a47c9eb981226582 [file] [log] [blame]
kmcpeakeb172d5f2015-12-10 11:30:43 +00001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2015-present Open Networking Laboratory
kmcpeakeb172d5f2015-12-10 11:30:43 +00003 *
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 */
16package org.onosproject.faultmanagement.alarms.cli;
17
18import java.util.Map;
19import org.apache.karaf.shell.commands.Argument;
20import org.apache.karaf.shell.commands.Command;
21import org.onosproject.cli.AbstractShellCommand;
22import org.onosproject.incubator.net.faultmanagement.alarm.Alarm;
23import org.onosproject.incubator.net.faultmanagement.alarm.AlarmService;
24import org.onosproject.net.DeviceId;
25
26/**
27 * Lists alarm counts across specified device.
28 */
29@Command(scope = "onos", name = "alarm-counts-device",
30 description = "Lists alarm counts across specified device.")
31public class GetDeviceAlarmsCounts extends AbstractShellCommand {
32
33 @Argument(index = 0, name = "deviceId", description = "Device identity", required = true, multiValued = false)
34 String deviceId = null;
35
36 @Override
37 protected void execute() {
38 Map<Alarm.SeverityLevel, Long> alarmCounts = AbstractShellCommand.get(AlarmService.class).
39 getAlarmCounts(DeviceId.deviceId(deviceId));
40 // Deliberately using same formatting for both ...
Andrea Campanellae72ac552016-04-11 10:04:52 -070041 printCounts(alarmCounts);
kmcpeakeb172d5f2015-12-10 11:30:43 +000042 }
43
Andrea Campanellae72ac552016-04-11 10:04:52 -070044 void printCounts(Map<Alarm.SeverityLevel, Long> alarmCounts) {
Sho SHIMIZUa09e1bb2016-08-01 14:25:25 -070045 alarmCounts.entrySet().forEach((countEntry) -> {
Andrea Campanellae72ac552016-04-11 10:04:52 -070046 print(String.format("%s, %d",
Sho SHIMIZUa09e1bb2016-08-01 14:25:25 -070047 countEntry.getKey(), countEntry.getValue()));
Andrea Campanellae72ac552016-04-11 10:04:52 -070048
49 });
50 }
kmcpeakeb172d5f2015-12-10 11:30:43 +000051}