summaryrefslogtreecommitdiff
path: root/cfg/cfmanaged.cfg
blob: 71762a6dc018b189c2e6a4e1792680633e6da5eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
Mauve server alert.bytemark.co.uk source 'Sentinel' using '/usr/bin/mauvesend'.


# 
# 1on1
# ----
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/1on1
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/7301
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/1on1
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
ONE_ON_ONE_HOSTS is 46.43.41.100 and 46.43.41.115.


#
#  Basica availability
#
ONE_ON_ONE_HOSTS must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/1on1 ssh failure'.



# 
# ablind
# ------
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/ablind
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/9461
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/ablind
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
ABLIND_HOSTS is 212.110.184.108 and 212.110.187.6.

ABLIND_HOSTS must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/ablind ssh failure'.

# symbiosis
http://ablind.vm.bytemark.co.uk/bytemark/ must run http with content 'Welcome page' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/ablind HTTP failure'.
http://ablind.vm.bytemark.co.uk/_db/ must run http with content 'OK' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/ablind HTTP/DB failure'.

#
# hosted sites
#
http://visionhotels.co.uk/ must run http with content 'Welcome Home' otherwise  '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/ablind HTTP/DB failure'.
http://www.visionhotels.co.uk/ must run http with content 'Welcome Home' otherwise  '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/ablind HTTP/DB failure'.

#
#  This domain runs both HTTP and HTTPS
#
http://actionforblindpeople.org.uk/ must run http with content 'Welcome to the Action for Blind People' otherwise  '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/ablind HTTP/DB failure'.
https://actionforblindpeople.org.uk/ must run https with content 'Welcome to the Action for Blind People' otherwise  '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/ablind HTTP/DB failure'.


http://www.actionforblindpeople.org.uk/ must run http with content 'Welcome to the Action for Blind People' otherwise  '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/ablind HTTP/DB failure'.
https://www.actionforblindpeople.org.uk/ must run https with content 'Welcome to the Action for Blind People' otherwise  '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/ablind HTTP/DB failure'.



# 
# acerecords
# ----------
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/acerecords
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/14331
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/acerecords/wiki/Wiki
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
ACERECORDS_HOSTS is 212.110.190.15.


# host tests
ACERECORDS_HOSTS must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/acerecords/wiki/Wiki ssh failure'.

# Hosted websites
http://acerecords.co.uk/ must run http with status 200 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/acerecords/wiki/Wiki HTTP failure'.
http://acerecords.co.uk/ must run http with content 'Ace Records' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/acerecords/wiki/Wiki HTTP failure'.

http://www.acerecords.co.uk/ must run http with status 200 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/acerecords/wiki/Wiki HTTP failure'.
http://www.acerecords.co.uk/ must run http with content 'Ace Records' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/acerecords/wiki/Wiki HTTP failure'.
https://www.acerecords.co.uk/ must run https with content 'Ace Records' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/acerecords/wiki/Wiki HTTPS failure'.


# 
# adire
# -----
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/adire
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/14171
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/adire
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
ADIRE_HOSTS is 89.16.176.120.

ADIRE_HOSTS must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/adire ssh failure'.

# symbiosis
http://web2adire.dh.bytemark.co.uk/bytemark/ must run http with content 'Unconfigured Domain' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/adire HTTP failure'.
http://web2adire.dh.bytemark.co.uk/ must run http with status 404 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/adire HTTP failure'.

# Hosted sites
http://craigmayhew.com/ must run http with status 200 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/adire HTTP failure - pre-migration'.

http://thelabelman.co.uk/contact/ must run http with content 'Contact Us' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/adire HTTP failure - pre-migration'.

http://dymo-world.com/ must run http with status 200 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/adire HTTP failure - pre-migration'.

#
# SSL checks
#
https://dymo-world.com/ must run https with status 200 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/adire SSL failure'.
https://indulgencecupcakecompany.co.uk/ must run https with status 200 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/adire SSL failure'.
https://secure.adire.co.uk/ must run https with status 200 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/adire SSL failure'.
https://thelabelman.co.uk/ must run https with status 200 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/adire SSL failure'.
https://weddingrings2u.com/ must run https with status 200 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/adire SSL failure'.



# 
# alexanderballard
# ----------------
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/alexanderballard
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/13921
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/alexander
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
ALEX_HOSTS is 89.16.177.199.


# Basic tests
ALEX_HOSTS must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/alexander ssh failure'.

#
# Hosted sites
#
http://alexanderballard.co.uk/ must run http with status 200 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/alexander HTTP failure'.
http://alexanderballard.co.uk/ must run http with content 'Alexander Ballard' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/alexander HTTP failure'.
http://www.alexanderballard.co.uk must run http with content 'Alexander Ballard' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/alexander HTTP failure'.

http://climate-pact.net must run http with content 'User Name' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/alexander HTTP failure'.
#this one is expected to fail until customer fixes DNS
https://climate-pact.net/ must run https with status 200 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/alexander HTTPS failure'.
#this one would fail due to certificate alert
#https://client.climate-pact.net/ must run https with content 'User Name' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/alexander HTTPS failure'.
http://client.climate-pact.net/ must run http with content 'User Name' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/alexander HTTP failure'.
http://www.climate-pact.net/ must run http with content 'User Name' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/alexander HTTP failure'.
https://www.climate-pact.net/ must run https with status 200 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/alexander HTTPS failure'.
https://www.climate-pact.net/ must run https with content 'PACT' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/alexander HTTPS failure'.

http://pact.co/ must run http with content 'PACT - Home' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/alexander HTTP failure'.
http://pact.co/ must run http with status 200 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/alexander HTTP failure'.
http://www.pact.co/ must run http with content 'PACT - Home' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/alexander HTTP failure'.

https://client.climate-pact.net/login must run https with content 'Alexander Ballard Ltd' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/alexander HTTPS failure'.


# 
# almawarid
# ---------
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/almawarid
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/6697
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/amb
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
AMB_HOSTS is 89.16.175.248.

AMB_HOSTS must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/amb ssh failure'.
AMB_HOSTS must run smtp otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/amb smtp failure'.


# 
# amaevents
# ---------
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/amaevents
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/5011
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/amaevents/wiki
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
AMAEVENTS_HOSTS is 89.16.176.193.


# host tests
AMAEVENTS_HOSTS must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/amaevents/wiki ssh failure'.

# http checks
#http://register.ama-limited.co.uk must run http with content "Contact Us" otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/amaevents/wiki HTTP Failure'.


# 
# astrup
# ------
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/astrup
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/14101
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/astrup/wiki
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
ASTRUP_HOSTS is 212.110.189.180.

ASTRUP_HOSTS must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/astrup/wiki ssh failure'.

# symbiosis checks
http://astrup.vm.bytemark.co.uk/bytemark/ must run http with content 'Welcome page' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/astrup/wiki HTTP failure'.

# hosted website(s) checks.
http://afmuseet.no/ must run http with content 'Astrup Fearnley' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/astrup/wiki HTTP failure'.
http://afmuseet.no/ must run http with status 200 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/astrup/wiki HTTP failure'.




# 
# avanta
# ------
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/avanta
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/5676
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/avanta/wiki/Wiki
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
AVANTA_HOSTS is 212.110.190.4 and 212.110.190.19.


# host tests
AVANTA_HOSTS must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/avanta/wiki/Wiki ssh failure'.

# symbiosis
http://avantaws.vm.bytemark.co.uk/bytemark/ must run http with content 'Welcome page' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/avanta/wiki/Wiki HTTP failure'.

# Hosted sites
http://www.avanta.uk.com/ must run http with status 200 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/avanta/wiki/Wiki HTTP failure'.
http://www.avanta.uk.com/ must run http with content 'Avanta' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/avanta/wiki/Wiki HTTP failure'.


# 
# balineum
# --------
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/balineum
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/14986
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/balineum
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
BALINEUM is 212.110.190.175.



BALINEUM must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/balineum ssh failure'.



# 
# bfcbanque
# ---------
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/bfcbanque
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/8781
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/bfcbanque
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
BFCBANQUE_HOSTS is 80.68.91.115.

BFCBANQUE_HOSTS must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/bfcbanque ssh failure'.
BFCBANQUE_HOSTS must run smtp otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/bfcbanque ssh failure'.


# 
# bigv
# ----
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/bigv
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/9160
# Documentation for this client should be found at : http://bigv.io/
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
#
#  Head + Tails + Brains
#
BIGV_HOST_MACHINES is 89.16.188.196 and 89.16.188.197 and 89.16.188.200 and 89.16.188.202 and 89.16.188.203 and 89.16.188.204 and 89.16.188.205 and 89.16.188.206 and 89.16.188.207 and 89.16.188.208 and 89.16.188.209 and 89.16.188.210 and 89.16.188.211 and 89.16.188.211 and 89.16.188.212 and 89.16.188.212 and 89.16.188.213 and 89.16.188.214 and 89.16.188.215 and 89.16.188.216 and 89.16.188.217 and 89.16.188.218 and 89.16.188.219 and 89.16.188.219 and 89.16.188.220 and 89.16.188.221 and 89.16.188.222 and 89.16.188.223 and 89.16.188.224 and 89.16.188.225 and 89.16.188.198 and 89.16.188.199 and 89.16.188.233 and 89.16.188.234 and 89.16.188.235 and 89.16.188.236.

BIGV_HOST_MACHINES must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":http://bigv.io/ ssh failure'.


#####
## BigV host
##
BIGV is 213.138.96.4.
BIGV must ping otherwise 'BigV ping failure'.
https://uk0.bigv.io/ must run https with status 401 otherwise 'BigV HTTPS failure'.




#
# These are important BigV users who should be treated as test-cases for
# bigv functionality, as per #400961
#

https://socialapps.digit9.co.in/ must run https with status 403 otherwise 'BigV hosted client is down - see #400961'.
http://breakthrough-india.com/  must run http with content 'india' otherwise 'BigV hosted client is down - see #400961'.


# 
# bitgravity
# ----------
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/bitgravity
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/13001
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/bitgravity/
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
BITGRAVITY_HOSTS is 212.110.189.10.

BITGRAVITY_HOSTS must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/bitgravity/ ssh failure'.

# symbiosis checks
http://bitgravity.vm.bytemark.co.uk/bytemark/ must run http with content 'Welcome page' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/bitgravity/ HTTP failure'.

# hosted website(s) checks.
http://richannel.org/ must run http with content 'About' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/bitgravity/ HTTP failure'.
http://richannel.org/ must run http with status 200 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/bitgravity/ HTTP failure'.



# 
# boygeorge
# ---------
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/boygeorge
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/15046
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/boygeorge
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
BOYGEORGE_HOSTS is 212.110.190.193.


