blob: bf0ae569090a7c4b239ac99b81b9b7c046d3e1d4 [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 ...
41 GetAllAlarmsCounts.printCounts(alarmCounts);
42 }
43
44}