SDK
SDK Golang v1.x
1

You are currently looking at the documentation of a previous version of Kuzzle. We strongly recommend that you use the latest version. You can also use the version selector in the top menu.

GetAllStats #

Gets all stored internal statistic snapshots. By default, snapshots are made every 10 seconds and they are stored for 1 hour.

These statistics include:

  • the number of connected users per protocol (not available for all protocols)
  • the number of ongoing requests
  • the number of completed requests since the last frame
  • the number of failed requests since the last frame

Arguments #

Copied to clipboard!
func (s *Server) GetAllStats(options types.QueryOptions) (json.RawMessage, error)
Arguments Type Description
options
types.QueryOptions
An object containing query options.

Options #

Additional query options

Option Type Description Default
Queuable
bool
If true, queues the request during downtime, until connected to Kuzzle again true

Return #

Returns all stored internal statistic snapshots as a json.RawMessage or a KuzzleError. See how to handle error.

Usage #

Copied to clipboard!
as, err := kuzzle.Server.GetAllStats(nil)
if err != nil {
  log.Fatal(err)
} else {
  fmt.Println("All Kuzzle Stats as JSON string:", string(as))
}