summaryrefslogtreecommitdiffstats
path: root/docs/sections/services/snmptrap/administration.rst
diff options
context:
space:
mode:
Diffstat (limited to 'docs/sections/services/snmptrap/administration.rst')
-rw-r--r--docs/sections/services/snmptrap/administration.rst45
1 files changed, 45 insertions, 0 deletions
diff --git a/docs/sections/services/snmptrap/administration.rst b/docs/sections/services/snmptrap/administration.rst
new file mode 100644
index 00000000..950badac
--- /dev/null
+++ b/docs/sections/services/snmptrap/administration.rst
@@ -0,0 +1,45 @@
+.. This work is licensed under a Creative Commons Attribution 4.0 International License.
+.. http://creativecommons.org/licenses/by/4.0
+
+Administration
+==============
+
+Processes
+---------
+
+**SNMPTRAP** runs as a single (python) process inside the container. You can find it using the following commands:
+
+Inside the container
+^^^^^^^^^^^^^^^^^^^^
+.. code-block:: bash
+
+ `ps -ef | grep snmptrap.py | grep -v grep`
+
+
+Outside the container
+^^^^^^^^^^^^^^^^^^^^^
+
+.. code-block:: bash
+
+ docker exec -it <container name> `ps -ef | grep snmptrap.py | grep -v grep`
+
+
+Actions
+-------
+
+The **SNMPTRAP** container can be monitored for status by running the command:
+
+.. code-block:: bash
+
+ `bin/snmptrapd.sh status`
+
+Output from this command will be two-fold. First will be the textual response:
+
+ `Stopping snmptrap... Stopped.`
+
+Also available is the return code of the command:
+
+ 0 - if command executed successfully
+ 1 - if the command failed, and/or the process is not running
+
+