root/trac/MyConfiguration

Revision 105:b55987db0833, 2.4 KB (checked in by Chris Freeze <cfreeze@…>, 3 years ago)

saving trac pages in repository

Line 
1I use StormXmlSiren to monitor both my local area in Texas and where my family lives in Tennessee.  I have developed a strategy that takes advantage of the filtering capability of StormXmlSiren to avoid annoying family members with useless notifications.
2
3The general concept is that for a given email address (or other end alert device) that two devices configuration instances are created.  The first device configuration for the email address will alert only on warnings and watches for the counties that surround where my family lives.
4
5In this case it would be the counties that surround Warren County, Tennessee (Cannon, Coffee, Grundy, Sequatchie, Van Buren, White, and Dekalb).  A second device would be created that would alert on all available weather types (statement, advisory, forecast, watch, and warnings) for the county and city of where they live (McMinnville,TN and Warren, TN).
6
7The result is a configuration that looks similar to following for one of my family members:
8
9{{{
10[5]
11device = email
12to = ckfreeze@example.com
13alert = watch,warning
14areas = Cannon,TN:Coffee,TN:Grundy,TN:Sequatchie,TN:Van Buren,TN:White,TN:Dekalb,TN
15
16[6]
17device = email
18to = ckfreeze@example.com
19alert = watch,warning,forecast,statement,advisory
20areas = McMinnville,TN:Warren,TN
21
22}}}
23[[Image(tennessee.png, nolink,800px)]]
24
25For me or my wife, the configuration looks similar to following:
26
27{{{
28[8]
29device = email
30to = rcfreeze@example.com
31alert = forecast,statement,advisory
32areas = Rockwall,TX
33
34[9]
35device = email
36to = rcfreeze@example.com
37alert = watch,warning
38areas = Rockwall,TX:Collin,TX:Dallas,TX:Kaufman,TX:Hunt,TX
39}}}
40[[Image(texas.png, nolink,800px)]]
41
42We also do something similar with our MythTV PVRs.  In the main familyroom, we like all the alerts from both the Tennessee and Texas areas.  In the master bedroom though, we only really care about warnings and watches for our local area.  In this instance, the configuration looks like the following:
43
44{{{
45[3]
46device = mythtv
47to = master-bedroom.example.com:6948
48wait_time = 20
49alert = watch,warning
50areas = Rockwall,TX:Collin,TX:Dallas,TX:Kaufman,TX:Hunt,TX
51[15]
52device = mythtv
53to = familyroom.example.com:6948
54wait_time = 5
55alert = forecast,statement,advisory,watch,warning
56areas = Rockwall,TX:Collin,TX:Dallas,TX:Kaufman,TX:Hunt,TX:McMinnville,TN:Warren,TN:Cannon,TN:Coffee,
57TN:Grundy,TN:Sequatchie,TN:Van Buren,TN:White,TN:Dekalb,TN
58}}}
Note: See TracBrowser for help on using the browser.