diff --git a/.gitignore b/.gitignore
index 136a379..a58397f 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,5 +1,4 @@
# Linspector
-etc.test.*
log/*.log
# ---> Python
diff --git a/Makefile b/Makefile
index b72ac25..38a8e26 100644
--- a/Makefile
+++ b/Makefile
@@ -43,4 +43,4 @@ run:
PYTHONPATH=$(shell pwd):$(shell pwd)/venv/lib/python$(PYTHON_VERSION)/site-packages/ bin/linspector ./etc
rundev:
- PYTHONPATH=$(shell pwd):$(shell pwd)/venv/lib/python$(PYTHON_VERSION)/site-packages/ bin/linspector ./etc.test.local
+ PYTHONPATH=$(shell pwd):$(shell pwd)/venv/lib/python$(PYTHON_VERSION)/site-packages/ bin/linspector ./etc.local
diff --git a/etc.dev/README.md b/etc.dev/README.md
index f7256ab..8b9aefc 100644
--- a/etc.dev/README.md
+++ b/etc.dev/README.md
@@ -1 +1 @@
-# Not always working configuration with not only implemented options.
\ No newline at end of file
+# Not always working configuration with not only implemented options. This is for all the ideas I have... ;)
diff --git a/etc.local/README.md b/etc.local/README.md
new file mode 100644
index 0000000..6190bb4
--- /dev/null
+++ b/etc.local/README.md
@@ -0,0 +1 @@
+# Fully working configuration with only implemented options I use for testing when writing the code.
diff --git a/etc.local/hostgroups/.gitkeep b/etc.local/hostgroups/.gitkeep
new file mode 100644
index 0000000..e69de29
diff --git a/etc.local/hostgroups/testgroup1.conf b/etc.local/hostgroups/testgroup1.conf
new file mode 100644
index 0000000..e69de29
diff --git a/etc.local/linspector.conf b/etc.local/linspector.conf
new file mode 100644
index 0000000..13751c4
--- /dev/null
+++ b/etc.local/linspector.conf
@@ -0,0 +1,34 @@
+[linspector]
+default_interval = 300
+minimum_interval = 10
+; this should be set to the highest interval you use. it must not but it will be the best performance.
+delta_range = 60
+
+start_scheduler = true
+scheduler_mode = process
+max_processes = 24
+max_threads = 2048
+pid_file = /var/run/user/1000/linspector.pid
+
+; log format. this overrides the default configured in the code
+;log_format = [{time:YYYY-MM-DD HH:mm:ss.SSSSSS ZZ}] [{elapsed}] [{level}] [linspector] [{name}:{function}:{line}]: {message}
+; log level for stderr logging (default: INFO)
+log_level = INFO
+; logfile to use
+logfile = /home/hanez/code/linspector/linspector/log/linspector.log
+; number of logfiles to keep (default: 10)
+logfile_count = 25
+; logfile format. this overrides the default configured in the code
+;logfile_format = [{time:YYYY-MM-DD HH:mm:ss.SSSSSS ZZ}] [{elapsed}] [{level}] [linspector] [{name}:{function}:{line}]: {message}
+; log level for file based logging
+logfile_level = DEBUG
+; size of logfiles (default: 1MB)
+logfile_size = 25 MiB
+
+notifications =
+plugins =
+tasks =
+
+; timezone can be set to a remote timezone to make monitors run at the remote time. this is optional. the local
+; timezone is set by default. this can be overridden in each monitor.
+;timezone = UTC
diff --git a/etc.local/monitors/network1/gateway.conf b/etc.local/monitors/network1/gateway.conf
new file mode 100644
index 0000000..bebb16d
--- /dev/null
+++ b/etc.local/monitors/network1/gateway.conf
@@ -0,0 +1,12 @@
+[monitor]
+title = Uplink Status
+description = Cable Provider Uplink Status
+service = vendor.avm.is_connected
+host = 192.168.23.1
+interval = 60
+; the timezone can be set to the zone of the monitor target host to run at the remote time. this is optional. the
+; default is the local system timezone.
+;timezone = UTC
+
+[args]
+password = PASSWORD
diff --git a/etc.local/monitors/network2/gateway.conf b/etc.local/monitors/network2/gateway.conf
new file mode 100644
index 0000000..f3d15ea
--- /dev/null
+++ b/etc.local/monitors/network2/gateway.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Uplink Status
+description = Cable Provider Uplink Status
+service = vendor.avm.is_connected
+host = 192.168.178.1
+interval = 60
+
+[args]
+password = PASSWORD
diff --git a/etc.local/monitors/stress1/random0.conf b/etc.local/monitors/stress1/random0.conf
new file mode 100644
index 0000000..816cc08
--- /dev/null
+++ b/etc.local/monitors/stress1/random0.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 0
+description = Random 0 Service Check
+service = misc.random
+host = 127.0.0.0
+interval = 0
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random1.conf b/etc.local/monitors/stress1/random1.conf
new file mode 100644
index 0000000..301a346
--- /dev/null
+++ b/etc.local/monitors/stress1/random1.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 1
+description = Random 1 Service Check
+service = misc.random
+host = 127.0.0.1
+interval = 1
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random10.conf b/etc.local/monitors/stress1/random10.conf
new file mode 100644
index 0000000..c5b22d1
--- /dev/null
+++ b/etc.local/monitors/stress1/random10.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 10
+description = Random 10 Service Check
+service = misc.random
+host = 127.0.0.10
+interval = 10
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random100.conf b/etc.local/monitors/stress1/random100.conf
new file mode 100644
index 0000000..d31e0fc
--- /dev/null
+++ b/etc.local/monitors/stress1/random100.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 100
+description = Random 100 Service Check
+service = misc.random
+host = 127.0.0.100
+interval = 100
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random101.conf b/etc.local/monitors/stress1/random101.conf
new file mode 100644
index 0000000..ffe0c15
--- /dev/null
+++ b/etc.local/monitors/stress1/random101.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 101
+description = Random 101 Service Check
+service = misc.random
+host = 127.0.0.101
+interval = 101
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random102.conf b/etc.local/monitors/stress1/random102.conf
new file mode 100644
index 0000000..93afe31
--- /dev/null
+++ b/etc.local/monitors/stress1/random102.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 102
+description = Random 102 Service Check
+service = misc.random
+host = 127.0.0.102
+interval = 102
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random103.conf b/etc.local/monitors/stress1/random103.conf
new file mode 100644
index 0000000..369d039
--- /dev/null
+++ b/etc.local/monitors/stress1/random103.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 103
+description = Random 103 Service Check
+service = misc.random
+host = 127.0.0.103
+interval = 103
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random104.conf b/etc.local/monitors/stress1/random104.conf
new file mode 100644
index 0000000..4d2708c
--- /dev/null
+++ b/etc.local/monitors/stress1/random104.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 104
+description = Random 104 Service Check
+service = misc.random
+host = 127.0.0.104
+interval = 104
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random105.conf b/etc.local/monitors/stress1/random105.conf
new file mode 100644
index 0000000..74562c9
--- /dev/null
+++ b/etc.local/monitors/stress1/random105.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 105
+description = Random 105 Service Check
+service = misc.random
+host = 127.0.0.105
+interval = 105
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random106.conf b/etc.local/monitors/stress1/random106.conf
new file mode 100644
index 0000000..671436a
--- /dev/null
+++ b/etc.local/monitors/stress1/random106.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 106
+description = Random 106 Service Check
+service = misc.random
+host = 127.0.0.106
+interval = 106
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random107.conf b/etc.local/monitors/stress1/random107.conf
new file mode 100644
index 0000000..31cca55
--- /dev/null
+++ b/etc.local/monitors/stress1/random107.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 107
+description = Random 107 Service Check
+service = misc.random
+host = 127.0.0.107
+interval = 107
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random108.conf b/etc.local/monitors/stress1/random108.conf
new file mode 100644
index 0000000..0658a36
--- /dev/null
+++ b/etc.local/monitors/stress1/random108.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 108
+description = Random 108 Service Check
+service = misc.random
+host = 127.0.0.108
+interval = 108
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random109.conf b/etc.local/monitors/stress1/random109.conf
new file mode 100644
index 0000000..5772e68
--- /dev/null
+++ b/etc.local/monitors/stress1/random109.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 109
+description = Random 109 Service Check
+service = misc.random
+host = 127.0.0.109
+interval = 109
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random11.conf b/etc.local/monitors/stress1/random11.conf
new file mode 100644
index 0000000..6b1d0a2
--- /dev/null
+++ b/etc.local/monitors/stress1/random11.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 11
+description = Random 11 Service Check
+service = misc.random
+host = 127.0.0.11
+interval = 11
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random110.conf b/etc.local/monitors/stress1/random110.conf
new file mode 100644
index 0000000..78f400d
--- /dev/null
+++ b/etc.local/monitors/stress1/random110.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 110
+description = Random 110 Service Check
+service = misc.random
+host = 127.0.0.110
+interval = 110
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random111.conf b/etc.local/monitors/stress1/random111.conf
new file mode 100644
index 0000000..4727f8b
--- /dev/null
+++ b/etc.local/monitors/stress1/random111.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 111
+description = Random 111 Service Check
+service = misc.random
+host = 127.0.0.111
+interval = 111
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random112.conf b/etc.local/monitors/stress1/random112.conf
new file mode 100644
index 0000000..56740b0
--- /dev/null
+++ b/etc.local/monitors/stress1/random112.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 112
+description = Random 112 Service Check
+service = misc.random
+host = 127.0.0.112
+interval = 112
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random113.conf b/etc.local/monitors/stress1/random113.conf
new file mode 100644
index 0000000..eb93f1e
--- /dev/null
+++ b/etc.local/monitors/stress1/random113.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 113
+description = Random 113 Service Check
+service = misc.random
+host = 127.0.0.113
+interval = 113
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random114.conf b/etc.local/monitors/stress1/random114.conf
new file mode 100644
index 0000000..4ae5e2a
--- /dev/null
+++ b/etc.local/monitors/stress1/random114.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 114
+description = Random 114 Service Check
+service = misc.random
+host = 127.0.0.114
+interval = 114
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random115.conf b/etc.local/monitors/stress1/random115.conf
new file mode 100644
index 0000000..485008c
--- /dev/null
+++ b/etc.local/monitors/stress1/random115.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 115
+description = Random 115 Service Check
+service = misc.random
+host = 127.0.0.115
+interval = 115
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random116.conf b/etc.local/monitors/stress1/random116.conf
new file mode 100644
index 0000000..d641e84
--- /dev/null
+++ b/etc.local/monitors/stress1/random116.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 116
+description = Random 116 Service Check
+service = misc.random
+host = 127.0.0.116
+interval = 116
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random117.conf b/etc.local/monitors/stress1/random117.conf
new file mode 100644
index 0000000..524cab4
--- /dev/null
+++ b/etc.local/monitors/stress1/random117.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 117
+description = Random 117 Service Check
+service = misc.random
+host = 127.0.0.117
+interval = 117
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random118.conf b/etc.local/monitors/stress1/random118.conf
new file mode 100644
index 0000000..779f73e
--- /dev/null
+++ b/etc.local/monitors/stress1/random118.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 118
+description = Random 118 Service Check
+service = misc.random
+host = 127.0.0.118
+interval = 118
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random119.conf b/etc.local/monitors/stress1/random119.conf
new file mode 100644
index 0000000..5571b8d
--- /dev/null
+++ b/etc.local/monitors/stress1/random119.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 119
+description = Random 119 Service Check
+service = misc.random
+host = 127.0.0.119
+interval = 119
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random12.conf b/etc.local/monitors/stress1/random12.conf
new file mode 100644
index 0000000..0656e06
--- /dev/null
+++ b/etc.local/monitors/stress1/random12.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 12
+description = Random 12 Service Check
+service = misc.random
+host = 127.0.0.12
+interval = 12
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random120.conf b/etc.local/monitors/stress1/random120.conf
new file mode 100644
index 0000000..797762d
--- /dev/null
+++ b/etc.local/monitors/stress1/random120.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 120
+description = Random 120 Service Check
+service = misc.random
+host = 127.0.0.120
+interval = 120
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random121.conf b/etc.local/monitors/stress1/random121.conf
new file mode 100644
index 0000000..71eaab3
--- /dev/null
+++ b/etc.local/monitors/stress1/random121.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 121
+description = Random 121 Service Check
+service = misc.random
+host = 127.0.0.121
+interval = 121
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random122.conf b/etc.local/monitors/stress1/random122.conf
new file mode 100644
index 0000000..7abe7a4
--- /dev/null
+++ b/etc.local/monitors/stress1/random122.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 122
+description = Random 122 Service Check
+service = misc.random
+host = 127.0.0.122
+interval = 122
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random123.conf b/etc.local/monitors/stress1/random123.conf
new file mode 100644
index 0000000..3511df4
--- /dev/null
+++ b/etc.local/monitors/stress1/random123.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 123
+description = Random 123 Service Check
+service = misc.random
+host = 127.0.0.123
+interval = 123
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random124.conf b/etc.local/monitors/stress1/random124.conf
new file mode 100644
index 0000000..d71f9b4
--- /dev/null
+++ b/etc.local/monitors/stress1/random124.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 124
+description = Random 124 Service Check
+service = misc.random
+host = 127.0.0.124
+interval = 124
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random125.conf b/etc.local/monitors/stress1/random125.conf
new file mode 100644
index 0000000..b103991
--- /dev/null
+++ b/etc.local/monitors/stress1/random125.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 125
+description = Random 125 Service Check
+service = misc.random
+host = 127.0.0.125
+interval = 125
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random126.conf b/etc.local/monitors/stress1/random126.conf
new file mode 100644
index 0000000..32405bc
--- /dev/null
+++ b/etc.local/monitors/stress1/random126.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 126
+description = Random 126 Service Check
+service = misc.random
+host = 127.0.0.126
+interval = 126
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random127.conf b/etc.local/monitors/stress1/random127.conf
new file mode 100644
index 0000000..68e06db
--- /dev/null
+++ b/etc.local/monitors/stress1/random127.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 127
+description = Random 127 Service Check
+service = misc.random
+host = 127.0.0.127
+interval = 127
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random128.conf b/etc.local/monitors/stress1/random128.conf
new file mode 100644
index 0000000..4bdde0a
--- /dev/null
+++ b/etc.local/monitors/stress1/random128.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 128
+description = Random 128 Service Check
+service = misc.random
+host = 127.0.0.128
+interval = 128
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random129.conf b/etc.local/monitors/stress1/random129.conf
new file mode 100644
index 0000000..eacebd3
--- /dev/null
+++ b/etc.local/monitors/stress1/random129.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 129
+description = Random 129 Service Check
+service = misc.random
+host = 127.0.0.129
+interval = 129
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random13.conf b/etc.local/monitors/stress1/random13.conf
new file mode 100644
index 0000000..5a51cf2
--- /dev/null
+++ b/etc.local/monitors/stress1/random13.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 13
+description = Random 13 Service Check
+service = misc.random
+host = 127.0.0.13
+interval = 13
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random130.conf b/etc.local/monitors/stress1/random130.conf
new file mode 100644
index 0000000..8ba35b0
--- /dev/null
+++ b/etc.local/monitors/stress1/random130.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 130
+description = Random 130 Service Check
+service = misc.random
+host = 127.0.0.130
+interval = 130
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random131.conf b/etc.local/monitors/stress1/random131.conf
new file mode 100644
index 0000000..4f6dd64
--- /dev/null
+++ b/etc.local/monitors/stress1/random131.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 131
+description = Random 131 Service Check
+service = misc.random
+host = 127.0.0.131
+interval = 131
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random132.conf b/etc.local/monitors/stress1/random132.conf
new file mode 100644
index 0000000..6a1a9fc
--- /dev/null
+++ b/etc.local/monitors/stress1/random132.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 132
+description = Random 132 Service Check
+service = misc.random
+host = 127.0.0.132
+interval = 132
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random133.conf b/etc.local/monitors/stress1/random133.conf
new file mode 100644
index 0000000..320951e
--- /dev/null
+++ b/etc.local/monitors/stress1/random133.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 133
+description = Random 133 Service Check
+service = misc.random
+host = 127.0.0.133
+interval = 133
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random134.conf b/etc.local/monitors/stress1/random134.conf
new file mode 100644
index 0000000..95e20e3
--- /dev/null
+++ b/etc.local/monitors/stress1/random134.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 134
+description = Random 134 Service Check
+service = misc.random
+host = 127.0.0.134
+interval = 134
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random135.conf b/etc.local/monitors/stress1/random135.conf
new file mode 100644
index 0000000..5b51f3a
--- /dev/null
+++ b/etc.local/monitors/stress1/random135.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 135
+description = Random 135 Service Check
+service = misc.random
+host = 127.0.0.135
+interval = 135
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random136.conf b/etc.local/monitors/stress1/random136.conf
new file mode 100644
index 0000000..66610f0
--- /dev/null
+++ b/etc.local/monitors/stress1/random136.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 136
+description = Random 136 Service Check
+service = misc.random
+host = 127.0.0.136
+interval = 136
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random137.conf b/etc.local/monitors/stress1/random137.conf
new file mode 100644
index 0000000..9d50f42
--- /dev/null
+++ b/etc.local/monitors/stress1/random137.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 137
+description = Random 137 Service Check
+service = misc.random
+host = 127.0.0.137
+interval = 137
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random138.conf b/etc.local/monitors/stress1/random138.conf
new file mode 100644
index 0000000..27f7cdc
--- /dev/null
+++ b/etc.local/monitors/stress1/random138.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 138
+description = Random 138 Service Check
+service = misc.random
+host = 127.0.0.138
+interval = 138
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random139.conf b/etc.local/monitors/stress1/random139.conf
new file mode 100644
index 0000000..2636491
--- /dev/null
+++ b/etc.local/monitors/stress1/random139.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 139
+description = Random 139 Service Check
+service = misc.random
+host = 127.0.0.139
+interval = 139
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random14.conf b/etc.local/monitors/stress1/random14.conf
new file mode 100644
index 0000000..93a36d9
--- /dev/null
+++ b/etc.local/monitors/stress1/random14.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 14
+description = Random 14 Service Check
+service = misc.random
+host = 127.0.0.14
+interval = 14
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random140.conf b/etc.local/monitors/stress1/random140.conf
new file mode 100644
index 0000000..26d0580
--- /dev/null
+++ b/etc.local/monitors/stress1/random140.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 140
+description = Random 140 Service Check
+service = misc.random
+host = 127.0.0.140
+interval = 140
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random141.conf b/etc.local/monitors/stress1/random141.conf
new file mode 100644
index 0000000..c27edd1
--- /dev/null
+++ b/etc.local/monitors/stress1/random141.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 141
+description = Random 141 Service Check
+service = misc.random
+host = 127.0.0.141
+interval = 141
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random142.conf b/etc.local/monitors/stress1/random142.conf
new file mode 100644
index 0000000..5697cc6
--- /dev/null
+++ b/etc.local/monitors/stress1/random142.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 142
+description = Random 142 Service Check
+service = misc.random
+host = 127.0.0.142
+interval = 142
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random143.conf b/etc.local/monitors/stress1/random143.conf
new file mode 100644
index 0000000..781d4b2
--- /dev/null
+++ b/etc.local/monitors/stress1/random143.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 143
+description = Random 143 Service Check
+service = misc.random
+host = 127.0.0.143
+interval = 143
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random144.conf b/etc.local/monitors/stress1/random144.conf
new file mode 100644
index 0000000..2e56f50
--- /dev/null
+++ b/etc.local/monitors/stress1/random144.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 144
+description = Random 144 Service Check
+service = misc.random
+host = 127.0.0.144
+interval = 144
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random145.conf b/etc.local/monitors/stress1/random145.conf
new file mode 100644
index 0000000..aa315ce
--- /dev/null
+++ b/etc.local/monitors/stress1/random145.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 145
+description = Random 145 Service Check
+service = misc.random
+host = 127.0.0.145
+interval = 145
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random146.conf b/etc.local/monitors/stress1/random146.conf
new file mode 100644
index 0000000..be7582f
--- /dev/null
+++ b/etc.local/monitors/stress1/random146.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 146
+description = Random 146 Service Check
+service = misc.random
+host = 127.0.0.146
+interval = 146
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random147.conf b/etc.local/monitors/stress1/random147.conf
new file mode 100644
index 0000000..8f058ec
--- /dev/null
+++ b/etc.local/monitors/stress1/random147.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 147
+description = Random 147 Service Check
+service = misc.random
+host = 127.0.0.147
+interval = 147
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random148.conf b/etc.local/monitors/stress1/random148.conf
new file mode 100644
index 0000000..d2027bc
--- /dev/null
+++ b/etc.local/monitors/stress1/random148.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 148
+description = Random 148 Service Check
+service = misc.random
+host = 127.0.0.148
+interval = 148
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random149.conf b/etc.local/monitors/stress1/random149.conf
new file mode 100644
index 0000000..63b5d5e
--- /dev/null
+++ b/etc.local/monitors/stress1/random149.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 149
+description = Random 149 Service Check
+service = misc.random
+host = 127.0.0.149
+interval = 149
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random15.conf b/etc.local/monitors/stress1/random15.conf
new file mode 100644
index 0000000..c5971fb
--- /dev/null
+++ b/etc.local/monitors/stress1/random15.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 15
+description = Random 15 Service Check
+service = misc.random
+host = 127.0.0.15
+interval = 15
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random150.conf b/etc.local/monitors/stress1/random150.conf
new file mode 100644
index 0000000..dcf7edf
--- /dev/null
+++ b/etc.local/monitors/stress1/random150.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 150
+description = Random 150 Service Check
+service = misc.random
+host = 127.0.0.150
+interval = 150
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random151.conf b/etc.local/monitors/stress1/random151.conf
new file mode 100644
index 0000000..6188c5a
--- /dev/null
+++ b/etc.local/monitors/stress1/random151.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 151
+description = Random 151 Service Check
+service = misc.random
+host = 127.0.0.151
+interval = 151
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random152.conf b/etc.local/monitors/stress1/random152.conf
new file mode 100644
index 0000000..8fdb891
--- /dev/null
+++ b/etc.local/monitors/stress1/random152.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 152
+description = Random 152 Service Check
+service = misc.random
+host = 127.0.0.152
+interval = 152
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random153.conf b/etc.local/monitors/stress1/random153.conf
new file mode 100644
index 0000000..ca1458d
--- /dev/null
+++ b/etc.local/monitors/stress1/random153.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 153
+description = Random 153 Service Check
+service = misc.random
+host = 127.0.0.153
+interval = 153
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random154.conf b/etc.local/monitors/stress1/random154.conf
new file mode 100644
index 0000000..40e618f
--- /dev/null
+++ b/etc.local/monitors/stress1/random154.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 154
+description = Random 154 Service Check
+service = misc.random
+host = 127.0.0.154
+interval = 154
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random155.conf b/etc.local/monitors/stress1/random155.conf
new file mode 100644
index 0000000..803bd8a
--- /dev/null
+++ b/etc.local/monitors/stress1/random155.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 155
+description = Random 155 Service Check
+service = misc.random
+host = 127.0.0.155
+interval = 155
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random156.conf b/etc.local/monitors/stress1/random156.conf
new file mode 100644
index 0000000..93769c9
--- /dev/null
+++ b/etc.local/monitors/stress1/random156.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 156
+description = Random 156 Service Check
+service = misc.random
+host = 127.0.0.156
+interval = 156
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random157.conf b/etc.local/monitors/stress1/random157.conf
new file mode 100644
index 0000000..b4ec82f
--- /dev/null
+++ b/etc.local/monitors/stress1/random157.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 157
+description = Random 157 Service Check
+service = misc.random
+host = 127.0.0.157
+interval = 157
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random158.conf b/etc.local/monitors/stress1/random158.conf
new file mode 100644
index 0000000..9bfa5a6
--- /dev/null
+++ b/etc.local/monitors/stress1/random158.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 158
+description = Random 158 Service Check
+service = misc.random
+host = 127.0.0.158
+interval = 158
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random159.conf b/etc.local/monitors/stress1/random159.conf
new file mode 100644
index 0000000..374ab44
--- /dev/null
+++ b/etc.local/monitors/stress1/random159.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 159
+description = Random 159 Service Check
+service = misc.random
+host = 127.0.0.159
+interval = 159
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random16.conf b/etc.local/monitors/stress1/random16.conf
new file mode 100644
index 0000000..69d1ff1
--- /dev/null
+++ b/etc.local/monitors/stress1/random16.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 16
+description = Random 16 Service Check
+service = misc.random
+host = 127.0.0.16
+interval = 16
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random160.conf b/etc.local/monitors/stress1/random160.conf
new file mode 100644
index 0000000..c9e76df
--- /dev/null
+++ b/etc.local/monitors/stress1/random160.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 160
+description = Random 160 Service Check
+service = misc.random
+host = 127.0.0.160
+interval = 160
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random161.conf b/etc.local/monitors/stress1/random161.conf
new file mode 100644
index 0000000..6ab32a0
--- /dev/null
+++ b/etc.local/monitors/stress1/random161.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 161
+description = Random 161 Service Check
+service = misc.random
+host = 127.0.0.161
+interval = 162
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random162.conf b/etc.local/monitors/stress1/random162.conf
new file mode 100644
index 0000000..d9e9c5f
--- /dev/null
+++ b/etc.local/monitors/stress1/random162.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 162
+description = Random 162 Service Check
+service = misc.random
+host = 127.0.0.162
+interval = 162
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random163.conf b/etc.local/monitors/stress1/random163.conf
new file mode 100644
index 0000000..1688338
--- /dev/null
+++ b/etc.local/monitors/stress1/random163.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 163
+description = Random 163 Service Check
+service = misc.random
+host = 127.0.0.163
+interval = 163
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random164.conf b/etc.local/monitors/stress1/random164.conf
new file mode 100644
index 0000000..93bd4ab
--- /dev/null
+++ b/etc.local/monitors/stress1/random164.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 164
+description = Random 164 Service Check
+service = misc.random
+host = 127.0.0.164
+interval = 164
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random165.conf b/etc.local/monitors/stress1/random165.conf
new file mode 100644
index 0000000..5f29264
--- /dev/null
+++ b/etc.local/monitors/stress1/random165.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 165
+description = Random 165 Service Check
+service = misc.random
+host = 127.0.0.165
+interval = 165
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random166.conf b/etc.local/monitors/stress1/random166.conf
new file mode 100644
index 0000000..0684b12
--- /dev/null
+++ b/etc.local/monitors/stress1/random166.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 166
+description = Random 166 Service Check
+service = misc.random
+host = 127.0.0.166
+interval = 166
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random167.conf b/etc.local/monitors/stress1/random167.conf
new file mode 100644
index 0000000..11838b3
--- /dev/null
+++ b/etc.local/monitors/stress1/random167.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 167
+description = Random 167 Service Check
+service = misc.random
+host = 127.0.0.167
+interval = 167
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random168.conf b/etc.local/monitors/stress1/random168.conf
new file mode 100644
index 0000000..df337f2
--- /dev/null
+++ b/etc.local/monitors/stress1/random168.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 168
+description = Random 168 Service Check
+service = misc.random
+host = 127.0.0.168
+interval = 168
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random169.conf b/etc.local/monitors/stress1/random169.conf
new file mode 100644
index 0000000..4ad0ee5
--- /dev/null
+++ b/etc.local/monitors/stress1/random169.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 169
+description = Random 169 Service Check
+service = misc.random
+host = 127.0.0.169
+interval = 169
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random17.conf b/etc.local/monitors/stress1/random17.conf
new file mode 100644
index 0000000..29dea74
--- /dev/null
+++ b/etc.local/monitors/stress1/random17.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 17
+description = Random 17 Service Check
+service = misc.random
+host = 127.0.0.17
+interval = 17
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random170.conf b/etc.local/monitors/stress1/random170.conf
new file mode 100644
index 0000000..a009401
--- /dev/null
+++ b/etc.local/monitors/stress1/random170.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 170
+description = Random 170 Service Check
+service = misc.random
+host = 127.0.0.170
+interval = 170
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random171.conf b/etc.local/monitors/stress1/random171.conf
new file mode 100644
index 0000000..2d35329
--- /dev/null
+++ b/etc.local/monitors/stress1/random171.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 171
+description = Random 171 Service Check
+service = misc.random
+host = 127.0.0.171
+interval = 171
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random172.conf b/etc.local/monitors/stress1/random172.conf
new file mode 100644
index 0000000..e653302
--- /dev/null
+++ b/etc.local/monitors/stress1/random172.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 172
+description = Random 172 Service Check
+service = misc.random
+host = 127.0.0.172
+interval = 172
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random173.conf b/etc.local/monitors/stress1/random173.conf
new file mode 100644
index 0000000..87cbafe
--- /dev/null
+++ b/etc.local/monitors/stress1/random173.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 173
+description = Random 173 Service Check
+service = misc.random
+host = 127.0.0.173
+interval = 173
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random174.conf b/etc.local/monitors/stress1/random174.conf
new file mode 100644
index 0000000..b26efc9
--- /dev/null
+++ b/etc.local/monitors/stress1/random174.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 174
+description = Random 174 Service Check
+service = misc.random
+host = 127.0.0.174
+interval = 174
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random175.conf b/etc.local/monitors/stress1/random175.conf
new file mode 100644
index 0000000..ef76cb2
--- /dev/null
+++ b/etc.local/monitors/stress1/random175.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 175
+description = Random 175 Service Check
+service = misc.random
+host = 127.0.0.175
+interval = 175
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random176.conf b/etc.local/monitors/stress1/random176.conf
new file mode 100644
index 0000000..1ae5a2e
--- /dev/null
+++ b/etc.local/monitors/stress1/random176.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 176
+description = Random 176 Service Check
+service = misc.random
+host = 127.0.0.176
+interval = 176
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random177.conf b/etc.local/monitors/stress1/random177.conf
new file mode 100644
index 0000000..4939849
--- /dev/null
+++ b/etc.local/monitors/stress1/random177.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 177
+description = Random 177 Service Check
+service = misc.random
+host = 127.0.0.177
+interval = 177
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random178.conf b/etc.local/monitors/stress1/random178.conf
new file mode 100644
index 0000000..1f83906
--- /dev/null
+++ b/etc.local/monitors/stress1/random178.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 178
+description = Random 178 Service Check
+service = misc.random
+host = 127.0.0.178
+interval = 178
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random179.conf b/etc.local/monitors/stress1/random179.conf
new file mode 100644
index 0000000..cfdafde
--- /dev/null
+++ b/etc.local/monitors/stress1/random179.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 179
+description = Random 179 Service Check
+service = misc.random
+host = 127.0.0.179
+interval = 179
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random18.conf b/etc.local/monitors/stress1/random18.conf
new file mode 100644
index 0000000..22823c3
--- /dev/null
+++ b/etc.local/monitors/stress1/random18.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 18
+description = Random 18 Service Check
+service = misc.random
+host = 127.0.0.18
+interval = 18
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random19.conf b/etc.local/monitors/stress1/random19.conf
new file mode 100644
index 0000000..17afa4b
--- /dev/null
+++ b/etc.local/monitors/stress1/random19.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 19
+description = Random 19 Service Check
+service = misc.random
+host = 127.0.0.19
+interval = 19
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random2.conf b/etc.local/monitors/stress1/random2.conf
new file mode 100644
index 0000000..79818f7
--- /dev/null
+++ b/etc.local/monitors/stress1/random2.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 2
+description = Random 2 Service Check
+service = misc.random
+host = 127.0.0.2
+interval = 2
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random20.conf b/etc.local/monitors/stress1/random20.conf
new file mode 100644
index 0000000..ae3cfd2
--- /dev/null
+++ b/etc.local/monitors/stress1/random20.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 20
+description = Random 20 Service Check
+service = misc.random
+host = 127.0.0.20
+interval = 20
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random21.conf b/etc.local/monitors/stress1/random21.conf
new file mode 100644
index 0000000..c2fa3f5
--- /dev/null
+++ b/etc.local/monitors/stress1/random21.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 21
+description = Random 21 Service Check
+service = misc.random
+host = 127.0.0.21
+interval = 21
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random22.conf b/etc.local/monitors/stress1/random22.conf
new file mode 100644
index 0000000..66bc5d1
--- /dev/null
+++ b/etc.local/monitors/stress1/random22.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 22
+description = Random 22 Service Check
+service = misc.random
+host = 127.0.0.22
+interval = 22
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random23.conf b/etc.local/monitors/stress1/random23.conf
new file mode 100644
index 0000000..757c4d6
--- /dev/null
+++ b/etc.local/monitors/stress1/random23.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 23
+description = Random 23 Service Check
+service = misc.random
+host = 127.0.0.23
+interval = 23
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random24.conf b/etc.local/monitors/stress1/random24.conf
new file mode 100644
index 0000000..ea4c1cb
--- /dev/null
+++ b/etc.local/monitors/stress1/random24.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 24
+description = Random 24 Service Check
+service = misc.random
+host = 127.0.0.24
+interval = 24
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random25.conf b/etc.local/monitors/stress1/random25.conf
new file mode 100644
index 0000000..27746b2
--- /dev/null
+++ b/etc.local/monitors/stress1/random25.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 25
+description = Random 25 Service Check
+service = misc.random
+host = 127.0.0.25
+interval = 25
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random26.conf b/etc.local/monitors/stress1/random26.conf
new file mode 100644
index 0000000..b6a9f38
--- /dev/null
+++ b/etc.local/monitors/stress1/random26.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 26
+description = Random 26 Service Check
+service = misc.random
+host = 127.0.0.26
+interval = 26
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random27.conf b/etc.local/monitors/stress1/random27.conf
new file mode 100644
index 0000000..05e08f2
--- /dev/null
+++ b/etc.local/monitors/stress1/random27.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 27
+description = Random 27 Service Check
+service = misc.random
+host = 127.0.0.27
+interval = 27
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random28.conf b/etc.local/monitors/stress1/random28.conf
new file mode 100644
index 0000000..cbc72ea
--- /dev/null
+++ b/etc.local/monitors/stress1/random28.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 28
+description = Random 28 Service Check
+service = misc.random
+host = 127.0.0.28
+interval = 28
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random29.conf b/etc.local/monitors/stress1/random29.conf
new file mode 100644
index 0000000..b93f58a
--- /dev/null
+++ b/etc.local/monitors/stress1/random29.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 29
+description = Random 29 Service Check
+service = misc.random
+host = 127.0.0.29
+interval = 29
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random3.conf b/etc.local/monitors/stress1/random3.conf
new file mode 100644
index 0000000..dd4bd18
--- /dev/null
+++ b/etc.local/monitors/stress1/random3.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 3
+description = Random 3 Service Check
+service = misc.random
+host = 127.0.0.3
+interval = 3
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random30.conf b/etc.local/monitors/stress1/random30.conf
new file mode 100644
index 0000000..1f71cca
--- /dev/null
+++ b/etc.local/monitors/stress1/random30.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 30
+description = Random 30 Service Check
+service = misc.random
+host = 127.0.0.30
+interval = 30
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random31.conf b/etc.local/monitors/stress1/random31.conf
new file mode 100644
index 0000000..0c19647
--- /dev/null
+++ b/etc.local/monitors/stress1/random31.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 31
+description = Random 31 Service Check
+service = misc.random
+host = 127.0.0.31
+interval = 31
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random32.conf b/etc.local/monitors/stress1/random32.conf
new file mode 100644
index 0000000..f7949b8
--- /dev/null
+++ b/etc.local/monitors/stress1/random32.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 32
+description = Random 32 Service Check
+service = misc.random
+host = 127.0.0.32
+interval = 32
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random33.conf b/etc.local/monitors/stress1/random33.conf
new file mode 100644
index 0000000..5135786
--- /dev/null
+++ b/etc.local/monitors/stress1/random33.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 33
+description = Random 33 Service Check
+service = misc.random
+host = 127.0.0.33
+interval = 33
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random34.conf b/etc.local/monitors/stress1/random34.conf
new file mode 100644
index 0000000..b3a5ea6
--- /dev/null
+++ b/etc.local/monitors/stress1/random34.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 34
+description = Random 34 Service Check
+service = misc.random
+host = 127.0.0.34
+interval = 34
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random35.conf b/etc.local/monitors/stress1/random35.conf
new file mode 100644
index 0000000..04f76ec
--- /dev/null
+++ b/etc.local/monitors/stress1/random35.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 35
+description = Random 35 Service Check
+service = misc.random
+host = 127.0.0.35
+interval = 35
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random36.conf b/etc.local/monitors/stress1/random36.conf
new file mode 100644
index 0000000..a955750
--- /dev/null
+++ b/etc.local/monitors/stress1/random36.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 36
+description = Random 36 Service Check
+service = misc.random
+host = 127.0.0.36
+interval = 36
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random37.conf b/etc.local/monitors/stress1/random37.conf
new file mode 100644
index 0000000..c9b441b
--- /dev/null
+++ b/etc.local/monitors/stress1/random37.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 37
+description = Random 37 Service Check
+service = misc.random
+host = 127.0.0.37
+interval = 37
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random38.conf b/etc.local/monitors/stress1/random38.conf
new file mode 100644
index 0000000..e76f503
--- /dev/null
+++ b/etc.local/monitors/stress1/random38.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 38
+description = Random 38 Service Check
+service = misc.random
+host = 127.0.0.38
+interval = 38
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random39.conf b/etc.local/monitors/stress1/random39.conf
new file mode 100644
index 0000000..e87c66d
--- /dev/null
+++ b/etc.local/monitors/stress1/random39.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 39
+description = Random 39 Service Check
+service = misc.random
+host = 127.0.0.39
+interval = 39
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random4.conf b/etc.local/monitors/stress1/random4.conf
new file mode 100644
index 0000000..0360167
--- /dev/null
+++ b/etc.local/monitors/stress1/random4.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 4
+description = Random 4 Service Check
+service = misc.random
+host = 127.0.0.4
+interval = 4
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random40.conf b/etc.local/monitors/stress1/random40.conf
new file mode 100644
index 0000000..ddbecba
--- /dev/null
+++ b/etc.local/monitors/stress1/random40.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 40
+description = Random 40 Service Check
+service = misc.random
+host = 127.0.0.40
+interval = 40
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random41.conf b/etc.local/monitors/stress1/random41.conf
new file mode 100644
index 0000000..7819546
--- /dev/null
+++ b/etc.local/monitors/stress1/random41.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 41
+description = Random 41 Service Check
+service = misc.random
+host = 127.0.0.41
+interval = 41
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random42.conf b/etc.local/monitors/stress1/random42.conf
new file mode 100644
index 0000000..ce6cf70
--- /dev/null
+++ b/etc.local/monitors/stress1/random42.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 42
+description = Random 42 Service Check
+service = misc.random
+host = 127.0.0.42
+interval = 42
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random43.conf b/etc.local/monitors/stress1/random43.conf
new file mode 100644
index 0000000..f6585f8
--- /dev/null
+++ b/etc.local/monitors/stress1/random43.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 43
+description = Random 43 Service Check
+service = misc.random
+host = 127.0.0.43
+interval = 43
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random44.conf b/etc.local/monitors/stress1/random44.conf
new file mode 100644
index 0000000..64ebdab
--- /dev/null
+++ b/etc.local/monitors/stress1/random44.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 44
+description = Random 44 Service Check
+service = misc.random
+host = 127.0.0.44
+interval = 44
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random45.conf b/etc.local/monitors/stress1/random45.conf
new file mode 100644
index 0000000..af5b6bd
--- /dev/null
+++ b/etc.local/monitors/stress1/random45.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 45
+description = Random 45 Service Check
+service = misc.random
+host = 127.0.0.45
+interval = 45
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random46.conf b/etc.local/monitors/stress1/random46.conf
new file mode 100644
index 0000000..ab71822
--- /dev/null
+++ b/etc.local/monitors/stress1/random46.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 46
+description = Random 46 Service Check
+service = misc.random
+host = 127.0.0.46
+interval = 46
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random47.conf b/etc.local/monitors/stress1/random47.conf
new file mode 100644
index 0000000..145e27c
--- /dev/null
+++ b/etc.local/monitors/stress1/random47.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 47
+description = Random 47 Service Check
+service = misc.random
+host = 127.0.0.47
+interval = 47
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random48.conf b/etc.local/monitors/stress1/random48.conf
new file mode 100644
index 0000000..51aed79
--- /dev/null
+++ b/etc.local/monitors/stress1/random48.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 48
+description = Random 48 Service Check
+service = misc.random
+host = 127.0.0.48
+interval = 48
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random49.conf b/etc.local/monitors/stress1/random49.conf
new file mode 100644
index 0000000..d542876
--- /dev/null
+++ b/etc.local/monitors/stress1/random49.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 49
+description = Random 49Service Check
+service = misc.random
+host = 127.0.0.49
+interval = 49
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random5.conf b/etc.local/monitors/stress1/random5.conf
new file mode 100644
index 0000000..b856515
--- /dev/null
+++ b/etc.local/monitors/stress1/random5.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 5
+description = Random 5 Service Check
+service = misc.random
+host = 127.0.0.5
+interval = 5
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random50.conf b/etc.local/monitors/stress1/random50.conf
new file mode 100644
index 0000000..c387958
--- /dev/null
+++ b/etc.local/monitors/stress1/random50.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 50
+description = Random 40 Service Check
+service = misc.random
+host = 127.0.0.40
+interval = 40
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random51.conf b/etc.local/monitors/stress1/random51.conf
new file mode 100644
index 0000000..ddba646
--- /dev/null
+++ b/etc.local/monitors/stress1/random51.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 51
+description = Random 51 Service Check
+service = misc.random
+host = 127.0.0.51
+interval = 51
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random52.conf b/etc.local/monitors/stress1/random52.conf
new file mode 100644
index 0000000..ad51004
--- /dev/null
+++ b/etc.local/monitors/stress1/random52.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 52
+description = Random 52 Service Check
+service = misc.random
+host = 127.0.0.52
+interval = 52
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random53.conf b/etc.local/monitors/stress1/random53.conf
new file mode 100644
index 0000000..27c7b9a
--- /dev/null
+++ b/etc.local/monitors/stress1/random53.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 53
+description = Random 53 Service Check
+service = misc.random
+host = 127.0.0.53
+interval = 53
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random54.conf b/etc.local/monitors/stress1/random54.conf
new file mode 100644
index 0000000..8ee6ec8
--- /dev/null
+++ b/etc.local/monitors/stress1/random54.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 54
+description = Random 54 Service Check
+service = misc.random
+host = 127.0.0.54
+interval = 54
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random55.conf b/etc.local/monitors/stress1/random55.conf
new file mode 100644
index 0000000..f5b0aef
--- /dev/null
+++ b/etc.local/monitors/stress1/random55.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 55
+description = Random 55 Service Check
+service = misc.random
+host = 127.0.0.55
+interval = 55
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random56.conf b/etc.local/monitors/stress1/random56.conf
new file mode 100644
index 0000000..24ff17d
--- /dev/null
+++ b/etc.local/monitors/stress1/random56.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 56
+description = Random 56 Service Check
+service = misc.random
+host = 127.0.0.56
+interval = 56
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random57.conf b/etc.local/monitors/stress1/random57.conf
new file mode 100644
index 0000000..3e7b73a
--- /dev/null
+++ b/etc.local/monitors/stress1/random57.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 57
+description = Random 57 Service Check
+service = misc.random
+host = 127.0.0.57
+interval = 57
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random58.conf b/etc.local/monitors/stress1/random58.conf
new file mode 100644
index 0000000..ca63280
--- /dev/null
+++ b/etc.local/monitors/stress1/random58.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 58
+description = Random 58 Service Check
+service = misc.random
+host = 127.0.0.58
+interval = 58
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random59.conf b/etc.local/monitors/stress1/random59.conf
new file mode 100644
index 0000000..9cfa146
--- /dev/null
+++ b/etc.local/monitors/stress1/random59.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 59
+description = Random 59 Service Check
+service = misc.random
+host = 127.0.0.59
+interval = 59
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random6.conf b/etc.local/monitors/stress1/random6.conf
new file mode 100644
index 0000000..cab53ab
--- /dev/null
+++ b/etc.local/monitors/stress1/random6.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 6
+description = Random 6 Service Check
+service = misc.random
+host = 127.0.0.6
+interval = 6
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random60.conf b/etc.local/monitors/stress1/random60.conf
new file mode 100644
index 0000000..ad6818d
--- /dev/null
+++ b/etc.local/monitors/stress1/random60.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 60
+description = Random 60 Service Check
+service = misc.random
+host = 127.0.0.60
+interval = 60
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random61.conf b/etc.local/monitors/stress1/random61.conf
new file mode 100644
index 0000000..e4fbddc
--- /dev/null
+++ b/etc.local/monitors/stress1/random61.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 61
+description = Random 61 Service Check
+service = misc.random
+host = 127.0.0.61
+interval = 61
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random62.conf b/etc.local/monitors/stress1/random62.conf
new file mode 100644
index 0000000..a92871d
--- /dev/null
+++ b/etc.local/monitors/stress1/random62.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 62
+description = Random 62 Service Check
+service = misc.random
+host = 127.0.0.62
+interval = 62
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random63.conf b/etc.local/monitors/stress1/random63.conf
new file mode 100644
index 0000000..a1d0031
--- /dev/null
+++ b/etc.local/monitors/stress1/random63.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 63
+description = Random 63 Service Check
+service = misc.random
+host = 127.0.0.63
+interval = 63
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random64.conf b/etc.local/monitors/stress1/random64.conf
new file mode 100644
index 0000000..89fb47f
--- /dev/null
+++ b/etc.local/monitors/stress1/random64.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 64
+description = Random 64 Service Check
+service = misc.random
+host = 127.0.0.64
+interval = 64
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random65.conf b/etc.local/monitors/stress1/random65.conf
new file mode 100644
index 0000000..fda099e
--- /dev/null
+++ b/etc.local/monitors/stress1/random65.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 65
+description = Random 65 Service Check
+service = misc.random
+host = 127.0.0.65
+interval = 65
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random66.conf b/etc.local/monitors/stress1/random66.conf
new file mode 100644
index 0000000..ee485bb
--- /dev/null
+++ b/etc.local/monitors/stress1/random66.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 66
+description = Random 66 Service Check
+service = misc.random
+host = 127.0.0.66
+interval = 66
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random67.conf b/etc.local/monitors/stress1/random67.conf
new file mode 100644
index 0000000..761b051
--- /dev/null
+++ b/etc.local/monitors/stress1/random67.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 67
+description = Random 67 Service Check
+service = misc.random
+host = 127.0.0.67
+interval = 67
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random68.conf b/etc.local/monitors/stress1/random68.conf
new file mode 100644
index 0000000..5ea5981
--- /dev/null
+++ b/etc.local/monitors/stress1/random68.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 68
+description = Random 68 Service Check
+service = misc.random
+host = 127.0.0.68
+interval = 68
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random69.conf b/etc.local/monitors/stress1/random69.conf
new file mode 100644
index 0000000..822143a
--- /dev/null
+++ b/etc.local/monitors/stress1/random69.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 69
+description = Random 69 Service Check
+service = misc.random
+host = 127.0.0.69
+interval = 69
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random7.conf b/etc.local/monitors/stress1/random7.conf
new file mode 100644
index 0000000..9e550b5
--- /dev/null
+++ b/etc.local/monitors/stress1/random7.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 7
+description = Random 7 Service Check
+service = misc.random
+host = 127.0.0.7
+interval = 7
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random70.conf b/etc.local/monitors/stress1/random70.conf
new file mode 100644
index 0000000..4e6aad6
--- /dev/null
+++ b/etc.local/monitors/stress1/random70.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 70
+description = Random 70 Service Check
+service = misc.random
+host = 127.0.0.70
+interval = 70
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random71.conf b/etc.local/monitors/stress1/random71.conf
new file mode 100644
index 0000000..864fdb8
--- /dev/null
+++ b/etc.local/monitors/stress1/random71.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 71
+description = Random 71 Service Check
+service = misc.random
+host = 127.0.0.71
+interval = 71
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random72.conf b/etc.local/monitors/stress1/random72.conf
new file mode 100644
index 0000000..13cb3a7
--- /dev/null
+++ b/etc.local/monitors/stress1/random72.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 72
+description = Random 72 Service Check
+service = misc.random
+host = 127.0.0.72
+interval = 72
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random73.conf b/etc.local/monitors/stress1/random73.conf
new file mode 100644
index 0000000..0f46767
--- /dev/null
+++ b/etc.local/monitors/stress1/random73.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 73
+description = Random 73 Service Check
+service = misc.random
+host = 127.0.0.73
+interval = 73
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random74.conf b/etc.local/monitors/stress1/random74.conf
new file mode 100644
index 0000000..2899bb6
--- /dev/null
+++ b/etc.local/monitors/stress1/random74.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 74
+description = Random 74 Service Check
+service = misc.random
+host = 127.0.0.74
+interval = 74
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random75.conf b/etc.local/monitors/stress1/random75.conf
new file mode 100644
index 0000000..1e58a41
--- /dev/null
+++ b/etc.local/monitors/stress1/random75.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 75
+description = Random 75 Service Check
+service = misc.random
+host = 127.0.0.75
+interval = 75
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random76.conf b/etc.local/monitors/stress1/random76.conf
new file mode 100644
index 0000000..3ff3b9f
--- /dev/null
+++ b/etc.local/monitors/stress1/random76.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 76
+description = Random 76 Service Check
+service = misc.random
+host = 127.0.0.76
+interval = 76
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random77.conf b/etc.local/monitors/stress1/random77.conf
new file mode 100644
index 0000000..848db5f
--- /dev/null
+++ b/etc.local/monitors/stress1/random77.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 77
+description = Random 77 Service Check
+service = misc.random
+host = 127.0.0.77
+interval = 77
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random78.conf b/etc.local/monitors/stress1/random78.conf
new file mode 100644
index 0000000..b2e55bb
--- /dev/null
+++ b/etc.local/monitors/stress1/random78.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 78
+description = Random 78 Service Check
+service = misc.random
+host = 127.0.0.78
+interval = 78
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random79.conf b/etc.local/monitors/stress1/random79.conf
new file mode 100644
index 0000000..b6e298b
--- /dev/null
+++ b/etc.local/monitors/stress1/random79.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 79
+description = Random 79 Service Check
+service = misc.random
+host = 127.0.0.79
+interval = 79
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random8.conf b/etc.local/monitors/stress1/random8.conf
new file mode 100644
index 0000000..f62399c
--- /dev/null
+++ b/etc.local/monitors/stress1/random8.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 8
+description = Random 8 Service Check
+service = misc.random
+host = 127.0.0.8
+interval = 8
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random80.conf b/etc.local/monitors/stress1/random80.conf
new file mode 100644
index 0000000..183ec67
--- /dev/null
+++ b/etc.local/monitors/stress1/random80.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 80
+description = Random 80 Service Check
+service = misc.random
+host = 127.0.0.80
+interval = 80
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random81.conf b/etc.local/monitors/stress1/random81.conf
new file mode 100644
index 0000000..c2e35b7
--- /dev/null
+++ b/etc.local/monitors/stress1/random81.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 81
+description = Random 81 Service Check
+service = misc.random
+host = 127.0.0.81
+interval = 81
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random82.conf b/etc.local/monitors/stress1/random82.conf
new file mode 100644
index 0000000..34599e9
--- /dev/null
+++ b/etc.local/monitors/stress1/random82.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 82
+description = Random 82 Service Check
+service = misc.random
+host = 127.0.0.82
+interval = 82
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random83.conf b/etc.local/monitors/stress1/random83.conf
new file mode 100644
index 0000000..5613ffb
--- /dev/null
+++ b/etc.local/monitors/stress1/random83.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 83
+description = Random 83 Service Check
+service = misc.random
+host = 127.0.0.83
+interval = 83
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random84.conf b/etc.local/monitors/stress1/random84.conf
new file mode 100644
index 0000000..bbb205c
--- /dev/null
+++ b/etc.local/monitors/stress1/random84.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 84
+description = Random 84 Service Check
+service = misc.random
+host = 127.0.0.84
+interval = 84
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random85.conf b/etc.local/monitors/stress1/random85.conf
new file mode 100644
index 0000000..b6b542e
--- /dev/null
+++ b/etc.local/monitors/stress1/random85.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 85
+description = Random 85 Service Check
+service = misc.random
+host = 127.0.0.85
+interval = 85
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random86.conf b/etc.local/monitors/stress1/random86.conf
new file mode 100644
index 0000000..01dee9b
--- /dev/null
+++ b/etc.local/monitors/stress1/random86.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 86
+description = Random 86 Service Check
+service = misc.random
+host = 127.0.0.86
+interval = 86
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random87.conf b/etc.local/monitors/stress1/random87.conf
new file mode 100644
index 0000000..1eb8039
--- /dev/null
+++ b/etc.local/monitors/stress1/random87.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 87
+description = Random 87 Service Check
+service = misc.random
+host = 127.0.0.87
+interval = 87
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random88.conf b/etc.local/monitors/stress1/random88.conf
new file mode 100644
index 0000000..14af7b1
--- /dev/null
+++ b/etc.local/monitors/stress1/random88.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 88
+description = Random 88 Service Check
+service = misc.random
+host = 127.0.0.88
+interval = 88
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random89.conf b/etc.local/monitors/stress1/random89.conf
new file mode 100644
index 0000000..eb8c3fd
--- /dev/null
+++ b/etc.local/monitors/stress1/random89.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 89
+description = Random 89 Service Check
+service = misc.random
+host = 127.0.0.89
+interval = 89
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random9.conf b/etc.local/monitors/stress1/random9.conf
new file mode 100644
index 0000000..f995d17
--- /dev/null
+++ b/etc.local/monitors/stress1/random9.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 9
+description = Random 9 Service Check
+service = misc.random
+host = 127.0.0.9
+interval = 9
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random90.conf b/etc.local/monitors/stress1/random90.conf
new file mode 100644
index 0000000..6504012
--- /dev/null
+++ b/etc.local/monitors/stress1/random90.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 90
+description = Random 9 Service Check
+service = misc.random
+host = 127.0.0.90
+interval = 90
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random91.conf b/etc.local/monitors/stress1/random91.conf
new file mode 100644
index 0000000..7d880a9
--- /dev/null
+++ b/etc.local/monitors/stress1/random91.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 91
+description = Random 91 Service Check
+service = misc.random
+host = 127.0.0.91
+interval = 91
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random92.conf b/etc.local/monitors/stress1/random92.conf
new file mode 100644
index 0000000..1904519
--- /dev/null
+++ b/etc.local/monitors/stress1/random92.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 92
+description = Random 92 Service Check
+service = misc.random
+host = 127.0.0.92
+interval = 92
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random93.conf b/etc.local/monitors/stress1/random93.conf
new file mode 100644
index 0000000..c968e69
--- /dev/null
+++ b/etc.local/monitors/stress1/random93.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 93
+description = Random 93 Service Check
+service = misc.random
+host = 127.0.0.93
+interval = 93
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random94.conf b/etc.local/monitors/stress1/random94.conf
new file mode 100644
index 0000000..1278a06
--- /dev/null
+++ b/etc.local/monitors/stress1/random94.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 94
+description = Random 94 Service Check
+service = misc.random
+host = 127.0.0.94
+interval = 94
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random95.conf b/etc.local/monitors/stress1/random95.conf
new file mode 100644
index 0000000..eaa38b5
--- /dev/null
+++ b/etc.local/monitors/stress1/random95.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 95
+description = Random 95 Service Check
+service = misc.random
+host = 127.0.0.95
+interval = 95
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random96.conf b/etc.local/monitors/stress1/random96.conf
new file mode 100644
index 0000000..78a38a6
--- /dev/null
+++ b/etc.local/monitors/stress1/random96.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 96
+description = Random 96 Service Check
+service = misc.random
+host = 127.0.0.96
+interval = 96
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random97.conf b/etc.local/monitors/stress1/random97.conf
new file mode 100644
index 0000000..3d4218d
--- /dev/null
+++ b/etc.local/monitors/stress1/random97.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 97
+description = Random 97 Service Check
+service = misc.random
+host = 127.0.0.97
+interval = 97
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random98.conf b/etc.local/monitors/stress1/random98.conf
new file mode 100644
index 0000000..58b2ffa
--- /dev/null
+++ b/etc.local/monitors/stress1/random98.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 98
+description = Random 98 Service Check
+service = misc.random
+host = 127.0.0.98
+interval = 98
+
+[args]
+message = Hello World!
diff --git a/etc.local/monitors/stress1/random99.conf b/etc.local/monitors/stress1/random99.conf
new file mode 100644
index 0000000..e6b75f7
--- /dev/null
+++ b/etc.local/monitors/stress1/random99.conf
@@ -0,0 +1,9 @@
+[monitor]
+title = Random 99
+description = Random 99 Service Check
+service = misc.random
+host = 127.0.0.99
+interval = 99
+
+[args]
+message = Hello World!
diff --git a/etc.local/notifications/.gitkeep b/etc.local/notifications/.gitkeep
new file mode 100644
index 0000000..e69de29
diff --git a/etc.local/notifications/email.conf b/etc.local/notifications/email.conf
new file mode 100644
index 0000000..e69de29
diff --git a/etc.local/plugins/.gitkeep b/etc.local/plugins/.gitkeep
new file mode 100644
index 0000000..e69de29
diff --git a/etc.local/services/.gitkeep b/etc.local/services/.gitkeep
new file mode 100644
index 0000000..e69de29
diff --git a/etc.local/tasks/.gitkeep b/etc.local/tasks/.gitkeep
new file mode 100644
index 0000000..e69de29
diff --git a/etc.local/tasks/mariadb.conf b/etc.local/tasks/mariadb.conf
new file mode 100644
index 0000000..e69de29