Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add notifications support for mattermost #165

Merged
merged 35 commits into from
Mar 2, 2017
Merged

Add notifications support for mattermost #165

merged 35 commits into from
Mar 2, 2017

Commits on Dec 30, 2016

  1. Initial implementation of the mattermost notifier

    John Hixson committed Dec 30, 2016
    Configuration menu
    Copy the full SHA
    c0c9d26 View commit details
    Browse the repository at this point in the history
  2. Remove unused code

    John Hixson committed Dec 30, 2016
    Configuration menu
    Copy the full SHA
    901e6a3 View commit details
    Browse the repository at this point in the history
  3. Define host

    John Hixson committed Dec 30, 2016
    Configuration menu
    Copy the full SHA
    5797a2d View commit details
    Browse the repository at this point in the history
  4. sprintf(), not printf()

    John Hixson committed Dec 30, 2016
    Configuration menu
    Copy the full SHA
    8402711 View commit details
    Browse the repository at this point in the history
  5. Forgot to add the MatterMostUserInfo struct

    John Hixson committed Dec 30, 2016
    Configuration menu
    Copy the full SHA
    813d8dd View commit details
    Browse the repository at this point in the history
  6. userID, not userId

    John Hixson committed Dec 30, 2016
    Configuration menu
    Copy the full SHA
    4610042 View commit details
    Browse the repository at this point in the history
  7. Define initialized property

    John Hixson committed Dec 30, 2016
    Configuration menu
    Copy the full SHA
    96b0779 View commit details
    Browse the repository at this point in the history
  8. Remove unusded variables

    John Hixson committed Dec 30, 2016
    Configuration menu
    Copy the full SHA
    680f373 View commit details
    Browse the repository at this point in the history
  9. Specify variable type

    John Hixson committed Dec 30, 2016
    Configuration menu
    Copy the full SHA
    b597b09 View commit details
    Browse the repository at this point in the history
  10. Fill in the unfilled

    John Hixson committed Dec 30, 2016
    Configuration menu
    Copy the full SHA
    6388d23 View commit details
    Browse the repository at this point in the history
  11. Fat fingered struct

    John Hixson committed Dec 30, 2016
    Configuration menu
    Copy the full SHA
    7ac768c View commit details
    Browse the repository at this point in the history
  12. Rename TeamName to Taam - Makes more sense

    John Hixson committed Dec 30, 2016
    Configuration menu
    Copy the full SHA
    4766712 View commit details
    Browse the repository at this point in the history
  13. Update version string

    John Hixson committed Dec 30, 2016
    Configuration menu
    Copy the full SHA
    76aadb3 View commit details
    Browse the repository at this point in the history
  14. Only parse for port if specified

    John Hixson committed Dec 30, 2016
    Configuration menu
    Copy the full SHA
    6acbf85 View commit details
    Browse the repository at this point in the history
  15. Fix URL parsing

    John Hixson committed Dec 30, 2016
    Configuration menu
    Copy the full SHA
    e9bc45f View commit details
    Browse the repository at this point in the history
  16. Remove some debugging statements

    John Hixson committed Dec 30, 2016
    Configuration menu
    Copy the full SHA
    a3f6778 View commit details
    Browse the repository at this point in the history
  17. log.Fatal -> log.Error

    John Hixson committed Dec 30, 2016
    Configuration menu
    Copy the full SHA
    09c9fae View commit details
    Browse the repository at this point in the history
  18. Update the README file

    John Hixson committed Dec 30, 2016
    Configuration menu
    Copy the full SHA
    273114c View commit details
    Browse the repository at this point in the history

