Le package Journal permet d'écrire les journaux d'une application et de les interroger à partir d'une application App Engine.
Exemple :
c := appengine.NewContext(r) query := &log.Query{ AppLogs: true, Versions: []string{"1"}, } for results := query.Run(c); ; { record, err := results.Next() if err == log.Done { log.Infof(c, "Done processing results") break } if err != nil { log.Errorf(c, "Failed to retrieve next log: %v", err) break } log.Infof(c, "Saw record %v", record) }
Variables
OK
La valeur Done est renvoyée lorsque l'itération d'une requête est terminée.
Fonctions
func Criticalf
La fonction Criticalf se comporte de manière identique à la fonction Debugf, mais au niveau critique.
func Debugf
La fonction Debugf formate ses arguments en fonction du format. Elle se comporte de manière analogue à la fonction fmt.Printf et enregistre le texte sous forme de message de journal au niveau du débogage. Le message est associé à la requête liée au contexte fourni.
func Errorf
La fonction Errorf se comporte de manière identique à la fonction Debugf, mais au niveau de l'erreur.
func Infof
La fonction Infof se comporte de manière identique à la fonction Debugf, mais au niveau des informations.
func Warningf
La fonction Warningf se comporte de manière identique à la fonction Debugf, mais au niveau de l'alerte.
AppLog
Le type AppLog représente un seul journal au niveau de l'application.
Requête
type Query struct {
// Start time specifies the earliest log to return (inclusive).
StartTime time.Time
// End time specifies the latest log to return (exclusive).
EndTime time.Time
// Offset specifies a position within the log stream to resume reading from,
// and should come from a previously returned Record's field of the same name.
Offset []byte
// Incomplete controls whether active (incomplete) requests should be included.
Incomplete bool
// AppLogs indicates if application-level logs should be included.
AppLogs bool
// ApplyMinLevel indicates if MinLevel should be used to filter results.
ApplyMinLevel bool
// If ApplyMinLevel is true, only logs for requests with at least one
// application log of MinLevel or higher will be returned.
MinLevel int
// Versions is the major version IDs whose logs should be retrieved.
// Logs for specific modules can be retrieved by the specifying versions
// in the form "module:version"; the default module is used if no module
// is specified.
Versions []string
// A list of requests to search for instead of a time-based scan. Cannot be
// combined with filtering options such as StartTime, EndTime, Offset,
// Incomplete, ApplyMinLevel, or Versions.
RequestIDs []string
}
Le type Query définit une requête de journaux.
func (*Query) Run
La fonction Run lance une requête d'enregistrements de journal contenant des données journalisées au niveau des requêtes et de l'application.
Enregistrer
type Record struct {
AppID string
ModuleID string
VersionID string
RequestID []byte
IP string
Nickname string
AppEngineRelease string
// The time when this request started.
StartTime time.Time
// The time when this request finished.
EndTime time.Time
// Opaque cursor into the result stream.
Offset []byte
// The time required to process the request.
Latency time.Duration
MCycles int64
Method string
Resource string
HTTPVersion string
Status int32
// The size of the request sent back to the client, in bytes.
ResponseSize int64
Referrer string
UserAgent string
URLMapEntry string
Combined string
Host string
// The estimated cost of this request, in dollars.
Cost float64
TaskQueueName string
TaskName string
WasLoadingRequest bool
PendingTime time.Duration
Finished bool
AppLogs []AppLog
// Mostly-unique identifier for the instance that handled the request if available.
InstanceID string
}
Le type Record contient toutes les informations d'une seule requête Web.
Résultat
type Result struct {
// contains filtered or unexported fields
}
Le type Result représente le résultat d'une requête.
func (*Result) Next
La fonction Next affiche le prochain enregistrement de journal.