Skip to content

Commit 36b6e7c

Browse files
authored
Merge pull request #2033 from reebhub/RDoc-3277_SNMPmonitoringMIBs
Created MIB-generation monitoring page
2 parents b5de270 + d9091ac commit 36b6e7c

File tree

20 files changed

+158
-72
lines changed

20 files changed

+158
-72
lines changed

Documentation/5.4/Raven.Documentation.Pages/server/administration/SNMP/snmp.markdown

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ SNMP support is available for [Enterprise](../../../start/licensing/licensing-ov
4949

5050
{PANEL: Enabling SNMP in RavenDB}
5151

52-
* To monitor RavenDB using SNMP you __must__ first set the [Monitoring.Snmp.Enabled](../../../server/configuration/monitoring-configuration#monitoring.snmp.enabled) configuration key to _true_.
52+
* To monitor RavenDB using SNMP you **must** first set the [Monitoring.Snmp.Enabled](../../../server/configuration/monitoring-configuration#monitoring.snmp.enabled) configuration key to _true_.
5353

5454
* To learn how to modify a configuration key, refer to the [Configuration Overview](../../../server/configuration/configuration-options) article,
5555
which outlines all available options.
@@ -111,7 +111,7 @@ There are several configurable SNMP properties in RavenDB:
111111

112112
{INFO: }
113113

114-
* See article [Monitoring Options](../../../server/configuration/monitoring-configuration) for the full list of __SNMP configuration keys__.
114+
* See article [Monitoring Options](../../../server/configuration/monitoring-configuration) for the full list of **SNMP configuration keys**.
115115

116116
* To learn how to modify a configuration key, refer to the [Configuration Overview](../../../server/configuration/configuration-options) article,
117117
which outlines all available options.
@@ -176,7 +176,7 @@ snmpget -v 3 -l authNoPriv -u ravendb -a SHA \
176176

177177
---
178178

179-
__Access single OID value__:
179+
**Access single OID value**:
180180

181181
* An individual OID value can be retrieved via HTTP `GET` endpoint:
182182
`<serverUrl>/monitoring/snmp?oid=<oid>`
@@ -194,7 +194,7 @@ curl -X GET http://live-test.ravendb.net/monitoring/snmp?oid=1.3.6.1.4.1.45751.1
194194

195195
---
196196

197-
__Access multiple OID values__:
197+
**Access multiple OID values**:
198198

199199
* Multiple OID values can be retrieved by making either a `GET` or a `POST` request to the following HTTP endpoint:
200200
`<serverUrl>/monitoring/snmp/bulk`
@@ -224,7 +224,7 @@ curl -X POST \
224224

225225
---
226226

227-
<a id="getAllOids" /> __Get all OIDs:__
227+
<a id="getAllOids" /> **Get all OIDs:**
228228

229229
* You can get a list of all OIDs along with their description via this HTTP `GET` endpoint:
230230
`<serverUrl>/monitoring/snmp/oids`
@@ -239,7 +239,7 @@ curl -X POST \
239239

240240
{NOTE: }
241241

242-
* RavenDB's **root OID** is: __1.3.6.1.4.1.45751.1.1.__
242+
* RavenDB's **root OID** is: **1.3.6.1.4.1.45751.1.1.**
243243

244244
* Values represented by `X`, `D`, or `I` in the OIDs list below will be:
245245
* `X`:

Documentation/6.0/Raven.Documentation.Pages/server/administration/SNMP/snmp.markdown

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ SNMP support is available for [Enterprise](../../../start/licensing/licensing-ov
4949

5050
{PANEL: Enabling SNMP in RavenDB}
5151

52-
* To monitor RavenDB using SNMP you __must__ first set the [Monitoring.Snmp.Enabled](../../../server/configuration/monitoring-configuration#monitoring.snmp.enabled) configuration key to _true_.
52+
* To monitor RavenDB using SNMP you **must** first set the [Monitoring.Snmp.Enabled](../../../server/configuration/monitoring-configuration#monitoring.snmp.enabled) configuration key to _true_.
5353

5454
* To learn how to modify a configuration key, refer to the [Configuration Overview](../../../server/configuration/configuration-options) article,
5555
which outlines all available options.
@@ -111,7 +111,7 @@ There are several configurable SNMP properties in RavenDB:
111111

112112
{INFO: }
113113

114-
* See article [Monitoring Options](../../../server/configuration/monitoring-configuration) for the full list of __SNMP configuration keys__.
114+
* See article [Monitoring Options](../../../server/configuration/monitoring-configuration) for the full list of **SNMP configuration keys**.
115115

116116
* To learn how to modify a configuration key, refer to the [Configuration Overview](../../../server/configuration/configuration-options) article,
117117
which outlines all available options.
@@ -176,7 +176,7 @@ snmpget -v 3 -l authNoPriv -u ravendb -a SHA \
176176

177177
---
178178

179-
__Access single OID value__:
179+
**Access single OID value**:
180180

181181
* An individual OID value can be retrieved via HTTP `GET` endpoint:
182182
`<serverUrl>/monitoring/snmp?oid=<oid>`
@@ -194,7 +194,7 @@ curl -X GET http://live-test.ravendb.net/monitoring/snmp?oid=1.3.6.1.4.1.45751.1
194194

195195
---
196196

197-
__Access multiple OID values__:
197+
**Access multiple OID values**:
198198

199199
* Multiple OID values can be retrieved by making either a `GET` or a `POST` request to the following HTTP endpoint:
200200
`<serverUrl>/monitoring/snmp/bulk`
@@ -224,7 +224,7 @@ curl -X POST \
224224

225225
---
226226

227-
<a id="getAllOids" /> __Get all OIDs:__
227+
<a id="getAllOids" /> **Get all OIDs:**
228228

229229
* You can get a list of all OIDs along with their description via this HTTP `GET` endpoint:
230230
`<serverUrl>/monitoring/snmp/oids`
@@ -239,7 +239,7 @@ curl -X POST \
239239

240240
{NOTE: }
241241

242-
* RavenDB's **root OID** is: __1.3.6.1.4.1.45751.1.1.__
242+
* RavenDB's **root OID** is: **1.3.6.1.4.1.45751.1.1.**
243243

244244
* Values represented by `X`, `D`, or `I` in the OIDs list below will be:
245245
* `X`:
Lines changed: 19 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,20 @@
11
[
2-
{
3-
"Path": "telegraf.markdown",
4-
"Name": "Telegraf Plugin",
5-
"DiscussionId": "625d14af-842b-454e-967d-846214f43357",
6-
"Mappings": []
7-
},
8-
{
9-
"Path": "prometheus.markdown",
10-
"Name": "Prometheus",
11-
"DiscussionId": "01febf2d-8e60-4238-a227-cc706d036b14",
12-
"Mappings": []
13-
}
14-
]
2+
{
3+
"Path": "telegraf.markdown",
4+
"Name": "Telegraf Plugin",
5+
"DiscussionId": "625d14af-842b-454e-967d-846214f43357",
6+
"Mappings": []
7+
},
8+
{
9+
"Path": "prometheus.markdown",
10+
"Name": "Prometheus",
11+
"DiscussionId": "01febf2d-8e60-4238-a227-cc706d036b14",
12+
"Mappings": []
13+
},
14+
{
15+
"Path": "mib-generation.markdown",
16+
"Name": "MIB generation",
17+
"DiscussionId": "01febf2d-8e60-4238-a227-cc706d036b14",
18+
"Mappings": []
19+
}
20+
]
Loading
Loading
94.6 KB
Loading
60.5 KB
Loading

0 commit comments

Comments
 (0)