2023-04-02 22:49:45 +03:00
|
|
|
// Package lga ("log attribute") holds constants for log attribute
|
|
|
|
// names.
|
|
|
|
package lga
|
|
|
|
|
|
|
|
const (
|
|
|
|
Alt = "alt"
|
|
|
|
Cmd = "cmd"
|
|
|
|
Col = "column"
|
|
|
|
Count = "count"
|
|
|
|
Commit = "commit"
|
|
|
|
Cleanup = "cleanup"
|
|
|
|
DB = "db"
|
|
|
|
DBType = "db_type"
|
|
|
|
Driver = "driver"
|
|
|
|
DefaultTo = "default_to"
|
|
|
|
Elapsed = "elapsed"
|
2023-05-05 17:32:50 +03:00
|
|
|
Env = "env"
|
2023-04-02 22:49:45 +03:00
|
|
|
Err = "error"
|
|
|
|
From = "from"
|
2023-05-05 17:32:50 +03:00
|
|
|
Flag = "flag"
|
2023-04-02 22:49:45 +03:00
|
|
|
Handle = "handle"
|
2023-04-10 04:29:13 +03:00
|
|
|
Index = "index"
|
2023-04-02 22:49:45 +03:00
|
|
|
Key = "key"
|
|
|
|
Kind = "kind"
|
|
|
|
Loc = "loc"
|
|
|
|
Opts = "opts"
|
|
|
|
Path = "path"
|
2023-05-03 15:36:10 +03:00
|
|
|
Pid = "pid"
|
2023-04-02 22:49:45 +03:00
|
|
|
Query = "query"
|
|
|
|
SLQ = "slq"
|
|
|
|
SQL = "sql"
|
|
|
|
Src = "src"
|
|
|
|
ScanType = "scan_type"
|
2023-05-24 03:42:36 +03:00
|
|
|
Schema = "schema"
|
2023-04-02 22:49:45 +03:00
|
|
|
Table = "table"
|
|
|
|
Target = "target"
|
|
|
|
To = "to"
|
|
|
|
Type = "type"
|
|
|
|
Line = "line"
|
2023-06-13 19:06:18 +03:00
|
|
|
URL = "url"
|
2023-04-02 22:49:45 +03:00
|
|
|
Val = "value"
|
2023-04-26 18:16:42 +03:00
|
|
|
Via = "via"
|
2023-04-02 22:49:45 +03:00
|
|
|
Version = "version"
|
|
|
|
Timestamp = "timestamp"
|
|
|
|
Text = "text"
|
|
|
|
)
|