Skip to content

Commit a4bdf21

Browse files
badge update
1 parent 99e43c6 commit a4bdf21

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Go-Splunk-HTTP
22
A simple and lightweight HTTP Splunk logging package for Go. Instantiates a logging connection object to your Splunk server and allows you to submit log events as desired. [Uses HTTP event collection on a Splunk server](http://docs.splunk.com/Documentation/Splunk/latest/Data/UsetheHTTPEventCollector).
33

4-
[![GoDoc](https://godoc.org/github.com/ZachtimusPrime/Go-Splunk-HTTP?status.svg)](https://godoc.org/github.com/ZachtimusPrime/Go-Splunk-HTTP)
4+
[![GoDoc](https://godoc.org/github.com/ZachtimusPrime/Go-Splunk-HTTP/splunk?status.svg)](https://godoc.org/github.com/ZachtimusPrime/Go-Splunk-HTTP/splunk)
55
[![Build Status](https://travis-ci.org/ZachtimusPrime/Go-Splunk-HTTP.svg?branch=master)](https://travis-ci.org/ZachtimusPrime/Go-Splunk-HTTP)
66
[![Coverage Status](https://coveralls.io/repos/github/ZachtimusPrime/Go-Splunk-HTTP/badge.svg?branch=master)](https://coveralls.io/github/ZachtimusPrime/Go-Splunk-HTTP?branch=master)
77
[![Go Report Card](https://goreportcard.com/badge/github.com/ZachtimusPrime/Go-Splunk-HTTP)](https://goreportcard.com/report/github.com/ZachtimusPrime/Go-Splunk-HTTP)
@@ -27,7 +27,7 @@ For example:
2727
package main
2828

2929
import (
30-
"github.com/ZachtimusPrime/Go-Splunk-HTTP"
30+
"github.com/ZachtimusPrime/Go-Splunk-HTTP/splunk"
3131
)
3232

3333
func main() {
@@ -42,5 +42,6 @@ func main() {
4242

4343
// Send a log event
4444
sl.Log(map[string]string{"msg": "send key/val pairs here", "msg2": "anything that is useful to you in the log event"})
45+
}
4546

4647
```

0 commit comments

Comments
 (0)