[#7] loki: Fix linter issues
Signed-off-by: Evgenii Stratonikov <e.stratonikov@yadro.com>
This commit is contained in:
parent
b3ad3335ff
commit
99465e6639
2 changed files with 8 additions and 2 deletions
|
@ -1,6 +1,8 @@
|
||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"fmt"
|
||||||
|
"os"
|
||||||
"strconv"
|
"strconv"
|
||||||
"sync"
|
"sync"
|
||||||
"time"
|
"time"
|
||||||
|
@ -19,7 +21,10 @@ func send(loki *loki.Client) {
|
||||||
|
|
||||||
for j := 0; j < countMsg/countMsgGroup; j++ {
|
for j := 0; j < countMsg/countMsgGroup; j++ {
|
||||||
for i := 0; i < countMsgGroup; i++ {
|
for i := 0; i < countMsgGroup; i++ {
|
||||||
loki.Send(strconv.Itoa(j)+" "+strconv.Itoa(i)+" test log message", time.Now())
|
err := loki.Send(strconv.Itoa(j)+" "+strconv.Itoa(i)+" test log message", time.Now())
|
||||||
|
if err != nil {
|
||||||
|
fmt.Fprintf(os.Stderr, "send: %v", err)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
time.Sleep(20 * time.Millisecond)
|
time.Sleep(20 * time.Millisecond)
|
||||||
}
|
}
|
||||||
|
|
|
@ -6,8 +6,9 @@ import (
|
||||||
"time"
|
"time"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
// Send sends the message to the loki server.
|
||||||
// If the client is disabled, it returns error.
|
// If the client is disabled, it returns error.
|
||||||
// If the entries channel is full, the message is discarded and returns error
|
// If the entries channel is full, the message is discarded and returns error.
|
||||||
func (client *Client) Send(msg string, timestamp time.Time) error {
|
func (client *Client) Send(msg string, timestamp time.Time) error {
|
||||||
if !client.IsEnabled() {
|
if !client.IsEnabled() {
|
||||||
client.missedMessages++
|
client.missedMessages++
|
||||||
|
|
Loading…
Reference in a new issue