Skip to content

Commit f716917

Browse files
committed
Updated alerts:
- `AllSplunkEnterpriseLevel - ulimit on Splunk enterprise servers is below 8192` - missing parenthesis, thanks Gregg Woodcock - `IndexerLevel - replicationdatareceiverthread close to 100% utilisation` - incorrect macro - `MonitoringConsole - Crash logs have appeared on the filesystem` - incorrect macro, github issue #22, thanks SANSd20 Added lookup file: - `splunkadmins_indexlist_by_cluster.csv`
1 parent d5ca979 commit f716917

File tree

4 files changed

+14
-4
lines changed

4 files changed

+14
-4
lines changed

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -322,6 +322,15 @@ The following ideas relate to this issue:
322322
Feel free to open an issue on github or use the contact author on the SplunkBase link and I will try to get back to you when possible, thanks!
323323

324324
## Release Notes
325+
### 3.0.11
326+
Updated alerts:
327+
- `AllSplunkEnterpriseLevel - ulimit on Splunk enterprise servers is below 8192` - missing parenthesis, thanks Gregg Woodcock
328+
- `IndexerLevel - replicationdatareceiverthread close to 100% utilisation` - incorrect macro
329+
- `MonitoringConsole - Crash logs have appeared on the filesystem` - incorrect macro, github issue #22, thanks SANSd20
330+
331+
Added lookup file:
332+
- `splunkadmins_indexlist_by_cluster.csv`
333+
325334
### 3.0.10
326335
- `SearchHeadLevel - audit.log - lookup usage` - correcting issue #21 (thanks @barrettnet)
327336

default/app.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ label = SplunkAdmins
1212
[launcher]
1313
author = Gareth Anderson
1414
description = Alerts and dashboards as described in the Splunk 2017 conf presentation How did you get so big?
15-
version = 3.0.10
15+
version = 3.0.11
1616

1717
[package]
1818
id = SplunkAdmins

default/savedsearches.conf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ request.ui_dispatch_app = SplunkAdmins
130130
request.ui_dispatch_view = search
131131
search = `comment("Any Splunk enterprise servers running less than 64000 file descriptors can result in a crash, therefore we watch the ulimit numbers on startup")` \
132132
`comment("You could do | rest /services/server/sysinfo | table ulimit* or similar but that will not cover all Splunk enterprise servers that are in the _internal index...")`\
133-
index=_internal ("ulimit" "open files:") OR ("fd limit" "lower") ( `splunkenterprisehosts` sourcetype=splunkd (`splunkadmins_splunkd_source`) \
133+
index=_internal ("ulimit" "open files:") OR ("fd limit" "lower") ( `splunkenterprisehosts` sourcetype=splunkd (`splunkadmins_splunkd_source`) ) \
134134
| rex "(?P<nooffiles>\d+) files" \
135135
| where nooffiles<64000 OR searchmatch("fd limit")\
136136
| fields _time, _raw, host
@@ -7347,7 +7347,7 @@ request.ui_dispatch_app = SplunkAdmins
73477347
request.ui_dispatch_view = search
73487348
search = index=_internal source=*crash.log \
73497349
| stats count by source, host, sourcetype \
7350-
| eval indexer_cluster=`indexer_cluster(host)` \
7350+
| eval indexer_cluster=`indexer_cluster_name(host)` \
73517351
| eval search_head=host \
73527352
| eval search_head_cluster=`search_head_cluster` \
73537353
| eval env=if(indexer_cluster==host,search_head_cluster,indexer_cluster) \
@@ -7571,7 +7571,7 @@ search = index=_internal sourcetype=splunkd `splunkadmins_metrics_source` group=
75717571
| eventstats count(eval(count>1)) AS continuous_count by host\
75727572
| where continuous_count>3\
75737573
| fields - count\
7574-
| eval indexer_cluster=`indexer_cluster(host)`
7574+
| eval indexer_cluster=`indexer_cluster_name(host)`
75757575
disabled = 1
75767576

75777577
[SearchHeadLevel - Accelerated DataModels Access Info]
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
indexer_cluster,index

0 commit comments

Comments
 (0)