mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
24 lines
561 B
MySQL
24 lines
561 B
MySQL
|
|
INSERT INTO {{ .Ident "resource" }}
|
||
|
|
|
||
|
|
(
|
||
|
|
{{ .Ident "guid" }},
|
||
|
|
{{ .Ident "group" }},
|
||
|
|
{{ .Ident "resource" }},
|
||
|
|
{{ .Ident "namespace" }},
|
||
|
|
{{ .Ident "name" }},
|
||
|
|
|
||
|
|
{{ .Ident "value" }},
|
||
|
|
{{ .Ident "action" }}
|
||
|
|
)
|
||
|
|
VALUES (
|
||
|
|
{{ .Arg .GUID }},
|
||
|
|
{{ .Arg .WriteEvent.Key.Group }},
|
||
|
|
{{ .Arg .WriteEvent.Key.Resource }},
|
||
|
|
{{ .Arg .WriteEvent.Key.Namespace }},
|
||
|
|
{{ .Arg .WriteEvent.Key.Name }},
|
||
|
|
|
||
|
|
{{ .Arg .WriteEvent.Value }},
|
||
|
|
{{ .Arg .WriteEvent.Type }}
|
||
|
|
)
|
||
|
|
;
|