2023-04-02 22:49:45 +03:00
|
|
|
// Package lga ("log attribute") holds constants for log attribute
|
|
|
|
// names.
|
|
|
|
package lga
|
|
|
|
|
|
|
|
const (
|
2024-01-15 04:45:34 +03:00
|
|
|
Action = "action"
|
2023-11-19 03:05:48 +03:00
|
|
|
After = "after"
|
2023-04-02 22:49:45 +03:00
|
|
|
Alt = "alt"
|
2024-01-15 04:45:34 +03:00
|
|
|
Attempts = "attempts"
|
2023-11-19 03:05:48 +03:00
|
|
|
Before = "before"
|
|
|
|
Catalog = "catalog"
|
2023-04-02 22:49:45 +03:00
|
|
|
Cmd = "cmd"
|
|
|
|
Col = "column"
|
|
|
|
Count = "count"
|
|
|
|
Commit = "commit"
|
2023-11-19 03:05:48 +03:00
|
|
|
Conn = "conn"
|
2024-01-15 04:45:34 +03:00
|
|
|
Copied = "copied"
|
2023-04-02 22:49:45 +03:00
|
|
|
Cleanup = "cleanup"
|
|
|
|
DB = "db"
|
|
|
|
DBType = "db_type"
|
2024-01-15 04:45:34 +03:00
|
|
|
Dest = "dest"
|
|
|
|
Dir = "dir"
|
2023-04-02 22:49:45 +03:00
|
|
|
Driver = "driver"
|
2024-01-15 04:45:34 +03:00
|
|
|
Default = "default"
|
2023-04-02 22:49:45 +03:00
|
|
|
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"
|
2023-08-16 18:09:50 +03:00
|
|
|
Expected = "expected"
|
2024-01-15 04:45:34 +03:00
|
|
|
File = "file"
|
2023-04-02 22:49:45 +03:00
|
|
|
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"
|
2024-01-15 04:45:34 +03:00
|
|
|
Lock = "lock"
|
|
|
|
Method = "method"
|
|
|
|
Name = "name"
|
2023-11-19 03:05:48 +03:00
|
|
|
New = "new"
|
|
|
|
Old = "old"
|
2024-01-25 07:01:24 +03:00
|
|
|
Opt = "opt"
|
2023-04-02 22:49:45 +03:00
|
|
|
Opts = "opts"
|
|
|
|
Path = "path"
|
2023-05-03 15:36:10 +03:00
|
|
|
Pid = "pid"
|
2023-04-02 22:49:45 +03:00
|
|
|
Query = "query"
|
2024-01-15 04:45:34 +03:00
|
|
|
Resp = "resp"
|
|
|
|
Score = "score"
|
2023-12-06 23:53:24 +03:00
|
|
|
Size = "size"
|
2023-04-02 22:49:45 +03:00
|
|
|
SLQ = "slq"
|
|
|
|
SQL = "sql"
|
|
|
|
Src = "src"
|
|
|
|
ScanType = "scan_type"
|
2024-01-15 04:45:34 +03:00
|
|
|
Stack = "stack"
|
2023-05-24 03:42:36 +03:00
|
|
|
Schema = "schema"
|
2024-01-27 01:18:38 +03:00
|
|
|
Status = "status"
|
2023-04-02 22:49:45 +03:00
|
|
|
Table = "table"
|
|
|
|
Target = "target"
|
2024-01-15 04:45:34 +03:00
|
|
|
Timeout = "timeout"
|
2023-04-02 22:49:45 +03:00
|
|
|
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"
|
2024-01-15 04:45:34 +03:00
|
|
|
Written = "written"
|
2023-04-02 22:49:45 +03:00
|
|
|
Text = "text"
|
|
|
|
)
|