aboutsummaryrefslogtreecommitdiffstats
path: root/docs/usage/usage/dmaap.rst
diff options
context:
space:
mode:
Diffstat (limited to 'docs/usage/usage/dmaap.rst')
-rw-r--r--docs/usage/usage/dmaap.rst47
1 files changed, 0 insertions, 47 deletions
diff --git a/docs/usage/usage/dmaap.rst b/docs/usage/usage/dmaap.rst
deleted file mode 100644
index 2154bf4..0000000
--- a/docs/usage/usage/dmaap.rst
+++ /dev/null
@@ -1,47 +0,0 @@
-VES
-###
-
-Preparation for DMAAP tests
----------------------------
-
-#. Check existing DMaap Services:
-
- .. code-block:: sh
-
- kubectl get service -n onap| grep mess
- message-router NodePort 10.43.30.205 <none> 3905:31163/TCP,3904:32404/TCP
-
-#. If the port of Ves Service is different than 3904 you can change it corresponding to the installation instruction.
-
-
-Remove all events from DMaap
-----------------------------
-
-.. code:: Python
-
- from onapsdk.dmaap.dmaap import Dmaap
- response = Dmaap.reset_events()
-
-Get all events from DMaap
--------------------------
-
-.. code:: Python
-
- from onapsdk.dmaap.dmaap import Dmaap
- response = Dmaap.get_all_events()
-
-Get events from specific topic from DMaap
------------------------------------------
-
-.. code:: Python
-
- from onapsdk.dmaap.dmaap import Dmaap
- response = Dmaap.get_events_for_topic("fault")
-
-Get all topics from DMaap
--------------------------
-
-.. code:: Python
-
- from onapsdk.dmaap.dmaap import Dmaap
- response = Dmaap.get_all_topics() \ No newline at end of file