Mail Notifications » History » Version 8
Adam Denning, 03/29/2012 01:44 PM
1 | 1 | Ohad Levy | h1. Summarized E-Mail Reports |
---|---|---|---|
2 | |||
3 | h2. Overview |
||
4 | |||
5 | Starting in version 0-1.3 Foreman can send a hourly / daily email report containing information about your nodes. |
||
6 | 2 | Ohad Levy | |
7 | 1 | Ohad Levy | this information will include: List of hosts that had errors or that have performed any action through puppet. |
8 | additionally, it would include a list of all of your hosts which didn't run Puppet recently (defaults to 30 minutes). |
||
9 | |||
10 | h2. Configuration |
||
11 | |||
12 | 2 | Ohad Levy | First, make sure that you enable emails in Foreman - at the [[Email configuration]] page. |
13 | |||
14 | Secondly, you would need to setup a cron job: |
||
15 | 1 | Ohad Levy | |
16 | Available options: |
||
17 | * days => number of days to scan backwards (defaults to 1) |
||
18 | * hours => number of hours to scan backwards (defaults to disabled) |
||
19 | |||
20 | 7 | Ohad Levy | Example (switch to foreman dir and type): |
21 | |||
22 | 1 | Ohad Levy | <pre> |
23 | rake reports:summarize days=3 RAILS_ENV="production" # Sends out a summary email for the last 3 days. |
||
24 | </pre> |
||
25 | or |
||
26 | <pre> |
||
27 | rake reports:summarize hours=12 RAILS_ENV="production" # Sends out a summary email for the last 12 hours. |
||
28 | </pre> |
||
29 | |||
30 | h3. Recipients |
||
31 | |||
32 | If you are using LDAP authentication, Foreman will send the reports directly to all registered users, if that's not what you would like, add the following line to your *config/settings.yaml* file: |
||
33 | <pre> |
||
34 | 3 | Ohad Levy | #Foreman host, required for http links inside emails |
35 | :foreman_url: foreman.domain |
||
36 | 1 | Ohad Levy | # where do send out daily report emails, comment out if you want to send to registered Foreman users instead. |
37 | :administrator: ohadlevy@gmail.com |
||
38 | </pre> |
||
39 | 4 | Ohad Levy | |
40 | h1. Emails on Report errors |
||
41 | |||
42 | Similar to tagmail, foreman can send you notifications once a report which contains an error has been received. |
||
43 | |||
44 | 5 | Alexander Rusa | at this point of time, the report would be sent to a mailbox predefined in config/settings.yaml, however in future versions, the report would be sent only to the relevant user (or user group) which manage the host. |
45 | 4 | Ohad Levy | |
46 | 8 | Adam Denning | in order to enable please make sure the following two lines exists in your *config/settings.yaml* file: |
47 | 4 | Ohad Levy | <pre> |
48 | :administrator: <email address of recipient> |
||
49 | :failed_report_email_notification: true |
||
50 | 1 | Ohad Levy | </pre> |
51 | 8 | Adam Denning | |
52 | In newer versions of Foreman, these settings should be configured within the web application (More > Settings) rather than settings.yaml. |
||
53 | |||
54 | Multiple comma-delimited addresses may be used. |
||
55 | 6 | Raffael Schmid | |
56 | *Please note:* Foreman will not send notifications for reports which where generated by a puppet client < 2.6.5 and creating the catalog failed on the puppet master. |