Appender docs housekeeping

This commit is contained in:
Peter Taoussanis 2016-07-05 10:32:43 +07:00
parent f2f42ca39f
commit 728dec01c7
8 changed files with 11 additions and 9 deletions

View File

@ -1,5 +1,5 @@
(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)"}
(:require [somnium.congomongo :as mongo]
[taoensso.timbre :as timbre]

View File

@ -1,6 +1,6 @@
(ns taoensso.timbre.appenders.3rd-party.gelf
"Appender to handle sending messages in the gelf format to a centralized
logging server (e.g. Graylog)"
"Appender that sends GELF messages to a centralized logging server
(e.g. Graylog). Requires https://github.com/Graylog2/gelfclient."
{:author "Dave Owens (@davewo)"}
(:import
[org.graylog2.gelfclient

View File

@ -1,6 +1,6 @@
(ns taoensso.timbre.appenders.3rd-party.logstash
"Timbre appender that send output to logstash.
Requires cheshire (https://github.com/dakrone/cheshire)."
"Appender that sends output to Logstash.
Requires Cheshire (https://github.com/dakrone/cheshire)."
{:author "Mike Sperber (@mikesperber), David Frese (@dfrese)"}
(:require [taoensso.timbre :as timbre]
[cheshire.core :as cheshire])

View File

@ -1,7 +1,7 @@
(ns taoensso.timbre.appenders.3rd-party.postgresql
"JDBC PostgreSQL database appender.
Requires https://github.com/clojure/java.jdbc,
https://github.com/swaldman/c3p0"
https://github.com/swaldman/c3p0."
{:author "Yue Liu (@yuliu-mdsol)"}
(:require
[taoensso.timbre :as timbre]

View File

@ -1,4 +1,5 @@
(ns taoensso.timbre.appenders.3rd-party.rotor
"Rotating file appender."
{:author "Karsten Schmidt (@postspectacular)"}
(:require [clojure.java.io :as io]
[taoensso.timbre :as timbre])

View File

@ -1,5 +1,6 @@
(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)"}
(:require [server.socket :refer [create-server]]
[taoensso.timbre :refer [stacktrace]])

View File

@ -1,5 +1,5 @@
(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)"}
(:require
[taoensso.timbre :as timbre]

View File

@ -1,5 +1,5 @@
(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)"}
(:require [zeromq.zmq :as zmq]
[taoensso.timbre :as timbre]))