-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from maier/master
v0.5.0
- Loading branch information
Showing
28 changed files
with
525 additions
and
631 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
--- | ||
# location of log metric configurations | ||
log_conf_dir: /opt/circonus/logwatch/etc/log.d | ||
# stats for the process (e.g. curl localhost:33284/stats) | ||
app_stat_port: "33284" | ||
# turns on debugging messages (e.g. log.level=debug) | ||
debug: false | ||
# debug circonus api interactions | ||
debug_cgm: false | ||
# debug log tailing | ||
debug_tail: false | ||
# debug metric processing | ||
debug_metric: false | ||
api: # applicable when using a 'check' destination | ||
key: "" | ||
app: circonus-logwatch | ||
url: https://api.circonus.com/v2/ | ||
ca_file: "" | ||
destination: | ||
# log|agent|check|statsd | ||
type: log | ||
config: | ||
# Circonus Check destination | ||
# | ||
# check or check bundle id /check/# or /check_bundle/# | ||
#cid: "" | ||
# | ||
# searching for an existing check and creating a new check | ||
#instance_id: "" | ||
# | ||
# searching for an existing check with a specific tag | ||
#search_tag: "" | ||
# | ||
# searching for an existing check and creating a new check | ||
#target: "" | ||
# | ||
# submission url of an existing check | ||
#url: "" | ||
|
||
# StatsD destination | ||
# | ||
# grouping/prefix for metrics | ||
#id: circonus-logwatch | ||
# | ||
# port a statsd server is listening to (default: 8125) | ||
#port: "8125" | ||
# | ||
# prefix for metrics | ||
#statsd_prefix: host. | ||
|
||
# Agent destination | ||
# | ||
# grouping/prefix for metrics | ||
#id: circonus-logwatch | ||
# | ||
# port agent is listening to (default: 2609) | ||
#port: "2609" | ||
log: | ||
level: info | ||
# helpful when running process at command line | ||
# makes log messages easier to read | ||
pretty: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
module github.com/circonus-labs/circonus-logwatch | ||
|
||
require ( | ||
github.com/BurntSushi/toml v0.3.1 // indirect | ||
github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf | ||
github.com/circonus-labs/circonus-gometrics/v3 v3.0.0-alpha.1 | ||
github.com/hpcloud/tail v1.0.0 | ||
github.com/inconshreveable/mousetrap v1.0.0 // indirect | ||
github.com/maier/go-appstats v0.2.0 | ||
github.com/pelletier/go-toml v1.2.0 | ||
github.com/pkg/errors v0.8.0 | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/rs/zerolog v1.10.0 | ||
github.com/spf13/cobra v0.0.3 | ||
github.com/spf13/viper v1.2.1 | ||
github.com/stretchr/testify v1.2.2 // indirect | ||
golang.org/x/net v0.0.0-20181029044818-c44066c5c816 // indirect | ||
golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f | ||
golang.org/x/sys v0.0.0-20181031143558-9b800f95dbbc | ||
gopkg.in/fsnotify.v1 v1.4.7 // indirect | ||
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect | ||
gopkg.in/yaml.v2 v2.2.1 | ||
) |
Oops, something went wrong.