Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue 11 #78

Open
wants to merge 55 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
55 commits
Select commit Hold shift + click to select a range
004f33e
introduce gocheck
joelreymont Jun 26, 2015
1bd4c99
remove extra indirection
joelreymont Jun 26, 2015
f5833c2
return errors
joelreymont Jun 26, 2015
1e7ac28
common test bits
joelreymont Jun 26, 2015
89afe2d
interval
joelreymont Jun 26, 2015
df633b6
ignore the binary
joelreymont Jun 26, 2015
ecf7032
fix typo
joelreymont Jun 26, 2015
8b12ca0
lower minimum refresh interval
joelreymont Jun 26, 2015
2a8be4d
regex
joelreymont Jun 26, 2015
1f5937c
fix error message
joelreymont Jun 26, 2015
12c2f6a
moved to common_test.go
joelreymont Jun 26, 2015
6921fca
use the new interval and regex types
joelreymont Jun 26, 2015
5fef954
pass in the config manager
joelreymont Jun 26, 2015
527e9ad
move config validation to load time
joelreymont Jun 26, 2015
09757d5
shrink function signature by passing in the config manager
joelreymont Jun 26, 2015
ef3ff87
move main to the top
joelreymont Jun 26, 2015
151af71
move the tail loop into main
joelreymont Jun 26, 2015
1b73290
should not proceed on error
joelreymont Jun 26, 2015
dc7d4c5
fix typo
joelreymont Jun 29, 2015
84d185a
clean up
joelreymont Jun 29, 2015
2dab969
remove debug printout
joelreymont Jun 29, 2015
88fbf76
add logging
joelreymont Jun 29, 2015
1fc4a53
remove logging
joelreymont Jun 29, 2015
9f43b64
check error
joelreymont Jun 29, 2015
f33ad74
set default check interval
joelreymont Jun 29, 2015
3beb774
use configured refresh interval
joelreymont Jun 29, 2015
d687a55
fix deps
joelreymont Jun 29, 2015
cdcc038
go back to a 10s default
joelreymont Jun 29, 2015
9df35c2
fix merge
joelreymont Jun 29, 2015
ea7f0a5
unify config file and command-line flags
joelreymont Jun 29, 2015
daa90bd
rename
joelreymont Jun 29, 2015
3f6adb5
return a reference
joelreymont Jun 29, 2015
0f37176
more idiomatic
joelreymont Jun 29, 2015
6d1a980
tested globbing
joelreymont Jun 30, 2015
6454582
logger interface
joelreymont Jun 30, 2015
98acb68
matchExps -> match
joelreymont Jun 30, 2015
486dc41
gocheck and references
joelreymont Jun 30, 2015
3ae930f
tail and testing
joelreymont Jun 30, 2015
076bafd
glob and tail refactor
joelreymont Jun 30, 2015
f630052
properly parse flags and override config
joelreymont Jun 30, 2015
ae43296
check loaded config values
joelreymont Jul 1, 2015
9d76dfb
YAML v2
joelreymont Jul 1, 2015
5a84a3a
remove YAML v1
joelreymont Jul 1, 2015
299bead
minor
joelreymont Jul 1, 2015
6e6cfcb
remove default
joelreymont Jul 1, 2015
f86d624
cleaner globbing that returns an array
joelreymont Jul 1, 2015
df9f996
default config file
joelreymont Jul 1, 2015
051312d
test globbing and tailing in one fell swoop
joelreymont Jul 1, 2015
a806975
go fmt
joelreymont Jul 3, 2015
ee820fb
remove stale code
joelreymont Jul 3, 2015
07ed0fa
remove cli config file default
joelreymont Jul 3, 2015
8607629
only override hostname if set
joelreymont Jul 3, 2015
7fc4b42
another test config
joelreymont Jul 6, 2015
5e30dce
test overriding config file via CLI flags
joelreymont Jul 6, 2015
dfb6b3e
override config file via the CLI + smarter protocol override
joelreymont Jul 6, 2015
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -20,3 +20,4 @@ _cgo_export.*
_testmain.go

*.exe
remote_syslog2
11 changes: 7 additions & 4 deletions Godeps/Godeps.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions Godeps/_workspace/src/gopkg.in/check.v1/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

25 changes: 25 additions & 0 deletions Godeps/_workspace/src/gopkg.in/check.v1/LICENSE

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 20 additions & 0 deletions Godeps/_workspace/src/gopkg.in/check.v1/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions Godeps/_workspace/src/gopkg.in/check.v1/TODO

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

187 changes: 187 additions & 0 deletions Godeps/_workspace/src/gopkg.in/check.v1/benchmark.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

91 changes: 91 additions & 0 deletions Godeps/_workspace/src/gopkg.in/check.v1/benchmark_test.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.