Improve segmented journal actor metrics
[controller.git] / benchmark / api / src / main / yang / ntfbench-payload.yang
1 module ntfbench-payload {
2     yang-version 1;
3     namespace "urn:opendaylight:params:xml:ns:yang:ntfbench-payload";
4     prefix "ntfbenchmark";
5
6     description
7         "Copyright © 2015, 2018 Cisco Systems, Inc. and others.
8
9         This program and the accompanying materials are made available under the
10         terms of the Eclipse Public License v1.0 which accompanies this distribution,
11         and is available at http://www.eclipse.org/legal/epl-v10.html";
12
13     revision "2015-07-09" {
14         description "Initial revision of ntfbenchmark model";
15     }
16
17     grouping payload {
18         list payload {
19             description
20                 "The payload for the notification";
21             key id;
22             leaf id {
23                 type int32;
24             }
25         }
26     }
27
28     notification ntfbench {
29         uses payload;
30     }
31 }