Move to common/log package
authorSteve Durrheimer <s.durrheimer@gmail.com>
Sat, 14 May 2016 12:02:22 +0000 (14:02 +0200)
committerSteve Durrheimer <s.durrheimer@gmail.com>
Sat, 14 May 2016 19:10:39 +0000 (21:10 +0200)
13 files changed:
http.go
icmp.go
main.go
tcp.go
vendor/github.com/prometheus/common/log/log.go [new file with mode: 0644]
vendor/github.com/prometheus/common/log/syslog_formatter.go [new file with mode: 0644]
vendor/github.com/prometheus/log/AUTHORS.md [deleted file]
vendor/github.com/prometheus/log/CONTRIBUTING.md [deleted file]
vendor/github.com/prometheus/log/LICENSE [deleted file]
vendor/github.com/prometheus/log/NOTICE [deleted file]
vendor/github.com/prometheus/log/README.md [deleted file]
vendor/github.com/prometheus/log/log.go [deleted file]
vendor/vendor.json

diff --git a/http.go b/http.go
index b1153f2562663bc8d47f12b2df1bf4a70a97b101..c246f5f9eb45dbfcb1f1241d5c6d3753987be2fa 100644 (file)
--- a/http.go
+++ b/http.go
@@ -22,7 +22,7 @@ import (
        "regexp"
        "strings"
 
-       "github.com/prometheus/log"
+       "github.com/prometheus/common/log"
 )
 
 func matchRegularExpressions(reader io.Reader, config HTTPProbe) bool {
diff --git a/icmp.go b/icmp.go
index 2e94ed409dee141e4f2c6864b7017ee446cdc97c..3253348999f9464d17658ceda20ddfc1ffc8d57b 100644 (file)
--- a/icmp.go
+++ b/icmp.go
@@ -23,7 +23,7 @@ import (
        "sync"
        "time"
 
-       "github.com/prometheus/log"
+       "github.com/prometheus/common/log"
 )
 
 var (
diff --git a/main.go b/main.go
index d9648db2016a135aae10fa593e845122525959a7..acc8666b17df33e7e75dae37c3acad29223eb4a5 100644 (file)
--- a/main.go
+++ b/main.go
@@ -24,7 +24,7 @@ import (
 
        "github.com/prometheus/client_golang/prometheus"
        "github.com/prometheus/common/config"
-       "github.com/prometheus/log"
+       "github.com/prometheus/common/log"
 )
 
 var addr = flag.String("web.listen-address", ":9115", "The address to listen on for HTTP requests.")
diff --git a/tcp.go b/tcp.go
index 49317dfeca2f0da651fdfb339c2c7b479b1580a0..bcba65dfcac835d61681cc35a54ff653577e0bbd 100644 (file)
--- a/tcp.go
+++ b/tcp.go
@@ -22,7 +22,7 @@ import (
        "regexp"
        "time"
 
-       "github.com/prometheus/log"
+       "github.com/prometheus/common/log"
 )
 
 func dialTCP(target string, module Module) (net.Conn, error) {
diff --git a/vendor/github.com/prometheus/common/log/log.go b/vendor/github.com/prometheus/common/log/log.go
new file mode 100644 (file)
index 0000000..07fbfef
--- /dev/null
@@ -0,0 +1,304 @@
+// Copyright 2015 The Prometheus Authors
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package log
+
+import (
+       "flag"
+       "fmt"
+       "net/url"
+       "os"
+       "runtime"
+       "strings"
+
+       "github.com/Sirupsen/logrus"
+)
+
+type levelFlag struct{}
+
+// String implements flag.Value.
+func (f levelFlag) String() string {
+       return origLogger.Level.String()
+}
+
+// Set implements flag.Value.
+func (f levelFlag) Set(level string) error {
+       l, err := logrus.ParseLevel(level)
+       if err != nil {
+               return err
+       }
+       origLogger.Level = l
+       return nil
+}
+
+// setSyslogFormatter is nil if the target architecture does not support syslog.
+var setSyslogFormatter func(string, string) error
+
+func setJSONFormatter() {
+       origLogger.Formatter = &logrus.JSONFormatter{}
+}
+
+type logFormatFlag struct{ uri string }
+
+// String implements flag.Value.
+func (f logFormatFlag) String() string {
+       return f.uri
+}
+
+// Set implements flag.Value.
+func (f logFormatFlag) Set(format string) error {
+       f.uri = format
+       u, err := url.Parse(format)
+       if err != nil {
+               return err
+       }
+       if u.Scheme != "logger" {
+               return fmt.Errorf("invalid scheme %s", u.Scheme)
+       }
+       jsonq := u.Query().Get("json")
+       if jsonq == "true" {
+               setJSONFormatter()
+       }
+
+       switch u.Opaque {
+       case "syslog":
+               if setSyslogFormatter == nil {
+                       return fmt.Errorf("system does not support syslog")
+               }
+               appname := u.Query().Get("appname")
+               facility := u.Query().Get("local")
+               return setSyslogFormatter(appname, facility)
+       case "stdout":
+               origLogger.Out = os.Stdout
+       case "stderr":
+               origLogger.Out = os.Stderr
+
+       default:
+               return fmt.Errorf("unsupported logger %s", u.Opaque)
+       }
+       return nil
+}
+
+func init() {
+       // In order for these flags to take effect, the user of the package must call
+       // flag.Parse() before logging anything.
+       flag.Var(levelFlag{}, "log.level", "Only log messages with the given severity or above. Valid levels: [debug, info, warn, error, fatal].")
+       flag.Var(logFormatFlag{}, "log.format", "If set use a syslog logger or JSON logging. Example: logger:syslog?appname=bob&local=7 or logger:stdout?json=true. Defaults to stderr.")
+}
+
+type Logger interface {
+       Debug(...interface{})
+       Debugln(...interface{})
+       Debugf(string, ...interface{})
+
+       Info(...interface{})
+       Infoln(...interface{})
+       Infof(string, ...interface{})
+
+       Warn(...interface{})
+       Warnln(...interface{})
+       Warnf(string, ...interface{})
+
+       Error(...interface{})
+       Errorln(...interface{})
+       Errorf(string, ...interface{})
+
+       Fatal(...interface{})
+       Fatalln(...interface{})
+       Fatalf(string, ...interface{})
+
+       With(key string, value interface{}) Logger
+}
+
+type logger struct {
+       entry *logrus.Entry
+}
+
+func (l logger) With(key string, value interface{}) Logger {
+       return logger{l.entry.WithField(key, value)}
+}
+
+// Debug logs a message at level Debug on the standard logger.
+func (l logger) Debug(args ...interface{}) {
+       l.sourced().Debug(args...)
+}
+
+// Debug logs a message at level Debug on the standard logger.
+func (l logger) Debugln(args ...interface{}) {
+       l.sourced().Debugln(args...)
+}
+
+// Debugf logs a message at level Debug on the standard logger.
+func (l logger) Debugf(format string, args ...interface{}) {
+       l.sourced().Debugf(format, args...)
+}
+
+// Info logs a message at level Info on the standard logger.
+func (l logger) Info(args ...interface{}) {
+       l.sourced().Info(args...)
+}
+
+// Info logs a message at level Info on the standard logger.
+func (l logger) Infoln(args ...interface{}) {
+       l.sourced().Infoln(args...)
+}
+
+// Infof logs a message at level Info on the standard logger.
+func (l logger) Infof(format string, args ...interface{}) {
+       l.sourced().Infof(format, args...)
+}
+
+// Warn logs a message at level Warn on the standard logger.
+func (l logger) Warn(args ...interface{}) {
+       l.sourced().Warn(args...)
+}
+
+// Warn logs a message at level Warn on the standard logger.
+func (l logger) Warnln(args ...interface{}) {
+       l.sourced().Warnln(args...)
+}
+
+// Warnf logs a message at level Warn on the standard logger.
+func (l logger) Warnf(format string, args ...interface{}) {
+       l.sourced().Warnf(format, args...)
+}
+
+// Error logs a message at level Error on the standard logger.
+func (l logger) Error(args ...interface{}) {
+       l.sourced().Error(args...)
+}
+
+// Error logs a message at level Error on the standard logger.
+func (l logger) Errorln(args ...interface{}) {
+       l.sourced().Errorln(args...)
+}
+
+// Errorf logs a message at level Error on the standard logger.
+func (l logger) Errorf(format string, args ...interface{}) {
+       l.sourced().Errorf(format, args...)
+}
+
+// Fatal logs a message at level Fatal on the standard logger.
+func (l logger) Fatal(args ...interface{}) {
+       l.sourced().Fatal(args...)
+}
+
+// Fatal logs a message at level Fatal on the standard logger.
+func (l logger) Fatalln(args ...interface{}) {
+       l.sourced().Fatalln(args...)
+}
+
+// Fatalf logs a message at level Fatal on the standard logger.
+func (l logger) Fatalf(format string, args ...interface{}) {
+       l.sourced().Fatalf(format, args...)
+}
+
+// sourced adds a source field to the logger that contains
+// the file name and line where the logging happened.
+func (l logger) sourced() *logrus.Entry {
+       _, file, line, ok := runtime.Caller(2)
+       if !ok {
+               file = "<???>"
+               line = 1
+       } else {
+               slash := strings.LastIndex(file, "/")
+               file = file[slash+1:]
+       }
+       return l.entry.WithField("source", fmt.Sprintf("%s:%d", file, line))
+}
+
+var origLogger = logrus.New()
+var baseLogger = logger{entry: logrus.NewEntry(origLogger)}
+
+func Base() Logger {
+       return baseLogger
+}
+
+func With(key string, value interface{}) Logger {
+       return baseLogger.With(key, value)
+}
+
+// Debug logs a message at level Debug on the standard logger.
+func Debug(args ...interface{}) {
+       baseLogger.sourced().Debug(args...)
+}
+
+// Debug logs a message at level Debug on the standard logger.
+func Debugln(args ...interface{}) {
+       baseLogger.sourced().Debugln(args...)
+}
+
+// Debugf logs a message at level Debug on the standard logger.
+func Debugf(format string, args ...interface{}) {
+       baseLogger.sourced().Debugf(format, args...)
+}
+
+// Info logs a message at level Info on the standard logger.
+func Info(args ...interface{}) {
+       baseLogger.sourced().Info(args...)
+}
+
+// Info logs a message at level Info on the standard logger.
+func Infoln(args ...interface{}) {
+       baseLogger.sourced().Infoln(args...)
+}
+
+// Infof logs a message at level Info on the standard logger.
+func Infof(format string, args ...interface{}) {
+       baseLogger.sourced().Infof(format, args...)
+}
+
+// Warn logs a message at level Warn on the standard logger.
+func Warn(args ...interface{}) {
+       baseLogger.sourced().Warn(args...)
+}
+
+// Warn logs a message at level Warn on the standard logger.
+func Warnln(args ...interface{}) {
+       baseLogger.sourced().Warnln(args...)
+}
+
+// Warnf logs a message at level Warn on the standard logger.
+func Warnf(format string, args ...interface{}) {
+       baseLogger.sourced().Warnf(format, args...)
+}
+
+// Error logs a message at level Error on the standard logger.
+func Error(args ...interface{}) {
+       baseLogger.sourced().Error(args...)
+}
+
+// Error logs a message at level Error on the standard logger.
+func Errorln(args ...interface{}) {
+       baseLogger.sourced().Errorln(args...)
+}
+
+// Errorf logs a message at level Error on the standard logger.
+func Errorf(format string, args ...interface{}) {
+       baseLogger.sourced().Errorf(format, args...)
+}
+
+// Fatal logs a message at level Fatal on the standard logger.
+func Fatal(args ...interface{}) {
+       baseLogger.sourced().Fatal(args...)
+}
+
+// Fatal logs a message at level Fatal on the standard logger.
+func Fatalln(args ...interface{}) {
+       baseLogger.sourced().Fatalln(args...)
+}
+
+// Fatalf logs a message at level Fatal on the standard logger.
+func Fatalf(format string, args ...interface{}) {
+       baseLogger.sourced().Fatalf(format, args...)
+}
diff --git a/vendor/github.com/prometheus/common/log/syslog_formatter.go b/vendor/github.com/prometheus/common/log/syslog_formatter.go
new file mode 100644 (file)
index 0000000..fd8c6fb
--- /dev/null
@@ -0,0 +1,119 @@
+// Copyright 2015 The Prometheus Authors
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+// +build !windows,!nacl,!plan9
+
+package log
+
+import (
+       "fmt"
+       "log/syslog"
+       "os"
+
+       "github.com/Sirupsen/logrus"
+)
+
+func init() {
+       setSyslogFormatter = func(appname, local string) error {
+               if appname == "" {
+                       return fmt.Errorf("missing appname parameter")
+               }
+               if local == "" {
+                       return fmt.Errorf("missing local parameter")
+               }
+
+               fmter, err := newSyslogger(appname, local, origLogger.Formatter)
+               if err != nil {
+                       fmt.Fprintf(os.Stderr, "error creating syslog formatter: %v\n", err)
+                       origLogger.Errorf("can't connect logger to syslog: %v", err)
+                       return err
+               }
+               origLogger.Formatter = fmter
+               return nil
+       }
+}
+
+var ceeTag = []byte("@cee:")
+
+type syslogger struct {
+       wrap logrus.Formatter
+       out  *syslog.Writer
+}
+
+func newSyslogger(appname string, facility string, fmter logrus.Formatter) (*syslogger, error) {
+       priority, err := getFacility(facility)
+       if err != nil {
+               return nil, err
+       }
+       out, err := syslog.New(priority, appname)
+       return &syslogger{
+               out:  out,
+               wrap: fmter,
+       }, err
+}
+
+func getFacility(facility string) (syslog.Priority, error) {
+       switch facility {
+       case "0":
+               return syslog.LOG_LOCAL0, nil
+       case "1":
+               return syslog.LOG_LOCAL1, nil
+       case "2":
+               return syslog.LOG_LOCAL2, nil
+       case "3":
+               return syslog.LOG_LOCAL3, nil
+       case "4":
+               return syslog.LOG_LOCAL4, nil
+       case "5":
+               return syslog.LOG_LOCAL5, nil
+       case "6":
+               return syslog.LOG_LOCAL6, nil
+       case "7":
+               return syslog.LOG_LOCAL7, nil
+       }
+       return syslog.LOG_LOCAL0, fmt.Errorf("invalid local(%s) for syslog", facility)
+}
+
+func (s *syslogger) Format(e *logrus.Entry) ([]byte, error) {
+       data, err := s.wrap.Format(e)
+       if err != nil {
+               fmt.Fprintf(os.Stderr, "syslogger: can't format entry: %v\n", err)
+               return data, err
+       }
+       // only append tag to data sent to syslog (line), not to what
+       // is returned
+       line := string(append(ceeTag, data...))
+
+       switch e.Level {
+       case logrus.PanicLevel:
+               err = s.out.Crit(line)
+       case logrus.FatalLevel:
+               err = s.out.Crit(line)
+       case logrus.ErrorLevel:
+               err = s.out.Err(line)
+       case logrus.WarnLevel:
+               err = s.out.Warning(line)
+       case logrus.InfoLevel:
+               err = s.out.Info(line)
+       case logrus.DebugLevel:
+               err = s.out.Debug(line)
+       default:
+               err = s.out.Notice(line)
+       }
+
+       if err != nil {
+               fmt.Fprintf(os.Stderr, "syslogger: can't send log to syslog: %v\n", err)
+       }
+
+       return data, err
+}
diff --git a/vendor/github.com/prometheus/log/AUTHORS.md b/vendor/github.com/prometheus/log/AUTHORS.md
deleted file mode 100644 (file)
index 3aaa7f2..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
-The Prometheus project was started by Matt T. Proud (emeritus) and
-Julius Volz in 2012.
-
-Maintainers of this repository:
-
-* Julius Volz <julius.volz@gmail.com>
-
-The following individuals have contributed code to this repository
-(listed in alphabetical order):
-
-* Julius Volz <julius.volz@gmail.com>
diff --git a/vendor/github.com/prometheus/log/CONTRIBUTING.md b/vendor/github.com/prometheus/log/CONTRIBUTING.md
deleted file mode 100644 (file)
index 5705f0f..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-# Contributing
-
-Prometheus uses GitHub to manage reviews of pull requests.
-
-* If you have a trivial fix or improvement, go ahead and create a pull
-  request, addressing (with `@...`) one or more of the maintainers
-  (see [AUTHORS.md](AUTHORS.md)) in the description of the pull request.
-
-* If you plan to do something more involved, first discuss your ideas
-  on our [mailing list](https://groups.google.com/forum/?fromgroups#!forum/prometheus-developers).
-  This will avoid unnecessary work and surely give you and us a good deal
-  of inspiration.
-
-* Relevant coding style guidelines are the [Go Code Review
-  Comments](https://code.google.com/p/go-wiki/wiki/CodeReviewComments)
-  and the _Formatting and style_ section of Peter Bourgon's [Go: Best
-  Practices for Production
-  Environments](http://peter.bourgon.org/go-in-production/#formatting-and-style).
diff --git a/vendor/github.com/prometheus/log/LICENSE b/vendor/github.com/prometheus/log/LICENSE
deleted file mode 100644 (file)
index 261eeb9..0000000
+++ /dev/null
@@ -1,201 +0,0 @@
-                                 Apache License
-                           Version 2.0, January 2004
-                        http://www.apache.org/licenses/
-
-   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
-
-   1. Definitions.
-
-      "License" shall mean the terms and conditions for use, reproduction,
-      and distribution as defined by Sections 1 through 9 of this document.
-
-      "Licensor" shall mean the copyright owner or entity authorized by
-      the copyright owner that is granting the License.
-
-      "Legal Entity" shall mean the union of the acting entity and all
-      other entities that control, are controlled by, or are under common
-      control with that entity. For the purposes of this definition,
-      "control" means (i) the power, direct or indirect, to cause the
-      direction or management of such entity, whether by contract or
-      otherwise, or (ii) ownership of fifty percent (50%) or more of the
-      outstanding shares, or (iii) beneficial ownership of such entity.
-
-      "You" (or "Your") shall mean an individual or Legal Entity
-      exercising permissions granted by this License.
-
-      "Source" form shall mean the preferred form for making modifications,
-      including but not limited to software source code, documentation
-      source, and configuration files.
-
-      "Object" form shall mean any form resulting from mechanical
-      transformation or translation of a Source form, including but
-      not limited to compiled object code, generated documentation,
-      and conversions to other media types.
-
-      "Work" shall mean the work of authorship, whether in Source or
-      Object form, made available under the License, as indicated by a
-      copyright notice that is included in or attached to the work
-      (an example is provided in the Appendix below).
-
-      "Derivative Works" shall mean any work, whether in Source or Object
-      form, that is based on (or derived from) the Work and for which the
-      editorial revisions, annotations, elaborations, or other modifications
-      represent, as a whole, an original work of authorship. For the purposes
-      of this License, Derivative Works shall not include works that remain
-      separable from, or merely link (or bind by name) to the interfaces of,
-      the Work and Derivative Works thereof.
-
-      "Contribution" shall mean any work of authorship, including
-      the original version of the Work and any modifications or additions
-      to that Work or Derivative Works thereof, that is intentionally
-      submitted to Licensor for inclusion in the Work by the copyright owner
-      or by an individual or Legal Entity authorized to submit on behalf of
-      the copyright owner. For the purposes of this definition, "submitted"
-      means any form of electronic, verbal, or written communication sent
-      to the Licensor or its representatives, including but not limited to
-      communication on electronic mailing lists, source code control systems,
-      and issue tracking systems that are managed by, or on behalf of, the
-      Licensor for the purpose of discussing and improving the Work, but
-      excluding communication that is conspicuously marked or otherwise
-      designated in writing by the copyright owner as "Not a Contribution."
-
-      "Contributor" shall mean Licensor and any individual or Legal Entity
-      on behalf of whom a Contribution has been received by Licensor and
-      subsequently incorporated within the Work.
-
-   2. Grant of Copyright License. Subject to the terms and conditions of
-      this License, each Contributor hereby grants to You a perpetual,
-      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
-      copyright license to reproduce, prepare Derivative Works of,
-      publicly display, publicly perform, sublicense, and distribute the
-      Work and such Derivative Works in Source or Object form.
-
-   3. Grant of Patent License. Subject to the terms and conditions of
-      this License, each Contributor hereby grants to You a perpetual,
-      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
-      (except as stated in this section) patent license to make, have made,
-      use, offer to sell, sell, import, and otherwise transfer the Work,
-      where such license applies only to those patent claims licensable
-      by such Contributor that are necessarily infringed by their
-      Contribution(s) alone or by combination of their Contribution(s)
-      with the Work to which such Contribution(s) was submitted. If You
-      institute patent litigation against any entity (including a
-      cross-claim or counterclaim in a lawsuit) alleging that the Work
-      or a Contribution incorporated within the Work constitutes direct
-      or contributory patent infringement, then any patent licenses
-      granted to You under this License for that Work shall terminate
-      as of the date such litigation is filed.
-
-   4. Redistribution. You may reproduce and distribute copies of the
-      Work or Derivative Works thereof in any medium, with or without
-      modifications, and in Source or Object form, provided that You
-      meet the following conditions:
-
-      (a) You must give any other recipients of the Work or
-          Derivative Works a copy of this License; and
-
-      (b) You must cause any modified files to carry prominent notices
-          stating that You changed the files; and
-
-      (c) You must retain, in the Source form of any Derivative Works
-          that You distribute, all copyright, patent, trademark, and
-          attribution notices from the Source form of the Work,
-          excluding those notices that do not pertain to any part of
-          the Derivative Works; and
-
-      (d) If the Work includes a "NOTICE" text file as part of its
-          distribution, then any Derivative Works that You distribute must
-          include a readable copy of the attribution notices contained
-          within such NOTICE file, excluding those notices that do not
-          pertain to any part of the Derivative Works, in at least one
-          of the following places: within a NOTICE text file distributed
-          as part of the Derivative Works; within the Source form or
-          documentation, if provided along with the Derivative Works; or,
-          within a display generated by the Derivative Works, if and
-          wherever such third-party notices normally appear. The contents
-          of the NOTICE file are for informational purposes only and
-          do not modify the License. You may add Your own attribution
-          notices within Derivative Works that You distribute, alongside
-          or as an addendum to the NOTICE text from the Work, provided
-          that such additional attribution notices cannot be construed
-          as modifying the License.
-
-      You may add Your own copyright statement to Your modifications and
-      may provide additional or different license terms and conditions
-      for use, reproduction, or distribution of Your modifications, or
-      for any such Derivative Works as a whole, provided Your use,
-      reproduction, and distribution of the Work otherwise complies with
-      the conditions stated in this License.
-
-   5. Submission of Contributions. Unless You explicitly state otherwise,
-      any Contribution intentionally submitted for inclusion in the Work
-      by You to the Licensor shall be under the terms and conditions of
-      this License, without any additional terms or conditions.
-      Notwithstanding the above, nothing herein shall supersede or modify
-      the terms of any separate license agreement you may have executed
-      with Licensor regarding such Contributions.
-
-   6. Trademarks. This License does not grant permission to use the trade
-      names, trademarks, service marks, or product names of the Licensor,
-      except as required for reasonable and customary use in describing the
-      origin of the Work and reproducing the content of the NOTICE file.
-
-   7. Disclaimer of Warranty. Unless required by applicable law or
-      agreed to in writing, Licensor provides the Work (and each
-      Contributor provides its Contributions) on an "AS IS" BASIS,
-      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
-      implied, including, without limitation, any warranties or conditions
-      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
-      PARTICULAR PURPOSE. You are solely responsible for determining the
-      appropriateness of using or redistributing the Work and assume any
-      risks associated with Your exercise of permissions under this License.
-
-   8. Limitation of Liability. In no event and under no legal theory,
-      whether in tort (including negligence), contract, or otherwise,
-      unless required by applicable law (such as deliberate and grossly
-      negligent acts) or agreed to in writing, shall any Contributor be
-      liable to You for damages, including any direct, indirect, special,
-      incidental, or consequential damages of any character arising as a
-      result of this License or out of the use or inability to use the
-      Work (including but not limited to damages for loss of goodwill,
-      work stoppage, computer failure or malfunction, or any and all
-      other commercial damages or losses), even if such Contributor
-      has been advised of the possibility of such damages.
-
-   9. Accepting Warranty or Additional Liability. While redistributing
-      the Work or Derivative Works thereof, You may choose to offer,
-      and charge a fee for, acceptance of support, warranty, indemnity,
-      or other liability obligations and/or rights consistent with this
-      License. However, in accepting such obligations, You may act only
-      on Your own behalf and on Your sole responsibility, not on behalf
-      of any other Contributor, and only if You agree to indemnify,
-      defend, and hold each Contributor harmless for any liability
-      incurred by, or claims asserted against, such Contributor by reason
-      of your accepting any such warranty or additional liability.
-
-   END OF TERMS AND CONDITIONS
-
-   APPENDIX: How to apply the Apache License to your work.
-
-      To apply the Apache License to your work, attach the following
-      boilerplate notice, with the fields enclosed by brackets "[]"
-      replaced with your own identifying information. (Don't include
-      the brackets!)  The text should be enclosed in the appropriate
-      comment syntax for the file format. We also recommend that a
-      file or class name and description of purpose be included on the
-      same "printed page" as the copyright notice for easier
-      identification within third-party archives.
-
-   Copyright [yyyy] [name of copyright owner]
-
-   Licensed under the Apache License, Version 2.0 (the "License");
-   you may not use this file except in compliance with the License.
-   You may obtain a copy of the License at
-
-       http://www.apache.org/licenses/LICENSE-2.0
-
-   Unless required by applicable law or agreed to in writing, software
-   distributed under the License is distributed on an "AS IS" BASIS,
-   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-   See the License for the specific language governing permissions and
-   limitations under the License.
diff --git a/vendor/github.com/prometheus/log/NOTICE b/vendor/github.com/prometheus/log/NOTICE
deleted file mode 100644 (file)
index 1f37552..0000000
+++ /dev/null
@@ -1,2 +0,0 @@
-Standard logging library for Go-based Prometheus components.
-Copyright 2015 The Prometheus Authors
diff --git a/vendor/github.com/prometheus/log/README.md b/vendor/github.com/prometheus/log/README.md
deleted file mode 100644 (file)
index 453abc3..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-# Prometheus Logging Library
-
-**Deprecated: This repository is superseded by [common/log](https://github.com/prometheus/common/tree/master/log).**
-
-Standard logging library for Go-based Prometheus components.
-
-This library wraps
-[https://github.com/Sirupsen/logrus](https://github.com/Sirupsen/logrus) in
-order to add line:file annotations to log lines, as well as to provide common
-command-line flags for Prometheus components using it.
diff --git a/vendor/github.com/prometheus/log/log.go b/vendor/github.com/prometheus/log/log.go
deleted file mode 100644 (file)
index 8c85df3..0000000
+++ /dev/null
@@ -1,171 +0,0 @@
-// Copyright 2015 The Prometheus Authors
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-// http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-
-package log
-
-import (
-       "flag"
-       "runtime"
-       "strings"
-
-       "github.com/Sirupsen/logrus"
-)
-
-var logger = logrus.New()
-
-type levelFlag struct{}
-
-// String implements flag.Value.
-func (f levelFlag) String() string {
-       return logger.Level.String()
-}
-
-// Set implements flag.Value.
-func (f levelFlag) Set(level string) error {
-       l, err := logrus.ParseLevel(level)
-       if err != nil {
-               return err
-       }
-       logger.Level = l
-       return nil
-}
-
-func init() {
-       // In order for this flag to take effect, the user of the package must call
-       // flag.Parse() before logging anything.
-       flag.Var(levelFlag{}, "log.level", "Only log messages with the given severity or above. Valid levels: [debug, info, warn, error, fatal, panic].")
-}
-
-// fileLineEntry returns a logrus.Entry with file and line annotations for the
-// original user log statement (two stack frames up from this function).
-func fileLineEntry() *logrus.Entry {
-       _, file, line, ok := runtime.Caller(2)
-       if !ok {
-               file = "<???>"
-               line = 1
-       } else {
-               slash := strings.LastIndex(file, "/")
-               if slash >= 0 {
-                       file = file[slash+1:]
-               }
-       }
-       return logger.WithFields(logrus.Fields{
-               "file": file,
-               "line": line,
-       })
-}
-
-// Debug logs a message at level Debug on the standard logger.
-func Debug(args ...interface{}) {
-       fileLineEntry().Debug(args...)
-}
-
-// Debugln logs a message at level Debug on the standard logger.
-func Debugln(args ...interface{}) {
-       fileLineEntry().Debugln(args...)
-}
-
-// Debugf logs a message at level Debug on the standard logger.
-func Debugf(format string, args ...interface{}) {
-       fileLineEntry().Debugf(format, args...)
-}
-
-// Info logs a message at level Info on the standard logger.
-func Info(args ...interface{}) {
-       fileLineEntry().Info(args...)
-}
-
-// Infoln logs a message at level Info on the standard logger.
-func Infoln(args ...interface{}) {
-       fileLineEntry().Infoln(args...)
-}
-
-// Infof logs a message at level Info on the standard logger.
-func Infof(format string, args ...interface{}) {
-       fileLineEntry().Infof(format, args...)
-}
-
-// Print logs a message at level Info on the standard logger.
-func Print(args ...interface{}) {
-       fileLineEntry().Info(args...)
-}
-
-// Println logs a message at level Info on the standard logger.
-func Println(args ...interface{}) {
-       fileLineEntry().Infoln(args...)
-}
-
-// Printf logs a message at level Info on the standard logger.
-func Printf(format string, args ...interface{}) {
-       fileLineEntry().Infof(format, args...)
-}
-
-// Warn logs a message at level Warn on the standard logger.
-func Warn(args ...interface{}) {
-       fileLineEntry().Warn(args...)
-}
-
-// Warnln logs a message at level Warn on the standard logger.
-func Warnln(args ...interface{}) {
-       fileLineEntry().Warnln(args...)
-}
-
-// Warnf logs a message at level Warn on the standard logger.
-func Warnf(format string, args ...interface{}) {
-       fileLineEntry().Warnf(format, args...)
-}
-
-// Error logs a message at level Error on the standard logger.
-func Error(args ...interface{}) {
-       fileLineEntry().Error(args...)
-}
-
-// Errorln logs a message at level Error on the standard logger.
-func Errorln(args ...interface{}) {
-       fileLineEntry().Errorln(args...)
-}
-
-// Errorf logs a message at level Error on the standard logger.
-func Errorf(format string, args ...interface{}) {
-       fileLineEntry().Errorf(format, args...)
-}
-
-// Fatal logs a message at level Fatal on the standard logger.
-func Fatal(args ...interface{}) {
-       fileLineEntry().Fatal(args...)
-}
-
-// Fatalln logs a message at level Fatal on the standard logger.
-func Fatalln(args ...interface{}) {
-       fileLineEntry().Fatalln(args...)
-}
-
-// Fatalf logs a message at level Fatal on the standard logger.
-func Fatalf(format string, args ...interface{}) {
-       fileLineEntry().Fatalf(format, args...)
-}
-
-// Panic logs a message at level Panic on the standard logger.
-func Panic(args ...interface{}) {
-       fileLineEntry().Panicln(args...)
-}
-
-// Panicln logs a message at level Panic on the standard logger.
-func Panicln(args ...interface{}) {
-       fileLineEntry().Panicln(args...)
-}
-
-// Panicf logs a message at level Panic on the standard logger.
-func Panicf(format string, args ...interface{}) {
-       fileLineEntry().Panicf(format, args...)
-}
index 47b2cada65dca5b24903e65093dd368c921923d7..c770e9dc59aed1011c03736d6f10689e241029f4 100644 (file)
                        "revision": "167b27da48d058a9b46d84b834d67f68f0243f67",
                        "revisionTime": "2016-03-18T12:23:18Z"
                },
+               {
+                       "checksumSHA1": "koBNYQryxAG8hyHBlpn8pcnSVdM=",
+                       "path": "github.com/prometheus/common/log",
+                       "revision": "dd586c1c5abb0be59e60f942c22af711a2008cb4",
+                       "revisionTime": "2016-05-03T22:05:32Z"
+               },
                {
                        "path": "github.com/prometheus/common/model",
                        "revision": "167b27da48d058a9b46d84b834d67f68f0243f67",
                        "revisionTime": "2016-03-18T12:23:18Z"
                },
-               {
-                       "path": "github.com/prometheus/log",
-                       "revision": "9a3136781e1ff7bc42736ba4acb81339b1422551",
-                       "revisionTime": "2015-10-26T02:24:52+01:00"
-               },
                {
                        "path": "github.com/prometheus/procfs",
                        "revision": "406e5b7bfd8201a36e2bb5f7bdae0b03380c2ce8",
@@ -92,5 +93,6 @@
                        "revision": "a83829b6f1293c91addabc89d0571c246397bbf4",
                        "revisionTime": "2016-03-01T17:40:22-03:00"
                }
-       ]
+       ],
+       "rootPath": "github.com/prometheus/blackbox_exporter"
 }