BOYGEORGE_HOSTS must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/boygeorge ssh failure'.

# hosted sites
# No point alerting before we've got them. That leads to unhappy oncall.


# 
# bureaunet
# ---------
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/bureaunet
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/8721
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/bureaunet
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
BUREAUNET_HOSTS is 80.68.90.217.


BUREAUNET_HOSTS must ping otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/bureaunet ping failure'.
BUREAUNET_HOSTS must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/bureaunet ssh failure'.


# 
# bw
# --
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/bw
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/13776
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/bw
#
# Particular contacts for this host are skemp and jlawrie and jlawrie and jhannah and jhannah.
# 
BRITISH_WATERWAYS_HOSTS is 46.43.37.230 and 46.43.37.231 and 46.43.37.232 and 46.43.37.233 and 46.43.37.234 and 46.43.37.235 and 46.43.37.236 and 46.43.37.238.


# basics
BRITISH_WATERWAYS_HOSTS must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/bw ssh failure'.

# Site checks
https://www.crtmoorings.com/ must run https with content 'Canal & River Trust' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/bw Site failure'.
https://www.crtmoorings.com/ must run https with status 200 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/bw Site failure'.

https://canalrivertrust.org.uk/ must run https with content 'charity' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/bw Site failure'.
https://canalrivertrust.org.uk/ must run https with status 200 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/bw Site failure'.

# disabled as per #465231
#https://canal-rivertrust.org.uk/ must run https with content 'British Waterways' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/bw Site failure'.
#https://canal-rivertrust.org.uk/ must run https with status 200 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/bw Site failure'.

# Added in #465181
https://www.waterscape.com/ must run https with content 'River Trust' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/bw Site failure'.
https://www.waterscape.com/ must run https with status 200 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/bw Site failure'.




# 
# bytemark-backup
# ---------------
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/bytemark-backup
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/6190
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/bytemark
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
BYTEMARK_BACKUP_HOSTS is 212.110.161.197 and 89.16.160.38 and 212.110.161.76 and 212.110.163.246.


#
#  Basic ping + SSH probes
#
BYTEMARK_BACKUP_HOSTS must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/bytemark ssh failure'.

#
#  Service tests: Note that we need to use "public.dancer" + "public.salsa"
#
BYTEMARK_BACKUP_PUBLIC is medium.bytemark.co.uk and public.dancer.bytemark.co.uk and public.salsa.bytemark.co.uk and  212.110.161.70.
BYTEMARK_BACKUP_PUBLIC must run rsync otherwise '*Managed client*: "[Goto Redmine]": rsync failure on backup server'.



# 
# bytemark-db
# -----------
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/bytemark-db
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/6190
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/bytemark
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
BYTEMARK_DB_HOSTS is 212.110.161.122 and 212.110.161.123 and 212.110.161.117 and 212.110.161.118.


#
#  Basic service probes
#
BYTEMARK_DB_HOSTS must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/bytemark ssh failure'.


# 
# bytemark-pairvm
# ---------------
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/bytemark-pairvm
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/6190
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/bytemark
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
BYTEMARK_PAIRVM_HOSTS is 46.43.39.4 and 46.43.39.5 and 46.43.39.6 and 46.43.39.7 and 46.43.39.8 and 46.43.39.9.


BYTEMARK_PAIRVM_HOSTS must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/bytemark ssh failure'.


# 
# cafamily
# --------
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/cafamily
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/4558
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/cafamily
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
CAFAMILY_HOSTS is 212.110.187.230.


CAFAMILY_HOSTS must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/cafamily ssh failure'.

# hosted site
http://cafamily.org.uk/ must run http with content 'Contact a Family' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/cafamily HTTP failure'.
http://makingcontact.org/ must run http with content '1633333' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/cafamily HTTP failure'.



# 
# cafecreate
# ----------
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/cafecreate
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/11566
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/cafecreate
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
CAFE_CREATE_HOSTS is 46.43.34.4.

CAFE_CREATE_HOSTS must ping otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/cafecreate ping failure'.

# This is the host machine
CAFECREATE_HOST is 46.43.34.4.
CAFECREATE_HOST must run http with status 403 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/cafecreate Host machine HTTP failure'.

# Hosted website(s)
http://cafecreate.com/contact/ must run http with content '01491 845 910' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/cafecreate Failure of website http://cafecreate.com/'.
https://www.inderskitchen.com/ must run http with content 'Kitchen' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/cafecreate Failure of hosted website'.




# 
# cctechnology
# ------------
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/cctechnology
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/5585
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/cctech/wiki
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
CCTECH_HOSTS is 46.43.55.4.


# virtual machine host
CCTECH_HOSTS must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/cctech/wiki ssh failure'.

# hosted sites
http://www.gimell.com/    must run http with content 'Gimell Records' otherwise  '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/cctech/wiki Hosted IIS site failure'.
http://www.naimlabel.com/ must run http with content 'naimlabel.com' otherwise  '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/cctech/wiki Hosted IIS site failure'.
http://www.dacapo-records.dk/en/ must run http with content 'Dacapo Records' otherwise  '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/cctech/wiki Hosted IIS site failure'.


# 
# chambyte
# --------
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/chambyte
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/14641
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/chamjet/wiki
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
CHAMJET_HOSTS is 89.16.177.188.


# host
CHAMJET_HOSTS must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/chamjet/wiki ssh failure'.



# 
# chandos
# -------
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/chandos
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/14821
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/chandos/wiki
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
CHANDOS_HOSTS is 46.43.39.52 and 46.43.39.53.

CHANDOS_HOSTS must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/chandos/wiki ssh failure'.


# 
# circleinteractive
# -----------------
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/circleinteractive
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/5674
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/circle
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
CIRCLE is 46.43.55.167 and 46.43.55.168.

CIRCLE must run ssh otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/circle Circle Interactive managed machine ssh failure'.

#
#  Specific virtual hosts which are hosted upon the two hosts.
#
http://www.boltoncvs.org.uk/  must run http with content 'Bolton' otherwise  '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/circle Circle Interactive managed machine HTTP site failure'.
http://www.get-experienced.org.uk/  must run http with content 'Get Experienced' otherwise  '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/circle Circle Interactive managed machine HTTP site failure'.
http://www.hpma.org.uk/  must run http with content 'Healthcare' otherwise  '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/circle Circle Interactive managed machine HTTP site failure'.
http://www.manchestercommunitycentral.org/ must run http with content 'Manchester' otherwise  '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/circle Circle Interactive managed machine HTTP site failure'.
http://www.onecentralplace.org/  must run http with content 'Community Central' otherwise  '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/circle Circle Interactive managed machine HTTP site failure'.
http://www.oxnet.org.uk/  must run http with content 'OCVA' otherwise  '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/circle Circle Interactive managed machine HTTP site failure'.
http://www.vaoldham.org.uk/ must run http with content 'Oldham' otherwise  '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/circle Circle Interactive managed machine HTTP site failure'.
http://www.bristolcompact.org.uk/ must run http with content 'bristol compact' otherwise  '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/circle Circle Interactive managed machine HTTP site failure'.
http://www.bristolgreendoors.org/ must run http with content 'bristol green doors' otherwise  '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/circle Circle Interactive managed machine HTTP site failure'.
http://www.ep-consult.co.uk/ must run http with content 'EPConsult Energies' otherwise  '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/circle Circle Interactive managed machine HTTP site failure'.
http://www.gmcvo.org.uk/ must run http with content 'gmcvo' otherwise  '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/circle Circle Interactive managed machine HTTP site failure'.
http://www.hillingdonconnected.org.uk/ must run http with content 'hillingdon' otherwise  '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/circle Circle Interactive managed machine HTTP site failure'.
http://www.mertonconnected.com/ must run http with content 'merton' otherwise  '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/circle Circle Interactive managed machine HTTP site failure'.
http://www.officeiq.co.uk/  must run http with content 'office iq' otherwise  '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/circle Circle Interactive managed machine HTTP site failure'.
http://www.tsnla.org.uk/ must run http with content 'third sector' otherwise  '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/circle Circle Interactive managed machine HTTP site failure'.




# 
# clueball
# --------
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/clueball
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/14016
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/clueball
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
CLUEBALL_HOSTS is 212.110.189.158.

CLUEBALL_HOSTS must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/clueball ssh failure'.

http://www.investor-dynamics.com/ must run http with status 200 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/clueball HTTP - failure'.
http://www.investor-dynamics.com/ must run http with content 'Investor Dynamics' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/clueball HTTP - failure'.



# 
# clusta.com
# ----------
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/clusta.com
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/10391
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/ggreen
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
GGREEN_HOSTS is 212.110.185.127.

GGREEN_HOSTS must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/ggreen ssh failure'.


# symbiosis tests
http://ggreen.vm.bytemark.co.uk/bytemark/ must run http with content 'Welcome page' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/ggreen HTTP failure'.
http://ggreen.vm.bytemark.co.uk/_db/ must run http with content 'OK' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/ggreen HTTP/DB failure'.

# HTTP tests
http://shop.giellygreen.com/ must run http with status 200 otherwise '*Managed clients*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/ggreen Shop-site failure'.
http://shop.giellygreen.com/ must run http with content 'London hair salon' otherwise '*Managed clients*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/ggreen Shop-site failure'.

# HTTPS tests
https://shop.giellygreen.com/ must run https with status 200 otherwise '*Managed clients*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/ggreen Shop-site failure'.
https://shop.giellygreen.com/ must run https with content 'London hair salon' otherwise '*Managed clients*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/ggreen Shop-site failure'.



# 
# coi
# ---
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/coi
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/9416
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/coi/wiki
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
COI_HOSTS is 46.43.41.10 and 46.43.41.11 and 46.43.41.20 and 46.43.41.21 and 46.43.41.25 and 46.43.41.26.


# Hosts
COI_HOSTS must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/coi/wiki ssh failure'.

#
#  Content checks
#
http://www.data.gov.uk/ must run http with content 'Opening up' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/coi/wiki Site failure '.
http://data.gov.uk/ must run http with content 'Opening up' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/coi/wiki Site failure '.

#
#  Status checks
#
http://www.data.gov.uk/ must run http with status 200 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/coi/wiki Site failure '.
http://data.gov.uk/ must run http with status 200 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/coi/wiki Site failure '.



# 
# crt
# ---
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/crt
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/13776
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/bw
#
# Particular contacts for this host are skemp and jlawrie and jlawrie and jhannah and jhannah.
# 
BRITISH_WATERWAYS_HOSTS is 46.43.37.230 and 46.43.37.231 and 46.43.37.232 and 46.43.37.233 and 46.43.37.234 and 46.43.37.235 and 46.43.37.236 and 46.43.37.238.


