From: Tony Tkacik Date: Wed, 7 Jan 2015 10:35:40 +0000 (+0000) Subject: Merge "Model dom-broker statistics" X-Git-Tag: release/lithium~722 X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=commitdiff_plain;h=d80bf0f81bdeed907b290b67f26f1a3541ad3ea4;hp=b0d28ac778be8cc62b71170f8efc8e0148f2026a Merge "Model dom-broker statistics" --- diff --git a/opendaylight/md-sal/sal-distributed-datastore/src/main/yang/odl-sal-cds-cfg.yang b/opendaylight/md-sal/sal-distributed-datastore/src/main/yang/odl-sal-cds-cfg.yang index 2abe89316b..325dad33d7 100644 --- a/opendaylight/md-sal/sal-distributed-datastore/src/main/yang/odl-sal-cds-cfg.yang +++ b/opendaylight/md-sal/sal-distributed-datastore/src/main/yang/odl-sal-cds-cfg.yang @@ -8,6 +8,7 @@ module odl-concurrent-data-broker-cfg { import opendaylight-operational-dom-datastore {prefix operational-dom-store-spi;} import opendaylight-md-sal-dom {prefix sal; } import opendaylight-sal-dom-broker-impl { prefix broker; } + import rpc-context { prefix rpcx; revision-date 2013-06-17; } description "Service definition for concurrent dom broker."; @@ -29,4 +30,12 @@ module odl-concurrent-data-broker-cfg { uses broker:dom-broker-config; } } + + augment "/config:modules/config:module/config:state" { + case dom-concurrent-data-broker { + when "/config:modules/config:module/config:type = 'dom-concurrent-data-broker'"; + + uses broker:dom-broker-operational; + } + } } diff --git a/opendaylight/md-sal/sal-dom-broker/pom.xml b/opendaylight/md-sal/sal-dom-broker/pom.xml index aec7efe46c..a824792cf8 100644 --- a/opendaylight/md-sal/sal-dom-broker/pom.xml +++ b/opendaylight/md-sal/sal-dom-broker/pom.xml @@ -55,6 +55,11 @@ yang-parser-impl + + org.opendaylight.yangtools.model + ietf-yang-types + + org.slf4j slf4j-api diff --git a/opendaylight/md-sal/sal-dom-broker/src/main/yang/opendaylight-dom-broker-impl.yang b/opendaylight/md-sal/sal-dom-broker/src/main/yang/opendaylight-dom-broker-impl.yang index 1a553eab52..989b5b5649 100644 --- a/opendaylight/md-sal/sal-dom-broker/src/main/yang/opendaylight-dom-broker-impl.yang +++ b/opendaylight/md-sal/sal-dom-broker/src/main/yang/opendaylight-dom-broker-impl.yang @@ -1,13 +1,15 @@ module opendaylight-sal-dom-broker-impl { yang-version 1; namespace "urn:opendaylight:params:xml:ns:yang:controller:md:sal:dom:impl"; - prefix "binding-impl"; + prefix "broker"; import config { prefix config; revision-date 2013-04-05; } + import ietf-yang-types { prefix yang; } import opendaylight-md-sal-dom {prefix sal;} import opendaylight-md-sal-common {prefix common;} import opendaylight-config-dom-datastore {prefix config-dom-store-spi;} import opendaylight-operational-dom-datastore {prefix operational-dom-store-spi;} + import rpc-context { prefix rpcx; revision-date 2013-06-17; } description "Service definition for Binding Aware MD-SAL. @@ -117,6 +119,52 @@ module opendaylight-sal-dom-broker-impl { } } + grouping dom-broker-operational { + leaf total-commits { + type uint64; + } + + leaf average-commit { + type uint64; + units ns; + } + + leaf longest-commit-duration { + type uint64; + units ns; + } + + leaf longest-commit-timestamp { + type yang:date-and-time; + } + + leaf shortest-commit-duration { + type uint64; + units ns; + } + + leaf shortest-commit-timestamp { + type yang:date-and-time; + } + + rpcx:rpc-context-instance dom-broker-rpc-ctx; + } + + identity dom-broker-rpc-ctx; + + rpc reset-statistics { + description + "JMX call to clear the toasts-made counter."; + + input { + uses rpcx:rpc-context-ref { + refine context-instance { + rpcx:rpc-context-instance dom-broker-rpc-ctx; + } + } + } + } + augment "/config:modules/config:module/config:configuration" { case dom-inmemory-data-broker { when "/config:modules/config:module/config:type = 'dom-inmemory-data-broker'"; @@ -125,6 +173,14 @@ module opendaylight-sal-dom-broker-impl { } } + augment "/config:modules/config:module/config:state" { + case dom-inmemory-data-broker { + when "/config:modules/config:module/config:type = 'dom-inmemory-data-broker'"; + + uses dom-broker-operational; + } + } + augment "/config:modules/config:module/config:state" { case schema-service-singleton { when "/config:modules/config:module/config:type = 'schema-service-singleton'";