// Copyright (C) MongoDB, Inc. 2014-present. // // Licensed under the Apache License, Version 2.0 (the "License"); you may // not use this file except in compliance with the License. You may obtain // a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 package mongostat var Usage = ` Monitor basic MongoDB server statistics. See http://docs.mongodb.org/manual/reference/program/mongostat/ for more information.` // StatOptions defines the set of options to use for configuring mongostat. type StatOptions struct { Columns string `short:"o" value-name:"[,]*" description:"fields to show. For custom fields, use dot-syntax to index into serverStatus output, and optional methods .diff() and .rate() e.g. metrics.record.moves.diff()"` AppendColumns string `short:"O" value-name:"[,]*" description:"like -o, but preloaded with default fields. Specified fields inserted after default output"` HumanReadable string `long:"humanReadable" default:"true" description:"print sizes and time in human readable format (e.g. 1K 234M 2G). To use the more precise machine readable format, use --humanReadable=false"` NoHeaders bool `long:"noheaders" description:"don't output column names"` RowCount int64 `long:"rowcount" value-name:"" short:"n" description:"number of stats lines to print (0 for indefinite)"` Discover bool `long:"discover" description:"discover nodes and display stats for all"` Http bool `long:"http" description:"use HTTP instead of raw db connection"` All bool `long:"all" description:"all optional fields"` Json bool `long:"json" description:"output as JSON rather than a formatted table"` Deprecated bool `long:"useDeprecatedJsonKeys" description:"use old key names; only valid with the json output option."` Interactive bool `short:"i" long:"interactive" description:"display stats in a non-scrolling interface"` } // Name returns a human-readable group name for mongostat options. func (*StatOptions) Name() string { return "stat" }