# basics
BRITISH_WATERWAYS_HOSTS must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/bw ssh failure'.

# Site checks
https://www.crtmoorings.com/ must run https with content 'Canal & River Trust' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/bw Site failure'.
https://www.crtmoorings.com/ must run https with status 200 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/bw Site failure'.

https://canalrivertrust.org.uk/ must run https with content 'charity' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/bw Site failure'.
https://canalrivertrust.org.uk/ must run https with status 200 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/bw Site failure'.

# disabled as per #465231
#https://canal-rivertrust.org.uk/ must run https with content 'British Waterways' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/bw Site failure'.
#https://canal-rivertrust.org.uk/ must run https with status 200 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/bw Site failure'.

# Added in #465181
https://www.waterscape.com/ must run https with content 'River Trust' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/bw Site failure'.
https://www.waterscape.com/ must run https with status 200 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/bw Site failure'.




# 
# csp
# ---
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/csp
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/14056
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/csp/wiki/Wiki
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
CSP_HOSTS is 46.43.40.37 and 46.43.40.39 and 46.43.40.40 and 46.43.40.41 and 46.43.40.42 and 46.43.40.43 and 46.43.40.44.


# host tests
CSP_HOSTS must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/csp/wiki/Wiki ssh failure'.

http://www.csp.org.uk  must run http with content 'Contact CSP' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/csp/wiki/Wiki HTTP failure.'.
http://jobescalator.com  must run http with content 'About the CSP' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/csp/wiki/Wiki HTTP failure.'.


# 
# danbull
# -------
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/danbull
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/currently hanging off tdobson's bigv account
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/danbull/wiki/Wiki
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
DANBULL_HOSTS is 213.138.101.25.


# host tests
DANBULL_HOSTS must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/danbull/wiki/Wiki ssh failure'.

# symbiosis
http://itsdanbull.co.uk/ must run http with content 'FAQ' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/danbull/wiki/Wiki HTTP failure'.




# 
# deramores
# ---------
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/deramores
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/11091
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/deramores
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
DERAMORES_HOST is 89.16.179.205 and 89.16.177.185 and 46.43.35.138.


# Host machines
DERAMORES_HOST must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/deramores ssh failure'.

# hosted sites
http://www.deramores.com/ must run http with content 'Knitting Yarn' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/deramores HTTP failure'.
https://secure.deramores.com/ must run https with content 'Knitting Yarn' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/deramores HTTPS failure'.
http://www.yarn4less.com/ must run http with content 'is now part of Deramores' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/deramores HTTP failure'.

# TODO: derastaging is not yet live - we must update when it is.
derastaging.dh.bytemark.co.uk must run rsync otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/deramores rsync failure on staging site'.




# 
# dfi
# ---
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/dfi
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/10341
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/dfi
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
DFI_HOSTS is 212.110.179.140 and 212.110.179.141 and 212.110.179.142.


DFI_HOSTS must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/dfi ssh failure'.

# service checks
dfi-smtp.dh.bytemark.co.uk must run smtp otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/dfi does not run SSH'.

# website checks.
http://trac.directfleetinsurance.co.uk/trac/ must run http with content 'DFI' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/dfi Trac failure'.
https://www.directfleetinsurance.co.uk/ must run http with content 'Direct Fleet Insurance' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/dfi Main website failure'.






# 
# elevenplus
# ----------
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/elevenplus
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/5327
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/elevenplus/wiki
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
ELEVENPLUS_HOSTS is 89.16.161.184.


# host tests
ELEVENPLUS_HOSTS must run ssh on 22774 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/elevenplus/wiki ssh failure'.

http://tech1.dh.bytemark.co.uk/  must run http with status 200 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/elevenplus/wiki HTTP failure.'.
http://www.elevenplusexams.co.uk/  must run http with status 200 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/elevenplus/wiki HTTP failure.'.
http://www.elevenplusexams.co.uk/  must run http with content '11 plus forum' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/elevenplus/wiki HTTP failure.'.


# 
# empello
# -------
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/empello
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/15146
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/empello/wiki/Wiki
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
EMPELLO_HOSTS is 89.16.178.208.


# host tests
EMPELLO_HOSTS must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/empello/wiki/Wiki ssh failure'.

# HTTP to be added when migrated


# 
# eontu
# -----
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/eontu
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/14561
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/eontu
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
EONTU_HOSTS is 212.110.188.242.


# basic health
EONTU_HOSTS must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/eontu SSH failure'.
EONTU_HOSTS must run ftp on 21 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/eontu FTP failure'.

# site tests
http://eontu.com/ must run http with status 200 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/eontu HTTP failure'.
https://eontu.com/ must run https with status 200 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/eontu HTTP failure'.
# 
# Updated by Patrick on 2012-11-02 to not poll the homepage.
#
https://eontu.com/ must run https with content 'eontu home page' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/eontu HTTP failure'.


# 
# epona
# -----
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/epona
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/14916
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/epona
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
EPONA_HOSTS is 212.110.190.161.


#
#  Basic tests
#
EPONA_HOSTS must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/epona ssh failure'.

#
#  Hosted sites
#
http://epona.tv/ must run http with content 'EPONA' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/epona HTTP Site Failure'.
http://www.epona.tv/ must run http with status 200 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/epona HTTP Site Failure'.



# 
# evergreen
# ---------
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/evergreen
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/29
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/evergreen
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
EVERGREEN_HOSTS is 46.43.40.197 and 46.43.40.198.

EVERGREEN_HOSTS must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/evergreen ssh failure'.



# 
# fareham.ac.uk
# -------------
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/fareham.ac.uk
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/11711
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/fareham
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
FAREHAM_HOSTS is 212.110.187.52.


# host
FAREHAM_HOSTS must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/fareham ssh failure'.

# hosted sites
http://fareham.vm.bytemark.co.uk/ must run http with content 'Fareham College web' otherwise  '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/fareham HTTP/DB failure'.




# 
# fastwebmedia
# ------------
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/fastwebmedia
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/11341
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/fastwebmedia
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
FWM_HOSTS is 46.43.51.196 and 46.43.51.197 and 46.43.51.198 and 46.43.51.199 and 46.43.51.200 and 46.43.51.201 and 46.43.51.202.


FWM_HOSTS must run ssh on 22774 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/fastwebmedia ssh failure'.

#
#  Indivdual load balancers run HTTP
#
http://lb01.fastwebmedia.net/ must run http with status 200 otherwise 'FastWebMedia: Load Balancer outage'.
http://lb01.fastwebmedia.net/ must run http with content 'lb01.fastwebmedia.net' otherwise 'FastWebMedia: Load Balancer outage'.
http://lb02.fastwebmedia.net/ must run http with status 200 otherwise 'FastWebMedia: Load Balancer outage'.
http://lb02.fastwebmedia.net/ must run http with content 'lb02.fastwebmedia.net' otherwise 'FastWebMedia: Load Balancer outage'.

#
#  Hosts picked at random from the many that are running on FWM.
#
https://www.colorsport.co.uk/ must run https with content 'photographic archive' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/fastwebmedia HTTPS site failure.'.
http://facebook.fwmapps.co.uk/media/images/icon_facebook.png must run http with status 200 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/fastwebmedia HTTP serving of static file failed - check gluster.'.
https://www.colorsport.co.uk/media/images/logo.png must run https with status 200 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/fastwebmedia HTTPS serving of static files failed - check gluster.'.
http://www.carling.com/ must run http with content 'Number One Lager' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/fastwebmedia site HTTP failure.'.




# 
# flgtechnology
# -------------
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/flgtechnology
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/8921
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/flg
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
FLGTECH_HOSTS is 212.110.171.166 and 212.110.171.167 and 212.110.171.176 and 212.110.171.177 and 212.110.171.171 and 212.110.171.170 and 212.110.171.168 and 212.110.171.169 and 212.110.171.178 and 212.110.171.179 and 212.110.171.174 and 212.110.171.175.

FLGTECH_HOSTS must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/flg ssh failure'.

# website tests
http://app1.flg360.co.uk/  must run http with content 'Lead Management' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/flg Gluster Testing Failed'.
http://app2.flg360.co.uk/  must run http with content 'Lead Management' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/flg Gluster Testing Failed'.
http://app3.flg360.co.uk/  must run http with content 'Lead Management' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/flg Gluster Testing Failed'.
http://app4.flg360.co.uk/  must run http with content 'Lead Management' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/flg Gluster Testing Failed'.
http://flgtech-app5.dh.bytemark.co.uk/  must run http with content 'Lead Management' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/flg Gluster Testing Failed'.
http://flgtech-app6.dh.bytemark.co.uk/  must run http with content 'Lead Management' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/flg Gluster Testing Failed'.
http://flg360.co.uk/       must run http with content 'Lead Management' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/flg Gluster Testing Failed'.
http://www.flg360.co.uk/  must run http with content 'Lead Management' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/flg Gluster Testing Failed'.

# individual hosts
http://212.110.171.166/  must run http with status 200 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/flg app1 failure'.
http://212.110.171.167/  must run http with status 200 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/flg app2 failure'.
http://212.110.171.176/  must run http with status 200 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/flg app3 failure'.
http://212.110.171.177/  must run http with status 200 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/flg app4 failure'.
http://212.110.171.171/  must run http with status 200 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/flg app5 failure'.
http://212.110.171.170/  must run http with status 200 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/flg app6 failure'.

# service tests
http://app1.flg360.co.uk/_gluster/  must run http with content 'OK' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/flg Gluster Testing Failed'.
http://app2.flg360.co.uk/_gluster/  must run http with content 'OK' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/flg Gluster Testing Failed'.
http://app3.flg360.co.uk/_gluster/  must run http with content 'OK' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/flg Gluster Testing Failed'.
http://app4.flg360.co.uk/_gluster/  must run http with content 'OK' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/flg Gluster Testing Failed'.
http://flgtech-app5.dh.bytemark.co.uk/_gluster/  must run http with content 'OK' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/flg Gluster Testing Failed'.
http://flgtech-app6.dh.bytemark.co.uk/_gluster/  must run http with content 'OK' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/flg Gluster Testing Failed'.


# 
# foroff
# ------
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/foroff
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/12936
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/foroff
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
FOROFF_HOSTS is 46.43.35.229.


# host
FOROFF_HOSTS must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/foroff ssh failure'.

# ensure mysql is running
http://foroff.dh.bytemark.co.uk/_db/ must run http with content 'OK' otherwise 'MySQL failure?'.

# phpmyadmin should be available
http://foroff.dh.bytemark.co.uk/phpmyadmin/ must run http with status 200 otherwise 'PHPMyAdmin is not accessible'.

