Merge pull request #1174 from lyda/humanizeTimestamp

Add a humanizeTimestamp to prom.lib.
This commit is contained in:
Brian Brazil 2015-10-22 14:13:18 +01:00
commit 2a1d7ca33f
1 changed files with 1 additions and 0 deletions

View File

@ -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 }}