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

Minecraft Input Plugin using RCON #2960

Merged
merged 29 commits into from
Jun 23, 2017
Merged
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
48d7258
Add boilerplate for minecraft plugin
Jun 20, 2017
5cbb550
Add RCON minecraft client lib
Jun 20, 2017
9d737b7
Change rcon.go to package main
Jun 21, 2017
8fd5848
Isolate username with regex
Jun 21, 2017
a4b87da
Add username parsing test for minecraft plugin
Jun 21, 2017
96994e3
Update ParseUsername test for minecraft plugin
Jun 21, 2017
54b1778
Add method to parse scoreboard data from rcon for minecraft input plugin
Jun 22, 2017
b1c970c
Remove main.go from minecraft plugin
Jun 22, 2017
e775ba0
Change field names in RCON struct for minecraft input plugin
Jun 22, 2017
93c36f6
Add gathering of data from RCON client for minecraft input plugin
Jun 22, 2017
c3c6a8e
Fix empty username, fix uninitialized map for minecraft input plugin
Jun 22, 2017
80ed9f3
Change all instances of username to playername
Jun 22, 2017
c4fab38
Add gather test for minecraft plugin
Jun 23, 2017
db22951
Add rcon_test.go to verify that RCON server output is processed corre…
Jun 23, 2017
6a8b6b5
Remove unused variable in minecraft plugin
Jun 23, 2017
e72948e
Add README.md to minecraft plugin
Jun 23, 2017
846b487
Update minecraft input plugin README.md to conform to telegraf README…
Jun 23, 2017
6fd5718
Update README.md in minecraft input plugin to include server properti…
Jun 23, 2017
c48cf8d
Update minecraft plugin README.md to futher conform to telegraf READM…
Jun 23, 2017
f0f5f8b
Update LICENSE_OF_DEPENDENCIES.md to include license for chuckpreslar…
Jun 23, 2017
bfbb286
Update playerName tag to player in minecraft plugin
Jun 23, 2017
a0ed0cf
Update server tag format to include port in minecraft plugin
Jun 23, 2017
f850a78
Refactor regexps into package variables in minecraft plugin
Jun 23, 2017
3e4559d
Update comment spacing in minecraft plugin
Jun 23, 2017
7d33813
Add configuration defaults in minecraft package init
Jun 23, 2017
2de9da1
Add RCON network reconnect in minecraft plugin
Jun 23, 2017
66adba4
Remove extraneous comment and update formatting in minecraft plugin
Jun 23, 2017
5818f5c
Update default config file formatting in minecraft plugin
Jun 23, 2017
8ed6801
Update test data in README.md for minecraft plugin
Jun 23, 2017
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove unused variable in minecraft plugin
Signed-off-by: Adam Perlin <adamperlin@seattleacademy.org>
  • Loading branch information
Ayrdrie Palmer committed Jun 23, 2017
commit 6a8b6b51815f53bb292273f5c34a8358a6cb85ed
2 changes: 1 addition & 1 deletion plugins/inputs/minecraft/minecraft_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ func TestParseScoreboard(t *testing.T) {

// Tests an empty string.
input = ``
got, err = ParseScoreboard(input)
_, err = ParseScoreboard(input)
if err == nil {
t.Fatal("Expected input error, but error was nil")
}
Expand Down