# hosted websites
http://blogs.fco.gov.uk/robots.txt   must run http with content 'User-agent' otherwise 'Site failure?'.
http://blogs.fco.gov.uk/wp-login.php must run http with content 'Log In' otherwise 'Site failure?'.


# 
# frontline
# ---------
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/frontline
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/5834
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/frontline
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
FRONTLINE_HOSTS is 89.16.186.146 and 89.16.186.155 and 89.16.186.140 and 89.16.186.152 and 89.16.186.134 and 89.16.186.132 and 89.16.186.135 and 89.16.186.150 and 89.16.186.151 and 89.16.178.53 and 89.16.186.138.


FRONTLINE_HOSTS must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/frontline ssh failure'.

FRONTLINE_UK is fsuk1.dh.bytemark.co.uk.
FRONTLINE_UK must run smtp otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/frontline host failed SMTP check'.

#####
# Dealtrack
#
https://secure.dealtrak123.co.uk/login must run https with content 'Dealer ID' within 180 every 240 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/frontline secure dealtrak server'.
https://www.dealtrak123.co.uk/login must run https with content 'Dealer ID' within 180 every 240 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/frontline Dealtrak main server'.
https://dev.staging.dealtrak123.co.uk/login must run https with content 'Dealer ID' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/frontline Dealtrak staging server'.
https://uat.staging.dealtrak123.co.uk/login must run https with content 'Dealer ID' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/frontline Dealtrak staging server'.
https://test.staging.dealtrak123.co.uk/login must run https with content 'Dealer ID' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/frontline Dealtrak staging server'.
https://live.staging.dealtrak123.co.uk/login must run https with content 'Dealer ID' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/frontline Dealtrak staging server'.
FRONTLINESTAGING2 is 89.16.186.138 and 89.16.186.139 and 89.16.186.148.
FRONTLINESTAGING2 must run ssh otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/frontline staging2 (ubuntu) host failed SSH check'.
FRONTLINESTAGING2 must ping otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/frontline staging2 (ubuntu) not ping'.

#
#  Hosted sites.
#
http://public.dealtrak123.co.uk must run http with status 200 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/frontline Redirection of this site has failed.'.
http://www.dealtrak123.co.uk must run http with status 200 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/frontline HTTP site failure.'.
http://www.dealtrakbroker.co.uk/ must run http with status 200 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/frontline HTTP site failure.'.
http://www.dealtrakbroker.co.uk/ must run http with status 200 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/frontline HTTP site failure.'.
http://www.dealtrakbroker.co.uk/ must run http with content 'asset brokers' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/frontline HTTP site failure.'.
http://frontline-solutions.co.uk/ must run http with content 'Frontline Solutions' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/frontline HTTP site failure.'.

# database tests
https://app3.dealtrak123.co.uk/html/admin_20031963/test.php must run https with content 'Database Server Connection: OK' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/frontline Database connections failed'.
https://app3.dealtrak123.co.uk/html/admin_20031963/test.php must run https with content 'DealTrak123 Database: OK' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/frontline Database connections failed'.
https://app3.dealtrak123.co.uk/html/admin_20031963/test.php must run https with content 'Database Query: OK' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/frontline Database connections failed'.

https://app4.dealtrak123.co.uk/html/admin_20031963/test.php must run https with content 'Database Server Connection: OK' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/frontline Database connections failed'.
https://app4.dealtrak123.co.uk/html/admin_20031963/test.php must run https with content 'DealTrak123 Database: OK' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/frontline Database connections failed'.
https://app4.dealtrak123.co.uk/html/admin_20031963/test.php must run https with content 'Database Query: OK' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/frontline Database connections failed'.

https://app5.dealtrak123.co.uk/html/admin_20031963/test.php must run https with content 'Database Server Connection: OK' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/frontline Database connections failed'.
https://app5.dealtrak123.co.uk/html/admin_20031963/test.php must run https with content 'DealTrak123 Database: OK' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/frontline Database connections failed'.
https://app5.dealtrak123.co.uk/html/admin_20031963/test.php must run https with content 'Database Query: OK' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/frontline Database connections failed'.

https://app6.dealtrak123.co.uk/html/admin_20031963/test.php must run https with content 'Database Server Connection: OK' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/frontline Database connections failed'.
https://app6.dealtrak123.co.uk/html/admin_20031963/test.php must run https with content 'DealTrak123 Database: OK' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/frontline Database connections failed'.
https://app6.dealtrak123.co.uk/html/admin_20031963/test.php must run https with content 'Database Query: OK' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/frontline Database connections failed'.

https://app7.dealtrak123.co.uk/html/admin_20031963/test.php must run https with content 'Database Server Connection: OK' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/frontline Database connections failed'.
https://app7.dealtrak123.co.uk/html/admin_20031963/test.php must run https with content 'DealTrak123 Database: OK' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/frontline Database connections failed'.
https://app7.dealtrak123.co.uk/html/admin_20031963/test.php must run https with content 'Database Query: OK' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/frontline Database connections failed'.




# 
# hackedoff
# ---------
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/hackedoff
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/15006
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/hackedoff
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
HACKEDOFF_HOSTS is 89.16.178.115.

HACKEDOFF_HOSTS must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/hackedoff ssh failure'.

# MySQL

# hosted sites
http://hackinginquiry.org must run http with content 'Hacked off' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/hackedoff site failure'.


# 
# hariblog
# --------
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/hariblog
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/11226
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/hariblog/wiki
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
HARI_BLOG_HOSTS is 212.110.186.153.


# Host
HARI_BLOG_HOSTS must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/hariblog/wiki ssh failure'.

# symbiosis
http://hariblog.vm.bytemark.co.uk/bytemark/ must run http with content 'Welcome page' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/hariblog/wiki HTTP failure'.

# hosted sites
http://johannhari.com/ must run http with content 'Johann Hari' otherwise  '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/hariblog/wiki HTTP failure'.


# 
# helpful
# -------
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/helpful
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/12941
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/helpful/wiki
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
HELPFUL_HOSTS is 212.110.190.148.


# host tests
HELPFUL_HOSTS must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/helpful/wiki ssh failure'.

http://consultation.boundarycommissionforengland.independent.gov.uk must run http with content 'Parliamentary' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/helpful/wiki Site failure'.


# 
# homecouk
# --------
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/homecouk
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/10801
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/homecouk/wiki/Wiki
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
HOMECOUK_HOSTS is 46.43.35.161 and 89.16.176.144.


# host tests
HOMECOUK_HOSTS must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/homecouk/wiki/Wiki ssh failure'.

# live image cache on fritillary
http://image-cache-1.home.co.uk must run http with status 401 otherwise '"Home.co.uk":https://managed.bytemark.co.uk/projects/homecouk/wiki/Wiki managed machine - Image cache on fritillary should be password protected'.
# see root's crontab on one-eyed-jack for the check below
# http://bytemarkmon:7yeR%40s0a@image-cache-1.home.co.uk/images/image_cache/monitor_testimage.jpg" must run http with status 200 otherwise '"Home.co.uk":https://managed.bytemark.co.uk/projects/homecouk/wiki/Wiki managed machine - Image cache on fritillary.dh not working'.

# live image cache on tortoiseshell
http://image-cache-2.home.co.uk must run http with status 401 otherwise '"Home.co.uk":https://managed.bytemark.co.uk/projects/homecouk/wiki/Wiki managed machine - Image cache on tortoiseshell should be password protected'.
# see root's crontab on one-eyed-jack for the check below
#http://bytemarkmon:7yeR%40s0a@image-cache-2.home.co.uk/images/image_cache/monitor_testimage.jpg" must run http with status 200 otherwise '"Home.co.uk":https://managed.bytemark.co.uk/projects/homecouk/wiki/Wiki managed machine - Image cache on tortoiseshell.dh not working'.


# 
# ilexir
# ------
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/ilexir
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/8151
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/ilexir
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
ILEX_HOSTS is 80.68.92.206.


ILEX_HOSTS must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/ilexir ssh failure'.

# hosted sites
http://epp.ilexir.co.uk/  must run http  with content 'Data Collection Portal' otherwise  '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/ilexir HTTP failure'.
https://epp.ilexir.co.uk/ must run https with content 'Data Collection Portal' otherwise  '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/ilexir HTTP failure'.


# 
# innovationunit
# --------------
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/innovationunit
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/12431
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/innovationunit
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
IU1_HOSTS is 212.110.188.30.


# host
IU1_HOSTS must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/innovationunit ssh failure'.

# symbiosis
http://iu1.vm.bytemark.co.uk/bytemark/ must run http with content 'Welcome page' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/innovationunit HTTP failure'.

# hosted websites
http://innovationunit.org/index.php must run http with content 'Innovation Unit' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/innovationunit HTTP failure'.
http://innovationunit.org/          must run http with content 'Innovation Unit' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/innovationunit HTTP failure'.


# 
# isoc
# ----
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/isoc
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/7881
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/isoc
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
ISOC_HOSTS is 212.110.167.148 and 212.110.167.158 and 46.43.36.212 and 46.43.36.213 and 46.43.36.214 and 46.43.36.215 and 46.43.36.216 and 46.43.36.217 and 46.43.36.218 and 46.43.37.4 and 46.43.37.5 and 46.43.37.6 and 46.43.37.7 and 46.43.37.8.


isoc3.dh.bytemark.co.uk must run ssh on 25622 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/isoc ssh failure'.
isoc2.dh.bytemark.co.uk must run ssh on 25622 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/isoc ssh failure'.
isoc.dh.bytemark.co.uk must run ssh on 25622 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/isoc ssh failure'.

# not checking windows RDP, just ping

# service tests
INTERNET_SOCIETY_FTP is 212.110.167.158 and 212.110.167.148.
INTERNET_SOCIETY_FTP must run ftp on 25621 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/isoc Intenet society IPv4 ftp'.

INTERNET_SOCIETY_JABBER is 212.110.167.149 and 212.110.167.149.
INTERNET_SOCIETY_JABBER must run jabber otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/isoc Intenet society IPv4 jabber'.

#INTERNET_SOCIETY_MAIL is 46.43.26.212 and 46.43.36.213.
#INTERNET_SOCIETY_MAIL must run smtp otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/isoc Intenet society IPv4 SMTP'.

# website tests
http://www.isoc.org/sysadmin/monitor/ must run http with content 'OK' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/isoc Internet Society ipv4 http'.
http://dev.www.isoc.org/sysadmin/monitor/ must run http with content 'OK' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/isoc Internet Society ipv4 http'.
http://46.43.36.213/sysadmin/monitor/ must run http with content 'OK' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/isoc Internet Society ipv4 http'.
https://www.isoc.org/sysadmin/monitor/ must run https with content 'OK' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/isoc Internet Society ipv4 https'.
https://212.110.167.152/sysadmin/monitor/ must run https with content 'OK' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/isoc Internet Society ipv4 https'.
https://www.internetsociety.org/sysadmin/monitor/ must run http with content 'OK' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/isoc Internet Society ipv4 https'.



