mirror of https://github.com/status-im/timbre.git
Appender docs housekeeping
This commit is contained in:
parent
f2f42ca39f
commit
728dec01c7
|
@ -1,5 +1,5 @@
|
||||||
(ns taoensso.timbre.appenders.3rd-party.congomongo
|
(ns taoensso.timbre.appenders.3rd-party.congomongo
|
||||||
"MongoDB appender. Requires on https://github.com/aboekhoff/congomongo."
|
"MongoDB appender. Requires https://github.com/aboekhoff/congomongo."
|
||||||
{:author "Emlyn Corrin (@emlyn)"}
|
{:author "Emlyn Corrin (@emlyn)"}
|
||||||
(:require [somnium.congomongo :as mongo]
|
(:require [somnium.congomongo :as mongo]
|
||||||
[taoensso.timbre :as timbre]
|
[taoensso.timbre :as timbre]
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
(ns taoensso.timbre.appenders.3rd-party.gelf
|
(ns taoensso.timbre.appenders.3rd-party.gelf
|
||||||
"Appender to handle sending messages in the gelf format to a centralized
|
"Appender that sends GELF messages to a centralized logging server
|
||||||
logging server (e.g. Graylog)"
|
(e.g. Graylog). Requires https://github.com/Graylog2/gelfclient."
|
||||||
{:author "Dave Owens (@davewo)"}
|
{:author "Dave Owens (@davewo)"}
|
||||||
(:import
|
(:import
|
||||||
[org.graylog2.gelfclient
|
[org.graylog2.gelfclient
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
(ns taoensso.timbre.appenders.3rd-party.logstash
|
(ns taoensso.timbre.appenders.3rd-party.logstash
|
||||||
"Timbre appender that send output to logstash.
|
"Appender that sends output to Logstash.
|
||||||
Requires cheshire (https://github.com/dakrone/cheshire)."
|
Requires Cheshire (https://github.com/dakrone/cheshire)."
|
||||||
{:author "Mike Sperber (@mikesperber), David Frese (@dfrese)"}
|
{:author "Mike Sperber (@mikesperber), David Frese (@dfrese)"}
|
||||||
(:require [taoensso.timbre :as timbre]
|
(:require [taoensso.timbre :as timbre]
|
||||||
[cheshire.core :as cheshire])
|
[cheshire.core :as cheshire])
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
(ns taoensso.timbre.appenders.3rd-party.postgresql
|
(ns taoensso.timbre.appenders.3rd-party.postgresql
|
||||||
"JDBC PostgreSQL database appender.
|
"JDBC PostgreSQL database appender.
|
||||||
Requires https://github.com/clojure/java.jdbc,
|
Requires https://github.com/clojure/java.jdbc,
|
||||||
https://github.com/swaldman/c3p0"
|
https://github.com/swaldman/c3p0."
|
||||||
{:author "Yue Liu (@yuliu-mdsol)"}
|
{:author "Yue Liu (@yuliu-mdsol)"}
|
||||||
(:require
|
(:require
|
||||||
[taoensso.timbre :as timbre]
|
[taoensso.timbre :as timbre]
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
(ns taoensso.timbre.appenders.3rd-party.rotor
|
(ns taoensso.timbre.appenders.3rd-party.rotor
|
||||||
|
"Rotating file appender."
|
||||||
{:author "Karsten Schmidt (@postspectacular)"}
|
{:author "Karsten Schmidt (@postspectacular)"}
|
||||||
(:require [clojure.java.io :as io]
|
(:require [clojure.java.io :as io]
|
||||||
[taoensso.timbre :as timbre])
|
[taoensso.timbre :as timbre])
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
(ns taoensso.timbre.appenders.3rd-party.server-socket
|
(ns taoensso.timbre.appenders.3rd-party.server-socket
|
||||||
"TCP socket appender. Requires https://github.com/technomancy/server-socket."
|
"TCP socket appender.
|
||||||
|
Requires https://github.com/technomancy/server-socket."
|
||||||
{:author "Emlyn Corrin (@emlyn)"}
|
{:author "Emlyn Corrin (@emlyn)"}
|
||||||
(:require [server.socket :refer [create-server]]
|
(:require [server.socket :refer [create-server]]
|
||||||
[taoensso.timbre :refer [stacktrace]])
|
[taoensso.timbre :refer [stacktrace]])
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
(ns taoensso.timbre.appenders.3rd-party.slack
|
(ns taoensso.timbre.appenders.3rd-party.slack
|
||||||
"Requires https://github.com/julienXX/clj-slack"
|
"Slack appender. Requires https://github.com/julienXX/clj-slack."
|
||||||
{:author "Simon Belak (@sbelak)"}
|
{:author "Simon Belak (@sbelak)"}
|
||||||
(:require
|
(:require
|
||||||
[taoensso.timbre :as timbre]
|
[taoensso.timbre :as timbre]
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
(ns taoensso.timbre.appenders.3rd-party.zmq
|
(ns taoensso.timbre.appenders.3rd-party.zmq
|
||||||
"ØMQ appender. Requires https://github.com/zeromq/cljzmq"
|
"ØMQ appender. Requires https://github.com/zeromq/cljzmq."
|
||||||
{:author "Angus Fletcher (@angusiguess)"}
|
{:author "Angus Fletcher (@angusiguess)"}
|
||||||
(:require [zeromq.zmq :as zmq]
|
(:require [zeromq.zmq :as zmq]
|
||||||
[taoensso.timbre :as timbre]))
|
[taoensso.timbre :as timbre]))
|
||||||
|
|
Loading…
Reference in New Issue