/* * * Copyright 2016 RIFT.IO Inc * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * */ /** * @file rw-sorch-log.yang * @author Rift.IO * @date 03/02/2015 * @brief RiftWare Log Event Definitions for rw-sorch logging */ module rw-sorch-log { namespace "http://riftio.com/ns/riftware-1.0/rw-sorch-log"; prefix "rw-sorch-log"; import rw-base { prefix rwbase; } import rw-yang-types { prefix "rwt"; } import rw-notify-ext { prefix "rwnotify"; } import rw-log { prefix "rwlog"; } revision 2014-12-30 { description "Initial revision."; reference "RIFT Launchpad Logging"; } /* * Generic Logger Log Events - ID space 160000 - 160099 */ notification debug { rwnotify:log-event-id 160000; description "Generic Debug Log"; uses rwlog:severity-debug; leaf category { type string; } leaf log { type string; } } notification info { rwnotify:log-event-id 160001; description "Generic Info Log"; uses rwlog:severity-info; leaf category { type string; } leaf log { type string; } } notification warn { rwnotify:log-event-id 160002; description "Generic Warning Log"; uses rwlog:severity-warning; leaf category { type string; } leaf log { type string; } } notification error { rwnotify:log-event-id 160003; description "Generic Warning Log"; uses rwlog:severity-error; leaf category { type string; } leaf log { type string; } } notification critical { rwnotify:log-event-id 160004; description "Generic Critical Log"; uses rwlog:severity-critical; leaf category { type string; } leaf log { type string; } } /* * END - generic log events */ }