# 
# jacadatravel
# ------------
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/jacadatravel
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/11721
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/jacadatravel
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
JACADA_HOSTS is 212.110.187.54.


# basic tests.
JACADA_HOSTS must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/jacadatravel ssh failure'.

# symbiosis tests
http://jacada01.vm.bytemark.co.uk/bytemark/ must run http with content 'Welcome page' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/jacadatravel HTTP failure'.
http://jacada01.vm.bytemark.co.uk/_db/ must run http with content 'OK' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/jacadatravel HTTP/DB failure'.

# website tests
http://www.jacadaincentives.com/uk/en/ must run http with content 'Latin America' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/jacadatravel HTTP failure'.
http://static.jacadaincentives.com/js/ must run http with status 200 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/jacadatravel HTTP failure'.


# 
# jam
# ---
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/jam
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/5104
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/managedjam
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
MANAGED_JAM_HOSTS is 212.110.188.127.


#
# Basic tests
#
MANAGED_JAM_HOSTS must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/managedjam ssh failure'.
http://managedjam.vm.bytemark.co.uk/bytemark/ must run http with content 'Welcome page' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/managedjam HTTP failure'.

#
# Hosted sites
#
http://www.jamrecruitment.co.uk/ must run http with status 200 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/managedjam HTTP failure'.
http://www.jamrecruitment.co.uk/ must run http with content 'Jobs in the UK' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/managedjam HTTP failure'.


# 
# kamzam
# ------
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/kamzam
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/10556
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/kamzam
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
KAMZAM_HOSTS is 89.16.179.171.

KAMZAM_HOSTS must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/kamzam ssh failure'.

# symbiosis checks
http://kamzam.dh.bytemark.co.uk/bytemark/ must run http with content 'Welcome page' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/kamzam HTTP failure'.
http://kamzam.dh.bytemark.co.uk/_db/ must run http with content 'OK' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/kamzam HTTP/DB fail'.

# website tests
http://www.fatcheese.ie/ must run http with content 'voucher codes' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/kamzam HTTP failure on fatcheese.ie'.
http://fatcheese.ie/ must run http with content 'voucher codes' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/kamzam HTTP failure on fatcheese.ie'.




# 
# kingsfund
# ---------
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/kingsfund
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/13681
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/kingsfund/wiki
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
KINGSFUND_HOSTS is 46.43.35.154.


KINGSFUND_HOSTS must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/kingsfund/wiki ssh failure'.

http://www.kingsfund.org.uk/ must run http with content 'change health care' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/kingsfund/wiki HTTP Failure'.
http://www.kingsfund.org.uk/ must run http with status 200  otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/kingsfund/wiki HTTP Failure'.



# 
# leedslists
# ----------
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/leedslists
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/15271
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/leeds-list/wiki
#
# Particular contacts for this host are jhackett and skemp.
# 
LLIST_HOSTS is 89.16.178.236.


#
# ssh check
#
LLIST_HOSTS must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/leeds-list/wiki ssh failure'.

#
# http check
#
http://leeds-list.co.uk/ must run http with content 'Leeds-List' otherwise  '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/leeds-list/wiki HTTP failure'.



# 
# lichfield
# ---------
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/lichfield
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/10791
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/lichfield
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
LICH_HOSTS is 212.110.185.246.

LICH_HOSTS must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/lichfield ssh failure'.


http://lichfield.vm.bytemark.co.uk/ must run http with content 'Lichfield District Council' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/lichfield site failure'.



# 
# linn
# ----
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/linn
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/5324
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/linn
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
LINN_HOSTS is 89.16.185.172 and 46.43.50.217 and 89.16.185.171 and 89.16.185.173 and 89.16.185.174 and 46.43.50.216 and 46.43.50.212 and 46.43.50.217 and 89.16.185.171.

LINN_HOSTS must ping otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/linn ping failure'.


#
#  We cannot ssh-check "LINN_HOSTS" as two are Windows hosts.
#
LINN_SSH_HOSTS is 89.16.185.172 and 89.16.185.173 and 89.16.185.174 and 46.43.50.216 and 46.43.50.212.
LINN_SSH_HOSTS must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/linn ssh failure'.


http://www.linnrecords.com/  must run http with content 'Linn Records' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/linn Linn Records : HTTP Main Site'.
http://forums.linn.co.uk/    must run http with content 'member list' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/linn Linn Records : forums.linn.co.uk failure'.
http://blogs.linn.co.uk/all/     must run http with content 'Linn Blogs' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/linn Linn Records : site failure'.
http://help.linn.co.uk/help/ must run http with content 'Linn Help' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/linn Linn Records : site failure'.
http://oss.linn.co.uk/trac/  must run http with content 'Open Source' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/linn Linn Records : site failure'.
http://news.linn.co.uk/      must run http with content 'Linn News' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/linn Linn Records : site failure'.
http://forums-staging.linn.co.uk/  must run http with content 'member list' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/linn Linn Records : staging forums.linn.co.uk failure'.
http://staging-website.linnrecords.com/  must run http with content 'Linn' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/linn Linn Records : HTTP Staging Site Down'.
http://openhome.org/ must run http with content 'Openhome' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/linn Linn Records : HTTP OpenHome.org Site Down'.

# Test the radio station is up and running - note not hosted @ bytemark
http://radio.linnrecords.com/cast/login/index.php must run http with content 'Username' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/linn Radio site - hosted in Glasgow - failure'.
http://radio.linnrecords.com/cast/login/index.php must run http with status 200 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/linn Radio site - hosted in Glasgow - failure'.

# samba guest - we can't do SMB probes
smtp.linn.co.uk must run smtp otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/linn Linn email is down'.




# 
# liquidlight
# -----------
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/liquidlight
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/9181
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/liquidlight
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
LIQUID_LIGHT_HOSTS is 89.16.177.95.


# host
LIQUID_LIGHT_HOSTS must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/liquidlight ssh failure'.

# symbiosis

# hosted sites
http://www.bellwoodprestbury.com/            must run http with content 'International specialist insurance' otherwise  '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/liquidlight HTTP/DB failure'.
http://www.bellwoodprestbury.com/monitoring/ must run http with content 'a-okay' otherwise  '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/liquidlight HTTP/DB failure'.



# 
# mag
# ---
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/mag
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/15231
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/chatter/wiki
#
# Particular contacts for this host are jlawrie and tdobson and skemp.
# 
MAG_HOSTS is 212.110.191.6.


MAG_HOSTS must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/chatter/wiki ssh failure'.

MAG_HOSTS must ping otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/chatter/wiki ping failure'.

# MySQL
# http://_/_db/ must run http with content 'OK' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/chatter/wiki HTTP/DB failure'.

# hosted sites


# 
# marsh
# -----
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/marsh
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/14706
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/marsh
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
MARSH_HOSTS is 89.16.178.49.


#
# Basic health-tests
#
MARSH_HOSTS must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/marsh ssh failure'.

#
#  Hosted sites
#
https://www.activesteward.com/ must run https with status 200 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/marsh site failure'.



# 
# mexpress
# --------
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/mexpress
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/10866
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/mexpress
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
MEXPRESS_HOSTS is 212.110.186.23.


MEXPRESS_HOSTS must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/mexpress ssh failure'.


# Database
http://mexpress.vm.bytemark.co.uk/_db/ must run http with content 'OK' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/mexpress HTTP/DB failure'.

# hosted sites
http://www.memory-express.co.uk/  must run http with content 'extra memory' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/mexpress HTTP failure'.
https://www.memory-express.co.uk/ must run https with content 'extra memory' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/mexpress HTTPS failure'.



# 
# migrationobs
# ------------
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/migrationobs
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/13691
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/migrationobs
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
MIGRATIONOBS_HOSTS is 212.110.189.53.


# host tests
MIGRATIONOBS_HOSTS must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/migrationobs ssh failure'.

# symbiosis
http://migrobs.vm.bytemark.co.uk/ must run http with content 'newsletter' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/migrationobs HTTP failure'.




# 
# minstitute
# ----------
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/minstitute
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/12406
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/minstitute
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
MINSTITUTE_HOSTS is 212.110.188.20.


# host 
MINSTITUTE_HOSTS must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/minstitute ssh failure'.

# symbiosis
http://minstitute.vm.bytemark.co.uk/bytemark/ must run http with content 'Welcome page' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/minstitute symbiosis failure'.
http://minstitute.vm.bytemark.co.uk/ must run http with content 'Welcome page' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/minstitute symbiosis failure'.

# hosted site(s)
http://makeit.org.uk/home/ must run http with status 200 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/minstitute HTTP failure'.
http://www.makeit.org.uk/home/ must run http with status 200 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/minstitute HTTP failure'.

http://makeit.org.uk/home/ must run http with content 'Make It' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/minstitute HTTP failure'.
http://www.makeit.org.uk/home/ must run http with content 'Make It' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/minstitute HTTP failure'.


# 
# mrcblogs
# --------
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/mrcblogs
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/13421
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/mrcblogs
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
MRCBLOG_HOSTS is 212.110.187.86.


# Host
MRCBLOG_HOSTS must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/mrcblogs ssh failure'.

# symbiosis
http://mrcblogs.vm.bytemark.co.uk/bytemark/ must run http with content 'Welcome page' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/mrcblogs HTTP failure'.

# hosted sites
http://www.insight.mrc.ac.uk must run http with content 'Medical Research Council' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/mrcblogs HTTP failure'.
http://mrc-platform.org.uk/ must run http with content 'Medical Research Council' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/mrcblogs HTTP failure'.



# 
# newint
# ------
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/newint
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/5778
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/newint
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
NEWINT_HOSTS is 89.16.178.161.


# hosts
NEWINT_HOSTS must run ssh on 2222 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/newint ssh failure'.

# hosted sites
http://lagavulin.dh.bytemark.co.uk/ must run http with status 401 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/newint HTTP failure'.


# 
# nhsbrent
# --------
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/nhsbrent
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/10446
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/nhsbrent
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
NHS_HOSTS is 212.110.185.143.

NHS_HOSTS must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/nhsbrent ssh failure'.

# symbiosis tests
http://nhsbrent.vm.bytemark.co.uk/bytemark/ must run http with content 'Welcome page' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/nhsbrent HTTP failure'.

# hosted sites
http://sexualhealthbrent.org.uk/ must run http with content 'NHS Brent Sexual' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/nhsbrent HTTP failure'.
http://journalista.co.uk/        must run http with content 'for healthcare, social care' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/nhsbrent HTTP failure'.


