示例#1
0
func DowntimeID(c *lvst.Command, i int) {
	c.Arg(i)
}
示例#2
0
func Comment(c *lvst.Command, s string) {
	c.Arg(s)
}
示例#3
0
func End(c *lvst.Command, t time.Time) {
	c.Arg(t.Unix())
}
示例#4
0
func Fixed(c *lvst.Command, b bool) {
	c.Arg(normalBool(b).String())
}
示例#5
0
func Delete(c *lvst.Command, b bool) {
	c.Arg(normalBool(b).String())
}
示例#6
0
func ContactGroupName(c *lvst.Command, s string) {
	c.Arg(s)
}
示例#7
0
func Sticky(c *lvst.Command, b bool) {
	c.Arg(stickyBool(b).String())
}
示例#8
0
func NotificationNumber(c *lvst.Command, i int) {
	c.Arg(i)
}
示例#9
0
func VarName(c *lvst.Command, s string) {
	c.Arg(s)
}
示例#10
0
func StatusCode(c *lvst.Command, i int) {
	c.Arg(i)
}
示例#11
0
func ReturnCode(c *lvst.Command, i int) {
	c.Arg(i)
}
示例#12
0
func CheckAttempts(c *lvst.Command, i int) {
	c.Arg(i)
}
示例#13
0
func Options(c *lvst.Command, i int) {
	c.Arg(i)
}
示例#14
0
func CommentID(c *lvst.Command, i int) {
	c.Arg(i)
}
示例#15
0
func HostGroupName(c *lvst.Command, s string) {
	c.Arg(s)
}
示例#16
0
func VarValue(c *lvst.Command, s string) {
	c.Arg(s)
}
示例#17
0
func ServiceGroupName(c *lvst.Command, s string) {
	c.Arg(s)
}
示例#18
0
func EventHandlerCommand(c *lvst.Command, s string) {
	c.Arg(s)
}
示例#19
0
func ServiceDescription(c *lvst.Command, s string) {
	c.Arg(s)
}
示例#20
0
func CheckCommand(c *lvst.Command, s string) {
	c.Arg(s)
}
示例#21
0
func Notify(c *lvst.Command, b bool) {
	c.Arg(normalBool(b).String())
}
示例#22
0
func CheckTimePeriod(c *lvst.Command, s string) {
	c.Arg(s)
}
示例#23
0
func Persistent(c *lvst.Command, b bool) {
	c.Arg(normalBool(b).String())
}
示例#24
0
func FileName(c *lvst.Command, s string) {
	c.Arg(s)
}
示例#25
0
func Author(c *lvst.Command, s string) {
	c.Arg(s)
}
示例#26
0
func PluginOutput(c *lvst.Command, s string) {
	c.Arg(s)
}
示例#27
0
func Start(c *lvst.Command, t time.Time) {
	c.Arg(t.Unix())
}
示例#28
0
func Hostname(c *lvst.Command, s string) {
	c.Arg(s)
}
示例#29
0
func CheckTime(c *lvst.Command, t time.Time) {
	c.Arg(t.Unix())
}
示例#30
0
func TriggerID(c *lvst.Command, i int) {
	c.Arg(i)
}