Skip to content
Snippets Groups Projects
  1. Dec 13, 2017
    • Ben Kochie's avatar
      Update vendor golang.org/x/sys/unix · 7f92b267
      Ben Kochie authored
      7f92b267
    • Ben Kochie's avatar
      Update vendor golang.org/x/net/... · a4dac8ae
      Ben Kochie authored
      a4dac8ae
    • Ben Kochie's avatar
      Update vendor github.com/miekg/dns@v1.0.0 · 0c38364b
      Ben Kochie authored
      Update vendor `github.com/miekg/dns` to `v1.0.0` release.
      * Add dependent vendor `golang.org/x/crypto/ed25519`.
      * Add dependent vendor `golang.org/x/crypto/ed25519/internal/edwards25519`.
      * Add dependent vendor `golang.org/x/net/bpf`.
      * Add dependent vendor `golang.org/x/net/internal/iana`.
      * Add dependent vendor `golang.org/x/net/internal/socket`.
      * Add dependent vendor `golang.org/x/net/ipv4`.
      * Add dependent vendor `golang.org/x/net/ipv6`.
      0c38364b
  2. Dec 12, 2017
    • Luke Overend's avatar
      Pass ams to go routine when sending alerts (#3284) · 9532c2c7
      Luke Overend authored
      Currently when sending alerts via the go routine within `sendAll`, the value
      of `ams` is not passed to the routine, causing it to use the updated value of `ams`.
      
      Example config:
      
      ```
      alerting:
        alertmanagers:
          - basic_auth:
              username: 'prometheus'
              password: 'test123'
            static_configs:
            - targets:
              - localhost:9094
          - static_configs:
            - targets:
              - localhost:9095
      ```
      
      In this example alerts sent to `localhost:9094` fail with:
      
      ```
      level=error ts=2017-10-12T10:03:53.456819948Z caller=notifier.go:445
      component=notifier alertmanager=http://localhost:9094/api/v1/alerts
      count=1 msg="Error sending alert" err="bad response status 401
      Unauthorized"
      ```
      
      If you change the order to be:
      
      ```
      alerting:
        alertmanagers:
          - static_configs:
            - targets:
              - localhost:9095
          - basic_auth:
              username: 'prometheus'
              password: 'test123'
            static_configs:
            - targets:
              - localhost:9094
      ```
      
      It works as expected.
      
      This commit changes the behavour so `ams` is passed to the go routine so
      `n.sendOne` uses the appropriate `http.Client` details.
      9532c2c7
    • Goutham Veeramachaneni's avatar
      Merge pull request #3570 from Gouthamve/colon-snapshot · 2d73d2b8
      Goutham Veeramachaneni authored
      Make the date returned by snapshot script friendly
      Unverified
      2d73d2b8
  3. Dec 11, 2017
  4. Dec 10, 2017
  5. Dec 08, 2017
  6. Dec 07, 2017
  7. Dec 06, 2017
  8. Dec 05, 2017
  9. Dec 04, 2017
  10. Dec 03, 2017
  11. Dec 02, 2017
  12. Dec 01, 2017
  13. Nov 30, 2017
Loading