# 
# noisefestival
# -------------
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/noisefestival
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/14416
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/noisefestival
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
NOISE_HOSTS is 89.16.177.89.


NOISE_HOSTS must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/noisefestival ssh failure'.


# symbiosis tests
http://noisefestival.dh.bytemark.co.uk/bytemark/ must run http with content 'Welcome page' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/noisefestival HTTP failure'.

# website tests
http://noisefestival.com/ must run http with content 'Noise Festival' otherwise '*Managed clients*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/noisefestival Site failure'.



# 
# normanrecords
# -------------
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/normanrecords
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/normanrecords
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
NORMAN_HOSTS is 46.43.39.148.


NORMAN_HOSTS must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/normanrecords ssh failure'.

#
#  Main website
#
http://www.normanrecords.com/ must run http with content 'alternative music' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/normanrecords HTTP Main Site'.
http://www.normanrecords.com/ must run http with status 200 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/normanrecords HTTP Main Site'.

#
#  CoLo box
#
http://search.normanrecords.com/user_help.html must run http with content 'Search Tips' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/normanrecords CoLo google appliance failure.'.


# 
# nsa
# ---
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/nsa
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/14576
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/nsa
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
NSA_HOSTS is 212.110.190.89.


#
#   Basic checks
#
NSA_HOSTS must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/nsa ssh failure'.

#
#  Hosted sites: HTTP
#
http://www.nsasocialcare.co.uk/ must run http with status 200 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/nsa HTTP failure'.
http://www.nsasocialcare.co.uk/ must run http with content 'Social Care' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/nsa HTTP failur'.

#
#  Hosted sites: HTTPS
#
https://www.nsasocialcare.co.uk/ must run https with status 200 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/nsa HTTPS failure'.
https://www.nsasocialcare.co.uk/ must run https with content 'Social Care' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/nsa HTTPS failur'.


# 
# nuffield
# --------
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/nuffield
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/12096
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/nuffield
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
NUFFIELD_HOSTS is 212.110.187.178.

NUFFIELD_HOSTS must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/nuffield ssh failure'.

# http sites
http://nuffield.vm.bytemark.co.uk/ must run http with status 200 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/nuffield HTTP failure'.
http://www.nuffieldtrust.org.uk/ must run http with content 'Nuffield Trust' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/nuffield HTTP site failure.'.


#
#  Bypass varnish and probe the Apache instance directly
#
http://www.nuffieldtrust.org.uk:8090/ must run http with content 'Nuffield Trust' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/nuffield HTTP site failure.'.
http://www.nuffieldtrust.org.uk:8090/ must run http with status 200 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/nuffield HTTP site failure.'.


# 
# nzime
# -----
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/nzime
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/8366
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/nzime
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
NZIME_HOSTS is 89.16.179.17.


# host
NZIME_HOSTS must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/nzime ssh failure'.

# symbiosis
http://sh4r3d5v.dh.bytemark.co.uk/bytemark/ must run http with content 'Welcome page' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/nzime HTTP failure'.

# hosted sites
http://store.planet-knox.com/ must run http with content 'Planet Knox Store' otherwise  '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/nzime HTTP/DB failure'.
http://barenco.co.uk/         must run http with content 'Barenco'           otherwise  '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/nzime HTTP/DB failure'.
http://coldkillers.co.uk/     must run http with content 'Cold Killers'      otherwise  '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/nzime HTTP/DB failure'.
http://planet-knox.com/       must run http with content 'Hand Armour'       otherwise  '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/nzime HTTP/DB failure'.
http://www.snowdenhealthcare.co.uk/      must run http with content 'Natural and effective'       otherwise  '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/nzime HTTP failure'.
https://www.snowdenhealthcare.co.uk/      must run https with content 'Natural and effective'       otherwise  '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/nzime HTTPS failure'.
http://store.planet-knox.com/      must run http with content 'Planet Knox Store'       otherwise  '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/nzime HTTP failure'.
https://store.planet-knox.com/      must run https with content 'Planet Knox Store'       otherwise  '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/nzime HTTPS failure'.


# 
# oft2011
# -------
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/oft2011
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/12936
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/oft
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
#
#  OFC2011 #362596
#
OFC_HOSTS is 46.43.35.223.


OFC_HOSTS must run ssh otherwise  '*OFT2001 managed machine SSH failure'.

# phpmyadmin should be password protected
http://oft2011.dh.bytemark.co.uk/phpmyadmin/ must run http with status 401 otherwise 'OFT managed machine - PHPMyAdmin is world readable - bug'.




# 
# penwizard
# ---------
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/penwizard
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/14926
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/penwizard
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
PENWIZRD_HOSTS is 89.16.178.102.


#
#  Basic checks.
#
PENWIZRD_HOSTS must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/penwizard ssh failure'.

#
#  Hosted sites - not yet live - commented out
#
#http://www.penwizard.co.uk/ must run http with status 200 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/penwizard Penwizard - not yet live, new managed client'.
#http://www.penwizard.co.uk/ must run http with content 'Personalised Childrens Books' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/penwizard Penwizard - not yet live, new managed client'.

#
#  Hosted sites - not yet live 
#
#http://www.calendarwizard.co.uk/  must run http with status 200 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/penwizard Penwizard - not yet live, new managed client'.


# 
# phg
# ---
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/phg
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/9021
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/phg
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
PHG_HOSTS is 212.110.185.113.



PHG_HOSTS must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/phg ssh failure'.

# symbiosis
http://phg.vm.bytemark.co.uk/bytemark/ must run http with content 'Welcome page' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/phg HTTP failure'.

# hosted sites
http://chichesterarts.org.uk/ must run http with content 'Pallant House Gallery' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/phg HTTP failure'.
http://pallant.org.uk/ must run http with content 'Pallant House Gallery' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/phg HTTP failure'.
http://surrealfriends.com/ must run http with content 'Pallant House' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/phg HTTP failure'.


# 
# pitchcare
# ---------
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/pitchcare
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/10281
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/pitchcare
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
PITCHCARE_HOSTS is 212.110.179.102 and 212.110.179.101.

PITCHCARE_HOSTS must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/pitchcare ssh failure'.

# Website tests
http://pitchcare-alonso.dh.bytemark.co.uk/ must run http with content 'Turfcare' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/pitchcare HTTP failure [alonso]'.
http://pitchcare-prospero.dh.bytemark.co.uk/ must run http with content 'Turfcare' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/pitchcare HTTP failure [prospero]'.
http://media.pitchcare.com/ must run http with content 'FREE' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/pitchcare HTTP failure media.pitchcare.com'.
pitchcare-prospero.dh.bytemark.co.uk must run rsync otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/pitchcare rsync failure on pitchcare-prospero.'.

http://www.4scapes.com/ must run http with content 'Call us on 03300 883986' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/pitchcare HTTP failure'.



# 
# proctor
# -------
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/proctor
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/9136
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/proctor
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
PROCTOR_HOSTS is 212.110.176.167 and 212.110.176.170.


# Host
PROCTOR_HOSTS must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/proctor ssh failure'.

# vhost
https://proctor1.dh.bytemark.co.uk/bytemark/ must run http with content 'html' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/proctor HTTP failure'.

# hosted sites
https://mitel.lease-desk.com/              must run https with content 'Login with' otherwise  '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/proctor Proctor site failure'.
https://demo.lease-desk.com/              must run https with content 'Proctor Consulting' otherwise  '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/proctor Proctor site failure'.

# no point monitoring ccapps.cc as it's hosted with Rackspace
#http://www.ccapps.cc/ must run http with content 'Client Services' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/proctor site failure'.


# 
# ptfs
# ----
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/ptfs
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/12266
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/ptfs
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
PTFS_HOSTS is 46.43.56.200 and 46.43.56.201.

PTFS_HOSTS must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/ptfs ssh failure'.

# hosted sites
http://lib.stirling.gov.uk/    must run http with content 'Evergreen Home' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/ptfs site failure'.
http://lib.stirling.gov.uk/    must run http with status 200 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/ptfs site failure'.
https://vibe.stirling.gov.uk/  must run https with status 403 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/ptfs site failure'.


# 
# pwgroup
# -------
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/pwgroup
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/14681
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/pwgroup/wiki
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
PWGROUP_HOSTS is 46.43.39.164 and 46.43.39.165.


# host tests
PWGROUP_HOSTS must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/pwgroup/wiki ssh failure'.


# 
# qpos
# ----
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/qpos
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/6097
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/qpos/wiki
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
QPOS_HOSTS is 89.16.176.182.


QPOS_HOSTS must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/qpos/wiki ssh failure'.

# hosted sites
http://svn.arluison.com/ must run http with status 401 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/qpos/wiki SVN repo is world readable!'.


# 
# reasondigital
# -------------
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/reasondigital
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/5947
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/virtualconstruction/wiki
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
REASON_DIGITAL_HOSTS is 89.16.179.73 and 89.16.177.49 and 89.16.177.106.


REASON_DIGITAL_HOSTS must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/virtualconstruction/wiki ssh failure'.

# symbiosis
http://reasondigital.dh.bytemark.co.uk/bytemark/ must run http with content 'Welcome page' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/virtualconstruction/wiki HTTP failure'.
http://vmp.dh.bytemark.co.uk/bytemark/ must run http with content 'Welcome page' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/virtualconstruction/wiki HTTP failure'.
http://dev-reasondigital.dh.bytemark.co.uk/bytemark/ must run http with content 'Welcome page' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/virtualconstruction/wiki HTTP failure'.

# hosted sites
http://www.webseeds.org/ must run http with content 'Free websites' otherwise  '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/virtualconstruction/wiki HTTP failure'.
http://reasondigital.com/ must run http with content 'for charities' otherwise  '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/virtualconstruction/wiki HTTP failure'.
http://helpinhandapp.org.uk/  must run http with content 'helplines' otherwise  '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/virtualconstruction/wiki HTTP failure'.



# 
# retaileyes
# ----------
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/retaileyes
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/4668
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/retaileyes
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
RETAILEYES_HOSTS is 89.16.185.219 and 89.16.185.220 and 89.16.185.221 and 89.16.185.222 and 89.16.185.212 and 89.16.185.213 and 89.16.185.214 and 89.16.185.215 and 89.16.185.216 and 89.16.174.222 and 89.16.185.205.


RETAILEYES_HOSTS must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/retaileyes ssh failure'.

# website tests
http://uk.marketforce.com/uk/home/testimonials_list.php must run http with content 'Mystery Shopping Company' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects Retaileyes main site'.

