1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
package proto
import "time"
// Log from server.
type Log struct {
Time time.Time
Host string
QueryID string
ThreadID uint64
Priority int8
Source string
Text string
}
// Logs from ServerCodeLog packet.
type Logs struct {
Time ColDateTime
TimeMicro ColUInt32
HostName ColStr
QueryID ColStr
ThreadID ColUInt64
Priority ColInt8
Source ColStr
Text ColStr
}
func (s *Logs) Result() Results {
return Results{
{Name: "event_time", Data: &s.Time},
{Name: "event_time_microseconds", Data: &s.TimeMicro},
{Name: "host_name", Data: &s.HostName},
{Name: "query_id", Data: &s.QueryID},
{Name: "thread_id", Data: &s.ThreadID},
{Name: "priority", Data: &s.Priority},
{Name: "source", Data: &s.Source},
{Name: "text", Data: &s.Text},
}
}
func (s Logs) All() []Log {
var out []Log
for i := 0; i < s.Source.Rows(); i++ {
out = append(out, Log{
Time: s.Time.Row(i),
Host: s.HostName.Row(i),
QueryID: s.QueryID.Row(i),
ThreadID: s.ThreadID[i],
Priority: s.Priority[i],
Source: s.Source.Row(i),
Text: s.Text.Row(i),
})
}
return out
}
|