Documentation
¶
Overview ¶
Windows performance counters. (MANY THINGS ARE BROKEN)
Index ¶
- Constants
- func PdhAddCounter(query PDH_HQUERY, fullpath *uint16, userdata uint32, counter *PDH_HCOUNTER) (pdherr error)
- func PdhCloseQuery(query PDH_HQUERY) (pdherr error)
- func PdhCollectQueryData(query PDH_HQUERY) (pdherr error)
- func PdhGetFormattedCounterArray(counter PDH_HCOUNTER, format uint32, bufsize *uint32, bufcnt *uint32, ...) (pdherr error)
- func PdhGetFormattedCounterValue(counter PDH_HCOUNTER, format uint32, ctype *uint32, ...) (pdherr error)
- func PdhGetRawCounterValue(counter PDH_HCOUNTER, ctype *uint32, value *PDH_RAW_COUNTER) (pdherr error)
- func PdhOpenQuery(datasrc *uint16, userdata uint32, query *PDH_HQUERY) (pdherr error)
- func PdhRemoveCounter(counter PDH_HCOUNTER) (pdherr error)
- type Counter
- type Errno
- type FmtArray
- type PDH_FMT_COUNTERVALUE
- type PDH_FMT_COUNTERVALUE_ITEM
- type PDH_HCOUNTER
- type PDH_HQUERY
- type PDH_RAW_COUNTER
- type Query
Constants ¶
View Source
const ( PDH_MORE_DATA = Errno(0x800007d2) PDH_INVALID_DATA = Errno(0xC0000BC6) )
View Source
const ( // Determines the data type of the formatted value. // Specify one of the following values. PDH_FMT_DOUBLE = 0x00000200 // Return data as a double-precision floating point real. PDH_FMT_LARGE = 0x00000400 // Return data as a 64-bit integer. PDH_FMT_LONG = 0x00000100 // Return data as a long integer. // You can use the bitwise inclusive OR operator to combine // the data type with one of the following scaling factors. PDH_FMT_NOSCALE = 0x00001000 // Do not apply the counter's default scaling factor. PDH_FMT_NOCAP100 = 0x00008000 // Counter values greater than 100 (for example, counter values measuring the processor load on multiprocessor computers) will not be reset to 100. The default behavior is that counter values are capped at a value of 100. PDH_FMT_1000 = 0x00002000 // Multiply the actual value by 1,000. )
Variables ¶
This section is empty.
Functions ¶
func PdhAddCounter ¶
func PdhAddCounter(query PDH_HQUERY, fullpath *uint16, userdata uint32, counter *PDH_HCOUNTER) (pdherr error)
func PdhCloseQuery ¶
func PdhCloseQuery(query PDH_HQUERY) (pdherr error)
func PdhCollectQueryData ¶
func PdhCollectQueryData(query PDH_HQUERY) (pdherr error)
func PdhGetFormattedCounterArray ¶
func PdhGetFormattedCounterArray(counter PDH_HCOUNTER, format uint32, bufsize *uint32, bufcnt *uint32, item *PDH_FMT_COUNTERVALUE_ITEM) (pdherr error)
func PdhGetFormattedCounterValue ¶
func PdhGetFormattedCounterValue(counter PDH_HCOUNTER, format uint32, ctype *uint32, value *PDH_FMT_COUNTERVALUE) (pdherr error)
func PdhGetRawCounterValue ¶
func PdhGetRawCounterValue(counter PDH_HCOUNTER, ctype *uint32, value *PDH_RAW_COUNTER) (pdherr error)
func PdhOpenQuery ¶
func PdhOpenQuery(datasrc *uint16, userdata uint32, query *PDH_HQUERY) (pdherr error)
func PdhRemoveCounter ¶
func PdhRemoveCounter(counter PDH_HCOUNTER) (pdherr error)
Types ¶
type Counter ¶
type Counter struct {
Handle PDH_HCOUNTER
}
Performance counter.
func (*Counter) GetFmtValue ¶
func (c *Counter) GetFmtValue(format uint32) (uint32, *PDH_FMT_COUNTERVALUE, error)
func (*Counter) GetRawValue ¶
func (c *Counter) GetRawValue() (uint32, *PDH_RAW_COUNTER, error)
type FmtArray ¶
type FmtArray struct { Items []PDH_FMT_COUNTERVALUE_ITEM // contains filtered or unexported fields }
FmtArray.
type PDH_FMT_COUNTERVALUE ¶
type PDH_FMT_COUNTERVALUE_ITEM ¶
type PDH_FMT_COUNTERVALUE_ITEM struct { Name *uint16 FmtValue PDH_FMT_COUNTERVALUE }
func (*PDH_FMT_COUNTERVALUE_ITEM) NameString ¶
func (i *PDH_FMT_COUNTERVALUE_ITEM) NameString() string
type PDH_HCOUNTER ¶
type PDH_HQUERY ¶
type PDH_RAW_COUNTER ¶
type PDH_RAW_COUNTER struct { CStatus uint32 TimeStamp syscall.Filetime FirstValue int64 SecondValue int64 MultiCount uint32 // contains filtered or unexported fields }
func (*PDH_RAW_COUNTER) Time ¶
func (c *PDH_RAW_COUNTER) Time() time.Time
type Query ¶
type Query struct {
Handle PDH_HQUERY
}
Performance query.
func OpenQuery ¶
OpenQuery creates a new query that is used to manage the collection of performance data.
func (*Query) AddCounter ¶
AddCounter adds the specified counter to the query q.
func (*Query) Close ¶
Close closes all counters contained in the query q, closes all handles related to the query, and frees all memory associated with the query.
func (*Query) CollectData ¶
CollectData collects the current raw data value for all counters in the query q and updates the status code of each counter.
Click to show internal directories.
Click to hide internal directories.