# host test
retaileyes-files1.dh.bytemark.co.uk must run ftp on 21 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/retaileyes FTP upload/download broken.'.



# 
# ri
# --
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/ri
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/ri/wiki/Wiki
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
RIGB_HOSTS is 89.16.176.59.


# host tests
RIGB_HOSTS must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/ri/wiki/Wiki ssh failure'.

# live glassfish site
http://rigb.org/registrationControl?action=home  must run http with content 'The Royal Institution of Great Britain' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/ri/wiki/Wiki HTTP failure.'.


# 
# rmg
# ---
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/rmg
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/14116
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/rmg/wiki
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
RMG_HOSTS is 89.16.176.101 and 46.43.41.180.


RMG_HOSTS must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/rmg/wiki ssh failure'.


# 
# rscpp
# -----
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/rscpp
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/12166
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/rscpp/wiki/Wiki
#
# Particular contacts for this host are jlawrie and tdobson.
# 
RSCPP_HOSTS is 89.16.178.239.


# host tests
RSCPP_HOSTS must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/rscpp/wiki/Wiki ssh failure'.
RSCPP_HOSTS must ping otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/rscpp/wiki/Wiki ping failure'.

# HTTP to be added when migrated


# 
# rubix
# -----
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/rubix
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/15181
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/rubix/wiki
#
# Particular contacts for this host are jlawrie and tdobson.
# 
TAXCAFE_HOSTS is 212.110.190.243.


TAXCAFE_HOSTS must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/rubix/wiki ssh failure'.

# Database
http://rubix.vm.bytemark.co.uk/_db/ must run http with content 'OK' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/rubix/wiki HTTP/DB failure'.
# disabled for now because not with us yet and SSL expiring
#https://simpleshop.com/ must run https with content 'Coming soon!' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/rubix/wiki HTTPS failure'.


# 
# scottjordan
# -----------
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/scottjordan
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/12686
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/scottjordan/wiki/Wiki
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
SCOTTJORDAN_HOST is 89.16.178.231.


# Host machines
SCOTTJORDAN_HOST must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/scottjordan/wiki/Wiki ssh failure'.

# hosted sites
# uncomment when live
#http://www.scottjordan.co.uk/ must run http with content 'Entertainment Agency' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/scottjordan/wiki/Wiki HTTP failure'.


# 
# sharedinsight
# -------------
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/sharedinsight
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/4668
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/retaileyes
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
SHAREDINSIGHT_HOSTS is 46.43.37.140 and 46.43.37.141 and 46.43.37.142 and 46.43.37.143 and 46.43.37.144.


#
# All hosts must ping.
# 
SHAREDINSIGHT_HOSTS must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/retaileyes ssh failure'.

#
# There is a client who uploads files via FTP
#
si-files1.dh.bytemark.co.uk must run ftp on 21 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/retaileyes FTP upload/download broken.'.


# 
# sheba
# -----
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/sheba
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/6791
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/sheba
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
SHEBA_HOSTS is 89.16.161.75.


SHEBA_HOSTS must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/sheba ssh failure'.

# hosted sites
http://www.ocht.net/ must run http with content 'BetterValueHealthcare Solutions' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/sheba HTTP failure'.
http://www.ocht-systems.net/ must run http with content 'Systems Programme' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/sheba HTTP failure'.
http://www.sustainabilityforhealth.org must run http with content 'To get the most out of' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/sheba front page check'.
http://www.sustainabilityforhealth.org//monitor?secret=3a263dd3b1bd6043983c6c5cc0d40c981cac549f15107b034a2042b20676421283025820bba69dfec0883990b37d6d0bf823e68a57a04b3a33d3843cb15ea105 must run http with content 'NHS Sustainable Development Unit' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/sheba database check failed'.




# 
# shilling
# --------
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/shilling
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/5561
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/shilling/wiki
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
SHILLING_HOSTS is 213.138.119.5 and 213.138.119.6.


# host tests
SHILLING_HOSTS must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/shilling/wiki ssh failure'.

# site checks to be added


# 
# slivers-of-time
# ---------------
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/slivers-of-time
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/9866
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/slivers
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
SLIVERS_HOSTS is 89.16.189.188 and 89.16.189.189.


#
# Basic tests
#
SLIVERS_HOSTS must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/slivers ping failure'.

#
#  Hosted sites
#
https://backoffice.sotsys.com/ must run http with status 200 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/slivers HTTP Failure'.
http://backoffice.test-sotsys.com/ must run http with status 200 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/slivers HTTP Failure'.



# 
# smartebusiness
# --------------
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/smartebusiness
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/9031
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/smartebusiness
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
SMART_HOSTS is 89.16.176.180 and 89.16.190.21 and 89.16.190.20 and 89.16.177.169.


# hosts
SMART_HOSTS must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/smartebusiness ping failure'.

# two hosts - two different ssh ports
webserver3.dh.bytemark.co.uk must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/smartebusiness ssh failure'.

# different cluster
smart-hulk.dh.bytemark.co.uk must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/smartebusiness ssh failure'.
smart-loki.dh.bytemark.co.uk must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/smartebusiness ssh failure'.

#
# hosted sites
#
http://www.brooktaverner.co.uk/jackets.html must run http with content 'Jackets' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/smartebusiness HTTP failure brooktaverner'.

http://www.hereforaday.com/ must run http with status 200 otherwise  '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/smartebusiness HTTP failure '.
https://www.hereforaday.com/cookies/ must run https with status 200 otherwise  '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/smartebusiness HTTP failure '.

http://www.coxandcox.co.uk/domestic-diva/glassware must run http with content 'Glassware' otherwise '*Managed client*: "[Goto Redmine":https://managed.bytemark.co.uk/projects/smartebusiness HTTP failure coxandcox (smartebusiness quake/nova)'.



# 
# storesdirect
# ------------
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/storesdirect
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/9161
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/storesdirect
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
STORES_DIRECT_HOSTS is 212.110.184.27 and 212.110.187.4.


# ssh tests
STORES_DIRECT_HOSTS must run ssh on 30267 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/storesdirect ssh failure'.


http://storesdirect.co.uk/  must run http with content 'Stores Direct' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/storesdirect HTTP failure'.


# 
# suretec
# -------
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/suretec
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/6747
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/suretec
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
SURETEC_HOSTS are 46.43.53.230 and 46.43.53.231.


# hosts
SURETEC_HOSTS must run ssh on 2222 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/suretec  Suretech moodle hosts SSH failure'.

# services
moodle-a.dh.bytemark.co.uk must run ftp on 21 otherwise  '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/suretec FTP failure on moodle host.'.
moodle-b.dh.bytemark.co.uk must run ftp on 21 otherwise  '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/suretec FTP failure on moodle host.'.

# hosted sites
http://www.2020vle.com/ must run http with status 200 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/suretec Moodle site HTTP failure.'.


# 
# surfaceview
# -----------
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/surfaceview
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/13736
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/surfaceview/wiki
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
SURFACEVIEW_HOSTS is 46.43.35.153.


# host tests
SURFACEVIEW_HOSTS must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/surfaceview/wiki ssh failure'.

# commented out as they're fiddling, not live yet
http://surfaceview.dh.bytemark.co.uk/  must run http with status 200 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/surfaceview/wiki HTTP failure.'.
http://www.surfaceview.co.uk/ must run http with content 'Surface View' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/surfaceview/wiki HTTP failure.'.


# 
# swml
# ----
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/swml
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/3561
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/swml/wiki
#
# Particular contacts for this host are skemp and jhannah and jlawrie.
# 

SWML_HOSTS is 212.110.191.9.


SWML_HOSTS must ping otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/swml/wiki ping failure'.
SWML must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/swml/wiki ssh failure'.



# 
# taxcafe
# -------
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/taxcafe
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/6421
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/taxcafe/wiki
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
TAXCAFE_HOSTS is 212.110.189.130.


TAXCAFE_HOSTS must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/taxcafe/wiki ssh failure'.

TAXCAFE_HOSTS must ping otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/taxcafe/wiki ping failure'.

# MySQL
http://taxcafe.co.uk/_db/ must run http with content 'OK' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/taxcafe/wiki HTTP/DB failure'.

# hosted sites
http://taxcafe.co.uk/ must run http with content '<img src="/images/copyrightfooter.gif" />' otherwise  '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/taxcafe/wiki HTTP/DB failure'.

https://secure.taxcafe.co.uk/ must run http with content 'secure.taxcafe.co.uk Up' otherwise  '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/taxcafe/wiki HTTP/DB failure'.


# 
# tdm
# ---
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/tdm
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/5295
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/tdm
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
TDM_HOSTS is 89.16.176.103 and 89.16.179.172.


# hosts
TDM_HOSTS must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/tdm ssh failure'.

# symbiosis
http://bamba.dh.bytemark.co.uk/bytemark/   must run http with content 'Welcome page' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/tdm HTTP failure'.
http://infolio.dh.bytemark.co.uk/bytemark/ must run http with content 'Welcome page' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/tdm HTTP/DB failure'.

# hosted sites
http://infolio.tdm.info/where.php            must run http with content 'Where are you from' otherwise  '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/tdm HTTP/DB failure'.
http://www.baptist-heartofengland.org/       must run http with content 'bible' otherwise  '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/tdm HTTP/DB failure'.


# 
# thecass
# -------
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/thecass
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/8721
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/cass/wiki/Wiki
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
CASS_HOSTS is 212.110.190.34.


# host tests

CASS_HOSTS must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/cass/wiki/Wiki ssh failure'.



http://www.thecass.com/home must run http with status 200  otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/cass/wiki/Wiki HTTP failure'.
http://www.thecass.com/home must run http with content 'Welcome to the Sir John' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/cass/wiki/Wiki HTTP failure'.
http://www.thecass.com/bytemark.php must run http with content 'UP' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/cass/wiki/Wiki PHP failure'.


# 
# thermeon
# --------
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/thermeon
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/10666
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/thermeon
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
THERMEON_HOSTS is 46.43.48.133 and 46.43.48.134 and 46.43.48.135 and 46.43.48.136 and 46.43.48.137 and 46.43.48.138 and 46.43.48.145 and 213.138.103.76.


THERMEON_HOSTS must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/thermeon ssh failure'.

# vpn tests
THERMEON_VPNS is 46.43.48.212 and 46.43.48.213 and 46.43.48.214.
THERMEON_VPNS must ping otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/thermon (thermon) VPN Tunnel Ping Failure'.

# Graphite install for monitoring
http://graphite.default.thermeon.uk0.bigv.io/ must run http with content 'Graphite Browser' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/thermeon Graphite Server Down'.
http://graphite.default.thermeon.uk0.bigv.io/ must run http with status 200 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/thermeon Graphite Server Down'.


