-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add new perfcounters package that uses perflib to replace the third_p…
…arty / pdh package
- Loading branch information
1 parent
3c32f36
commit 30e1e18
Showing
6 changed files
with
449 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
receiver/hostmetricsreceiver/internal/perfcounters/perfcounter_notwindows.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
// Copyright The OpenTelemetry Authors | ||
// | ||
// 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 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
// +build !windows | ||
|
||
package perfcounters |
184 changes: 184 additions & 0 deletions
184
receiver/hostmetricsreceiver/internal/perfcounters/perfcounter_scraper.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,184 @@ | ||
// Copyright The OpenTelemetry Authors | ||
// | ||
// 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 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
// +build windows | ||
|
||
package perfcounters | ||
|
||
import ( | ||
"fmt" | ||
"strconv" | ||
"strings" | ||
|
||
"github.com/leoluk/perflib_exporter/perflib" | ||
|
||
"go.opentelemetry.io/collector/internal/processor/filterset" | ||
) | ||
|
||
const totalInstanceName = "_Total" | ||
|
||
type PerfCounterScraper interface { | ||
Initialize(objects ...string) error | ||
Scrape() (PerfDataCollection, error) | ||
} | ||
|
||
type PerfLibScraper struct { | ||
objectIndices string | ||
} | ||
|
||
func (p *PerfLibScraper) Initialize(objects ...string) error { | ||
// "Counter 009" reads perf counter names in English. | ||
// This is always present regardless of the OS language. | ||
nameTable := perflib.QueryNameTable("Counter 009") | ||
|
||
// lookup object indices from name table | ||
objectIndicesMap := map[uint32]struct{}{} | ||
for _, name := range objects { | ||
index := nameTable.LookupIndex(name) | ||
if index == 0 { | ||
return fmt.Errorf("Failed to retrieve perf counter object %q", name) | ||
} | ||
|
||
objectIndicesMap[index] = struct{}{} | ||
} | ||
|
||
// convert to space-separated string | ||
objectIndicesSlice := make([]string, 0, len(objectIndicesMap)) | ||
for k := range objectIndicesMap { | ||
objectIndicesSlice = append(objectIndicesSlice, strconv.Itoa(int(k))) | ||
} | ||
p.objectIndices = strings.Join(objectIndicesSlice, " ") | ||
return nil | ||
} | ||
|
||
func (p *PerfLibScraper) Scrape() (PerfDataCollection, error) { | ||
objects, err := perflib.QueryPerformanceData(p.objectIndices) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
indexed := make(map[string]*perflib.PerfObject) | ||
for _, obj := range objects { | ||
indexed[obj.Name] = obj | ||
} | ||
|
||
return perfDataCollection{perfObject: indexed}, nil | ||
} | ||
|
||
type PerfDataCollection interface { | ||
GetObject(objectName string) (PerfDataObject, error) | ||
} | ||
|
||
type perfDataCollection struct { | ||
perfObject map[string]*perflib.PerfObject | ||
} | ||
|
||
func (p perfDataCollection) GetObject(objectName string) (PerfDataObject, error) { | ||
obj, ok := p.perfObject[objectName] | ||
if !ok { | ||
return nil, fmt.Errorf("Unable to find object %q", objectName) | ||
} | ||
|
||
return perfDataObject{obj}, nil | ||
} | ||
|
||
type PerfDataObject interface { | ||
Filter(includeFS, excludeFS filterset.FilterSet, includeTotal bool) | ||
GetValues(counterNames ...string) ([]*CounterValues, error) | ||
} | ||
|
||
type perfDataObject struct { | ||
*perflib.PerfObject | ||
} | ||
|
||
func (obj perfDataObject) Filter(includeFS, excludeFS filterset.FilterSet, includeTotal bool) { | ||
if includeFS == nil && excludeFS == nil && includeTotal { | ||
return | ||
} | ||
|
||
filteredDevices := make([]*perflib.PerfInstance, 0, len(obj.Instances)) | ||
for _, device := range obj.Instances { | ||
if includeDevice(device.Name, includeFS, excludeFS, includeTotal) { | ||
filteredDevices = append(filteredDevices, device) | ||
} | ||
} | ||
obj.Instances = filteredDevices | ||
} | ||
|
||
func includeDevice(deviceName string, includeFS, excludeFS filterset.FilterSet, includeTotal bool) bool { | ||
if deviceName == totalInstanceName { | ||
return includeTotal | ||
} | ||
|
||
return (includeFS == nil || includeFS.Matches(deviceName)) && | ||
(excludeFS == nil || !excludeFS.Matches(deviceName)) | ||
} | ||
|
||
type CounterValues struct { | ||
InstanceName string | ||
Values map[string]int64 | ||
} | ||
|
||
type counterIndex struct { | ||
index int | ||
name string | ||
} | ||
|
||
func (obj perfDataObject) GetValues(counterNames ...string) ([]*CounterValues, error) { | ||
counterIndices := make([]counterIndex, 0, len(counterNames)) | ||
for idx, counter := range obj.CounterDefs { | ||
// "Base" values give the value of a related counter that pdh.dll uses to compute the derived | ||
// value for this counter. We only care about raw values so ignore base values. See | ||
// https://docs.microsoft.com/en-us/windows/win32/perfctrs/retrieving-counter-data. | ||
if counter.IsBaseValue { | ||
continue | ||
} | ||
|
||
for _, counterName := range counterNames { | ||
if counter.Name == counterName { | ||
counterIndices = append(counterIndices, counterIndex{index: idx, name: counter.Name}) | ||
break | ||
} | ||
} | ||
} | ||
|
||
if len(counterIndices) < len(counterNames) { | ||
return nil, fmt.Errorf("Unable to find counters %q in object %q", missingCounterNames(counterNames, counterIndices), obj.Name) | ||
} | ||
|
||
values := make([]*CounterValues, len(obj.Instances)) | ||
for i, instance := range obj.Instances { | ||
instanceValues := &CounterValues{InstanceName: instance.Name, Values: make(map[string]int64, len(counterIndices))} | ||
for _, counter := range counterIndices { | ||
instanceValues.Values[counter.name] = instance.Counters[counter.index].Value | ||
} | ||
values[i] = instanceValues | ||
} | ||
return values, nil | ||
} | ||
|
||
func missingCounterNames(counterNames []string, counterIndices []counterIndex) []string { | ||
matchedCounters := make(map[string]struct{}, len(counterIndices)) | ||
for _, counter := range counterIndices { | ||
matchedCounters[counter.name] = struct{}{} | ||
} | ||
|
||
counters := make([]string, 0, len(counterNames)-len(matchedCounters)) | ||
for _, counter := range counterNames { | ||
if _, ok := matchedCounters[counter]; !ok { | ||
counters = append(counters, counter) | ||
} | ||
} | ||
return counters | ||
} |
70 changes: 70 additions & 0 deletions
70
receiver/hostmetricsreceiver/internal/perfcounters/perfcounter_scraper_mock.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
// Copyright The OpenTelemetry Authors | ||
// | ||
// 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 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
// +build windows | ||
|
||
package perfcounters | ||
|
||
import ( | ||
"go.opentelemetry.io/collector/internal/processor/filterset" | ||
) | ||
|
||
// MockPerfCounterScraperError returns the supplied errors when Scrape, GetObject, | ||
// or GetValues are called. | ||
|
||
type MockPerfCounterScraperError struct { | ||
scrapeErr error | ||
getObjectErr error | ||
getValuesErr error | ||
} | ||
|
||
func NewMockPerfCounterScraperError(scrapeErr, getObjectErr, getValuesErr error) *MockPerfCounterScraperError { | ||
return &MockPerfCounterScraperError{scrapeErr: scrapeErr, getObjectErr: getObjectErr, getValuesErr: getValuesErr} | ||
} | ||
|
||
func (p *MockPerfCounterScraperError) Initialize(objects ...string) error { | ||
return nil | ||
} | ||
|
||
func (p *MockPerfCounterScraperError) Scrape() (PerfDataCollection, error) { | ||
if p.scrapeErr != nil { | ||
return nil, p.scrapeErr | ||
} | ||
|
||
return mockPerfDataCollectionError{getObjectErr: p.getObjectErr, getValuesErr: p.getValuesErr}, nil | ||
} | ||
|
||
type mockPerfDataCollectionError struct { | ||
getObjectErr error | ||
getValuesErr error | ||
} | ||
|
||
func (p mockPerfDataCollectionError) GetObject(objectName string) (PerfDataObject, error) { | ||
if p.getObjectErr != nil { | ||
return nil, p.getObjectErr | ||
} | ||
|
||
return mockPerfDataObjectError{getValuesErr: p.getValuesErr}, nil | ||
} | ||
|
||
type mockPerfDataObjectError struct { | ||
getValuesErr error | ||
} | ||
|
||
func (obj mockPerfDataObjectError) Filter(includeFS, excludeFS filterset.FilterSet, includeTotal bool) { | ||
} | ||
|
||
func (obj mockPerfDataObjectError) GetValues(counterNames ...string) ([]*CounterValues, error) { | ||
return nil, obj.getValuesErr | ||
} |
Oops, something went wrong.