Browse Source

Add a humanizeTimestamp to prom.lib.

pull/1174/head
Kevin Lyda 9 years ago
parent
commit
02960343bb
  1. 1
      console_libraries/prom.lib

1
console_libraries/prom.lib

@ -30,6 +30,7 @@
{{ define "humanizeNoSmallPrefix" }}{{ if and (lt . 1.0) (gt . -1.0) }}{{ printf "%.3g" . }}{{ else }}{{ humanize . }}{{ end }}{{ end }}
{{ define "humanize1024" }}{{ humanize1024 . }}{{ end }}
{{ define "humanizeDuration" }}{{ humanizeDuration . }}{{ end }}
{{ define "humanizeTimestamp" }}{{ humanizeTimestamp . }}{{ end }}
{{ define "printf.1f" }}{{ printf "%.1f" . }}{{ end }}
{{ define "printf.3g" }}{{ printf "%.3g" . }}{{ end }}

Loading…
Cancel
Save