# 
# tixdaq
# ------
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/tixdaq
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/5715
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/tixdaq/wiki
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
TIXDAQ_HOSTS is 46.43.50.10 and 46.43.50.8 and 212.110.171.192 and 89.16.178.223 and 46.43.50.6 and 89.16.179.183.


# Host machines
TIXDAQ_HOSTS must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/tixdaq/wiki ssh failure'.

#
#  Hosted site
#
http://www.caughtoffside.com/ must run http with content 'Breaking Football transfer' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/tixdaq/wiki CoS.com HTTP failure'.

#
# Individual tests for their flakier hosts.
#
http://tixdaq-cos1.dh.bytemark.co.uk/live.php must run http with content 'OK' otherwise  '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/tixdaq/wiki tixdaq HTTP failure.'.
http://tixdaq-cos2.dh.bytemark.co.uk/live.php must run http with content 'OK' otherwise  '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/tixdaq/wiki tixdaq HTTP failure.'.


#
#  "Temporary" monitoring for non-managed host, tixdaq-web-two.dh + tixdaq-db.dh
#
#  If these alerts fail chances are MySQL is busy upon tixdaq-db.dh, or tixdaq-web-two has entered an OOM state.
#


http://tickets.metro.co.uk/ must run http with content 'Metro Tickets' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/tixdaq/wiki non-managed tixdaq-web-two.dh site down?  Check mysql'.
http://tickets.metro.co.uk/ must run http with status 200 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/tixdaq/wiki non-managed tixdaq-web-two.dh site down?  Check mysql'.


http://www.tixdaq.com/ must run http with content 'buy concert' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/tixdaq/wiki non-managed tixdaq-web-two.dh site down?  Check mysql'.
http://www.tixdaq.com/ must run http with status 200 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/tixdaq/wiki non-managed tixdaq-web-two.dh site down?  Check mysql'.


http://www.guardiantickets.co.uk/ must run http with content 'Compare and buy tickets' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/tixdaq/wiki non-managed tixdaq-web-two.dh site down?  Check mysql'.
http://www.guardiantickets.co.uk/ must run http with status 200 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/tixdaq/wiki non-managed tixdaq-web-two.dh site down?  Check mysql'.


# 
# tower
# -----
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/tower
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/11206
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/tower
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
TOWER_HOSTS is 89.16.179.216.

TOWER_HOSTS must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/tower ssh failure'.

# symbiosis
http://angel.dh.bytemark.co.uk/_db/ must run http with content 'OK' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/tower HTTP/DB fail'.
http://angel.dh.bytemark.co.uk/phpmyadmin/ must run http with content 'Cookies must be enabled' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/tower HTTP fail'.

# hosted sites
http://theworkhouse.org/           must run http with content 'the Workhouse'                 otherwise  '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/tower HTTP site failure'.
http://www.thames-recruitment.com/ must run http with content 'Welcome to Thames Recruitment' otherwise  '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/tower HTTP site failure'.
http://employer-services.co.uk/    must run http with content 'Welcome to THC Employer'       otherwise  '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/tower HTTP site failure'.
http://www.tower.ac.uk/            must run http with content 'Tower Hamlets College'         otherwise  '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/tower HTTP site failure'.




# 
# tradewinds
# ----------
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/tradewinds
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/14696
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/tradewinds
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
TRADEWIND_HOSTS is 46.43.41.150 and 46.43.41.151.


#
#  Basic tests
#
TRADEWIND_HOSTS must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/tradewinds ssh failure'.

#
# HTTP tests
#
http://trade1.dh.bytemark.co.uk/ must run http with status 200 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/tradewinds node failure'.
http://trade2.dh.bytemark.co.uk/ must run http with status 200 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/tradewinds node failure'.

#
# Hosted sites
#
http://46.43.41.152/ must run http with status 200 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/tradewinds Shared IP failure'.
http://www.christmastreesandlights.co.uk/ must run http with status 200 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/tradewinds site failure'.
http://www.christmastreesandlights.co.uk/ must run http with content 'Christmas Trees' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/tradewinds site failure'.
http://trade1.christmastreesandlights.co.uk/cookies-privacy must run http with content 'This page gives you details about the Tradewinds Europe Ltd cookie policy,' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/tradewinds MySQL failure'.
http://trade2.christmastreesandlights.co.uk/cookies-privacy must run http with content 'This page gives you details about the Tradewinds Europe Ltd cookie policy,' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/tradewinds MySQL failure'.


# 
# urban
# -----
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/urban
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/11536
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/urban
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
URBAN_HOSTS is 212.110.186.249.



URBAN_HOSTS must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/urban ssh failure'.

# symbiosis
http://urban.vm.bytemark.co.uk/bytemark/  must run http with content 'Welcome page' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/urban HTTP failure'.
http://urban.vm.bytemark.co.uk/_db/       must run http with content 'OK'           otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/urban HTTP/DB failure'.

# hosted sites
http://shogunphotography.com/  must run http with content 'Shogun Photography' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/urban HTTP failure'.
http://www.theurbanshogun.com/ must run http with content 'The Urban Shogun'   otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/urban HTTP failure'.


# 
# vendigital
# ----------
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/vendigital
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/14061
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/vendigital
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
VENDIGITAL_HOSTS is 46.43.40.69 and 46.43.40.68.


VENDIGITAL_HOSTS must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/vendigital ssh failure'.

https://portal.vendigital.com/auth/login must run https with content 'Please login' otherwise  '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/vendigital site failure'.
https://portaltest.vendigital.com/auth/login must run https with content 'Please login' otherwise  '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/vendigital site failure'.
https://rfx.vendigital.com/rfx/ must run https with content 'Redirect' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/vendigital site failure'.
https://rfxtest.vendigital.com/rfx/ must run https with content 'Redirect' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/vendigital site failure'.
https://usrfxtest.vendigital.com/rfx/ must run https with content 'Redirect' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/vendigital site failure'.
https://sms.vendigital.com must run https with status 200 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/vendigital site failure'.
#https://smstest.vendigital.com must run https with status 200 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/vendigital site failure'.
https://optimiser.vendigital.com must run https with status 200 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/vendigital site failure'.
https://optimisertest.vendigital.com must run https with status 200 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/vendigital site failure'.
https://vdmc.vendigital.com must run https with status 200 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/vendigital site failure'.
https://vdmctest.vendigital.com must run https with status 200 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/vendigital site failure'.

http://www.vendigital.com must run http with content 'Vendigital Limited' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/vendigital site failure'.

https://tech.vendigital.com/login must run https with content 'Sign in' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/vendigital site failure'.

# Provided by client but non-functional (DNS)
#http://wwwtest.vendigital.com must run http with content 'Vendigital Limited' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/vendigital site failure'.


# 
# vibedigital
# -----------
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/vibedigital
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/12121
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/vibedigital
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
VIBE_HOSTS is 46.43.34.68.


# Windows host - responds to ICMP but not SSH
VIBE_HOSTS must ping otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/vibedigital ping failure'.

# hosted sites
http://vibe-wha.dh.bytemark.co.uk/ must run http with content 'IIS7' otherwise  '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/vibedigital IIS failure'.


# 
# visokio
# -------
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/visokio
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/12016
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/visokio
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
VISIO_HOSTS is 89.16.169.205.


# host check
VISIO_HOSTS must run ssh on 2222 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/visokio ssh failure'.

# hosted sites
http://www.visokio.com/    must run http with content 'A revolution'   otherwise  '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/visokio HTTP site failure'.
http://forums.visokio.com/ must run http with content 'Visokio Forums' otherwise  '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/visokio HTTP site failure'.

#
#  Not yet ready.
#
# http://omniscope.me/  must run http with content 'Enter your host'   otherwise  '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/visokio HTTP site failure'.


# 
# vms-nospam
# ----------
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/vms-nospam
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/9811
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/vms-nospam
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
VMS_NOSPAM_HOSTS is 212.110.184.230.

VMS_NOSPAM_HOSTS must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/vms-nospam ssh failure'.
VMS_NOSPAM_HOSTS must run smtp otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/vms-nospam ssh failure'.


# 
# webwise
# -------
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/webwise
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/14106
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/webwise
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
WEBWISE_HOSTS is 212.110.189.181.

WEBWISE_HOSTS must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/webwise ssh failure'.

# symbiosis checks
http://webwise.vm.bytemark.co.uk/bytemark/ must run http with content 'Welcome page' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/webwise HTTP failure'.

# hosted website(s) checks.



# 
# wellinformed
# ------------
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/wellinformed
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/6700
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/wellinformed/wiki/Wiki
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
WELLINFORMED_HOSTS is 46.43.37.199 and 46.43.37.200.


# host tests
WELLINFORMED_HOSTS must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/wellinformed/wiki/Wiki ssh failure'.

# http checks
http://theorytestpro.co.uk must run http with content 'Take a FREE test' within 20 every 60   otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/wellinformed/wiki/Wiki HTTP Failure'.
http://gocitizen.co.uk must run http with content 'Life in the UK Test' within 20 every 60 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/wellinformed/wiki/Wiki HTTP Failure'.
http://wellinformed.co.uk must run http with content '06707839' within 20 every 60 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/wellinformed/wiki/Wiki HTTP Failure'.



# 
# weprovoke
# ---------
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/weprovoke
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/12896
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/weprovoke
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
WEPROVOKE_HOSTS is 89.16.161.94.



WEPROVOKE_HOSTS must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/weprovoke ssh failure'.
#WEPROVOKE_HOSTS must run http on 8080 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/weprovoke tomcat failure'.

# website check(s)
http://www.thestaffcanteen.com/ must run http with content 'Chef Jobs' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/weprovoke WeProvoke : HTTP failure [LIVE site]'.
http://www.thestaffcanteen.com/ must run http with content 'The Staff Canteen' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/weprovoke WeProvoke : HTTP failure [LIVE site]'.
http://www.thestaffcanteen.com/ must run http with content 'active jobs listed' otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/weprovoke WeProvoke : HTTP failure [LIVE site]'.


# 
# wrenkitchens
# ------------
# 
# All these checks are located upon the host cfmaster in the directory /home/managed/wrenkitchens
# These checks are for https://admin.bytemark.co.uk/accounts3/accounts/15171
# Documentation for this client should be found at : https://managed.bytemark.co.uk/projects/wrenkitchens/wiki/Wiki
#
# Particular contacts for this host are skemp and jlawrie and jhannah.
# 
WREN_HOSTS is 213.138.119.70 and 213.138.119.71.

WREN_HOSTS must run ssh on 22 otherwise '*Managed client*: "[Goto Redmine]":https://managed.bytemark.co.uk/projects/wrenkitchens/wiki/Wiki ssh failure'.