Skip to content

Commit 5cd7a69

Browse files
committed
updates
1 parent 24bf836 commit 5cd7a69

File tree

457 files changed

+2439
-899
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

457 files changed

+2439
-899
lines changed

_sources/elk/beats/debug.rst.txt

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
=====
2+
debug
3+
=====
4+
5+
The `-d` flag enables debug mode, but it requires a "selector" to be
6+
chosen.
7+
For errors regarding pushing to elasticsearch, the selector
8+
`elasticsearch` is the one to use.
9+
10+
`metricbeat -e -d "elasticsearch"`
11+

_sources/elk/beats/index.rst.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,6 @@ Contents:
88
.. toctree::
99
:maxdepth: 2
1010

11+
debug
1112
filebeat/index
1213

_sources/elk/logstash/index.rst.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ Contents:
1111
api
1212
config
1313
filter/index
14+
input
1415
ssl
1516
testing
1617
usage
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
=====
2+
input
3+
=====
4+
5+
blah blah blah
6+
7+
.. _snmp input:
8+
9+
snmp input
10+
^^^^^^^^^^
11+
12+
`Elastic documentation <https://elastic.co/guide/en/logstash/current/plugins-inputs.snmp.html>`_
13+
14+
`auth_pass` is the user's password.
15+
16+
`priv_pass` is the enc key.
17+
18+
`get` pulls the value from specific OIDs.
19+
20+
`walk` pulls the values from specific OIDs and their children.
21+
22+
.. code-block:: console
23+
24+
snmp {
25+
hosts => [{host => "udp:192.168.17.100/161" version => "3"}]
26+
get => ["1.3.6.1.2.1.1.1.0"]
27+
security_name => ""
28+
auth_protocol => "hmac192sha256"
29+
auth_pass => ""
30+
priv_pass => ""
31+
priv_protocol => "aes"
32+
security_level => "authPriv"
33+
target => "snmp"
34+
tags => ["snmp"]
35+
}
36+

_sources/operating_systems/linux/centos/packages.rst.txt

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,3 +37,18 @@ Show version of package with yum
3737
3838
yum info PACKAGE
3939
40+
41+
Show multiple versions of a package
42+
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
43+
44+
.. code-block:: console
45+
46+
dnf --showduplicates PACKAGE
47+
48+
Install specific version
49+
^^^^^^^^^^^^^^^^^^^^^^^^
50+
51+
.. code-block:: console
52+
53+
dnf install PACKAGE-VERSION
54+

_sources/operating_systems/linux/containers/index.rst.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,5 @@ Contents:
1010

1111
docker/index
1212
lxd/index
13+
misc
14+
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
====
2+
misc
3+
====
4+
5+
see processes in different namespaces
6+
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
7+
8+
.. code-block:: console
9+
10+
systemd-cgls
11+
12+

_sources/tools/index.rst.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ Contents:
2828
perl/index
2929
prometheus/index
3030
python/index
31+
snmp/index
3132
steampipe/index
3233
su
3334
tcpdump/index

_sources/tools/snmp/index.rst.txt

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
==========
2+
snmp stuff
3+
==========
4+
5+
Contents:
6+
7+
.. toctree::
8+
:maxdepth: 2
9+
10+
logstash
11+
snmpwalk
12+
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
===================
2+
logstash snmp input
3+
===================
4+
5+
Funny enough, this is at :ref:`snmp input`
6+

0 commit comments

Comments
 (0)