[ONOS-6879] Adding Controller Metrics Application, To retrive memory, Disk and CPU usage for all controller

Change-Id: I5976f0194555c1c3c42d6b6d09c468d6dfc983ff
diff --git a/apps/nodemetrics/BUCK b/apps/nodemetrics/BUCK
new file mode 100644
index 0000000..65c845e
--- /dev/null
+++ b/apps/nodemetrics/BUCK
@@ -0,0 +1,17 @@
+BUNDLES = [
+    '//apps/nodemetrics/api:onos-apps-nodemetrics-api',
+    '//apps/nodemetrics/mgr:onos-apps-nodemetrics-mgr',
+]
+
+onos_app(
+    app_name = 'org.onosproject.nodemetrics',
+    title = 'Controller Monitor Application',
+    description = '1.Nodemetrics Application uses, sigar library to fetch Controller information.'+
+    '2. The Sigar library uses Native libraries and currently It supports Windows, Linux and MacOs platform.'+
+    '3. The Native libraries like .so, .dll and .dylib are packed as jar along with sigar libs.'+
+    '4. If the Native libraries are corrupted because of any reason,'+
+    'so, the controller is vulnerable to crash of the entire JVM',
+    category = 'Utility',
+    url = 'http://samsung.com',
+    included_bundles = BUNDLES
+)
\ No newline at end of file