package timeutils

import "github.com/docker/docker/pkg/timeutils"

Index

Constants

const (
	// RFC3339NanoFixed is our own version of RFC339Nano because we want one
	// that pads the nano seconds part with zeros to ensure
	// the timestamps are aligned in the logs.
	RFC3339NanoFixed = "2006-01-02T15:04:05.000000000Z07:00"
	// JSONFormat is the format used by FastMarshalJSON
	JSONFormat = `"` + time.RFC3339Nano + `"`
)

Functions

func FastMarshalJSON

func FastMarshalJSON(t time.Time) (string, error)

FastMarshalJSON avoids one of the extra allocations that time.MarshalJSON is making.

func GetTimestamp

func GetTimestamp(value string) string

GetTimestamp tries to parse given string as RFC3339 time or Unix timestamp (with seconds precision), if successful returns a Unix timestamp as string otherwise returns value back.

Source Files

json.go utils.go

Version
v1.7.0-rc3
Published
Jun 12, 2015
Platform
js/wasm
Imports
4 packages
Last checked
27 seconds ago

Tools for package owners.