Commits on Feb 14, 2017

  1. Dramatically reduce unnecessary writes (PUT requests) to KV when no c…

    …hange in health check status. (#166)
    roman-vynar authored and John Hixson committed Feb 14, 2017
    Configuration menu
    Copy the full SHA
    9c8e49b View commit details
    Browse the repository at this point in the history
  2. Improve checking against blacklist by reducing the number of calls to…

    … KV. (#167)
    roman-vynar authored and John Hixson committed Feb 14, 2017
    Configuration menu
    Copy the full SHA
    505976d View commit details
    Browse the repository at this point in the history
  3. Variable overrides in the notification profile and profile selection …

    …based on regular expressions (#164)
    
    * #145 notif-selection based on regular expressions is implemented
    
    * #145 use consul from vagrant for tests
    
    * #145 blacklisting services, nodes and checks by regexps implemented
    
    * #145 test for getProfileForEntity is simplified
    
    * #145 better explanation of regexps for profile activation, disabling health checks
    
    * #145 get rid of separate structs for keeping notifier configuration
    
    * #145 notifier names are constant per notifier type
    
    * #145 variable overrides in the notification profiles are implemented
    
    * #145 add go get command for imdario/mergo to travis
    
    * #145 re-add imdario/mergo to Godeps
    
    * #145 check that notifier exists before returning
    
    * #145 copy the notifier before overriding parameters
    
    * #145 use hashes of notifiers as keys in send-builtin
    
    * #145 remove debug print
    
    * Fix ID discrepency
    Gerrrr authored and John Hixson committed Feb 14, 2017
    Configuration menu
    Copy the full SHA
    4387de8 View commit details
    Browse the repository at this point in the history
  4. do not trigger a notification if the new check is passing (#169)

    Gerrrr authored and John Hixson committed Feb 14, 2017
    Configuration menu
    Copy the full SHA
    9ff2045 View commit details
    Browse the repository at this point in the history
  5. Fixes return string for NotifierName() method on AwsSnsNotifier struct (

    #171)
    
    NotifName returns 'awsns' string and should return 'awssns'
    brianbianco authored and John Hixson committed Feb 14, 2017
    Configuration menu
    Copy the full SHA
    9e60d89 View commit details
    Browse the repository at this point in the history
  6. Document Slack detailed config (#172)

    Added documentation for enabling Slack "detailed" notification mode.
    killcity authored and John Hixson committed Feb 14, 2017
    Configuration menu
    Copy the full SHA
    1ebc2c4 View commit details
    Browse the repository at this point in the history
  7. Initial implementation of the mattermost notifier

    John Hixson committed Feb 14, 2017
    Configuration menu
    Copy the full SHA
    992f5ef View commit details
    Browse the repository at this point in the history
  8. Fix client to be a notifier property

    John Hixson committed Feb 14, 2017
    Configuration menu
    Copy the full SHA
    348dacc View commit details
    Browse the repository at this point in the history
  9. s/MatterMost/Mattermost/g

    John Hixson committed Feb 14, 2017
    Configuration menu
    Copy the full SHA
    09f77e5 View commit details
    Browse the repository at this point in the history
  10. ioutil is not needed

    John Hixson committed Feb 14, 2017
    Configuration menu
    Copy the full SHA
    71533fe View commit details
    Browse the repository at this point in the history
  11. More of s/MatterMost/Mattermost/g

    John Hixson committed Feb 14, 2017
    Configuration menu
    Copy the full SHA
    b421a4e View commit details
    Browse the repository at this point in the history
  12. Add mattermost to notifiers struct

    John Hixson committed Feb 14, 2017
    Configuration menu
    Copy the full SHA
    f45481b View commit details
    Browse the repository at this point in the history
  13. Implement Copy() method

    John Hixson committed Feb 14, 2017
    Configuration menu
    Copy the full SHA
    8dd3b3b View commit details
    Browse the repository at this point in the history
  14. Hardcode value for notifier name

    John Hixson committed Feb 14, 2017
    Configuration menu
    Copy the full SHA
    378cf12 View commit details
    Browse the repository at this point in the history
  15. Add enabled property to mattermost notifier struct

    John Hixson committed Feb 14, 2017
    Configuration menu
    Copy the full SHA
    16d8cb2 View commit details
    Browse the repository at this point in the history
  16. Remove fat fingered extra 't'

    John Hixson committed Feb 14, 2017
    Configuration menu
    Copy the full SHA
    c71bed2 View commit details
    Browse the repository at this point in the history
  17. Merge branch 'master' into master

    John Hixson authored Feb 14, 2017
    Configuration menu
    Copy the full SHA
    3351d65 View commit details
    Browse the repository at this point in the history