refactor: logparser v6
This commit is contained in:
29
logparser/v6/logly/report/json.go
Normal file
29
logparser/v6/logly/report/json.go
Normal file
@@ -0,0 +1,29 @@
|
||||
// For more tutorials: https://blog.learngoprogramming.com
|
||||
//
|
||||
// Copyright © 2018 Inanc Gumus
|
||||
// Learn Go Programming Course
|
||||
// License: https://creativecommons.org/licenses/by-nc-sa/4.0/
|
||||
//
|
||||
|
||||
package report
|
||||
|
||||
import (
|
||||
"encoding/json"
|
||||
"io"
|
||||
|
||||
"github.com/inancgumus/learngo/logparser/v6/logly/record"
|
||||
)
|
||||
|
||||
// JSON generates a json report.
|
||||
func JSON(w io.Writer, rs []record.Record) error {
|
||||
enc := json.NewEncoder(w)
|
||||
|
||||
for _, r := range rs {
|
||||
err := enc.Encode(&r)
|
||||
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
}
|
||||
return nil
|
||||
}
|
Reference in New Issue
Block a user