mirror of
https://github.com/prometheus-community/windows_exporter.git
synced 2026-09-01 19:51:26 +02:00
chore(deps): update dependency golangci/golangci-lint to v2.13.1 (master) (#2477)
Co-authored-by: Jan-Otto Kröpke <mail@jkroepke.de> Signed-off-by: Jan-Otto Kröpke <mail@jkroepke.de>
This commit is contained in:
@@ -304,7 +304,7 @@ func deduplicateIISNames[T collectorName](counterValues []T) {
|
||||
|
||||
// Use map to deduplicate IIS entries
|
||||
for index, counterValue := range counterValues {
|
||||
name := strings.Split(counterValue.GetName(), "#")[0]
|
||||
name, _, _ := strings.Cut(counterValue.GetName(), "#")
|
||||
if name == counterValue.GetName() {
|
||||
continue
|
||||
}
|
||||
|
||||
@@ -328,7 +328,7 @@ func (c *Collector) collectObject(ch chan<- prometheus.Metric, perfDataObject Ob
|
||||
continue
|
||||
}
|
||||
|
||||
metricType, _ := field.Interface().(prometheus.ValueType)
|
||||
metricType, _ := reflect.TypeAssert[prometheus.ValueType](field)
|
||||
|
||||
labels := make(prometheus.Labels, len(counter.Labels)+1)
|
||||
|
||||
|
||||
@@ -265,7 +265,7 @@ func (c *Collector) groupPrintJobs(printJobs []wmiPrintJob) map[PrintJobStatusGr
|
||||
groupedPrintJobs := make(map[PrintJobStatusGroup]int)
|
||||
|
||||
for _, printJob := range printJobs {
|
||||
printerName := strings.Split(printJob.Name, ",")[0]
|
||||
printerName, _, _ := strings.Cut(printJob.Name, ",")
|
||||
|
||||
if c.config.PrinterExclude.MatchString(printerName) ||
|
||||
!c.config.PrinterInclude.MatchString(printerName) {
|
||||
|
||||
@@ -69,7 +69,7 @@ func GetDHCPV4ScopeStatistics() ([]DHCPV4Scope, error) {
|
||||
var errs []error
|
||||
|
||||
for _, subnet := range subnets {
|
||||
if err := (func() error {
|
||||
if err := func() error {
|
||||
var subnetInfo *DHCP_SUBNET_INFO
|
||||
|
||||
err := dhcpGetSubnetInfo(subnet.SubnetAddress, &subnetInfo)
|
||||
@@ -129,7 +129,7 @@ func GetDHCPV4ScopeStatistics() ([]DHCPV4Scope, error) {
|
||||
scopes = append(scopes, scope)
|
||||
|
||||
return nil
|
||||
})(); err != nil {
|
||||
}(); err != nil {
|
||||
errs = append(errs, err)
|
||||
}
|
||||
}
|
||||
|
||||
@@ -52,7 +52,7 @@ var (
|
||||
func GetPerformanceInfo() (PerformanceInformation, error) {
|
||||
var lppi PerformanceInformation
|
||||
|
||||
size := (uint32)(unsafe.Sizeof(lppi))
|
||||
size := uint32(unsafe.Sizeof(lppi))
|
||||
lppi.cb = size
|
||||
r1, _, err := procGetPerformanceInfo.Call(uintptr(unsafe.Pointer(&lppi)), uintptr(size))
|
||||
|
||||
|
||||
@@ -128,7 +128,7 @@ var (
|
||||
func GlobalMemoryStatusEx() (MemoryStatus, error) {
|
||||
var mse memoryStatusEx
|
||||
|
||||
mse.dwLength = (uint32)(unsafe.Sizeof(mse))
|
||||
mse.dwLength = uint32(unsafe.Sizeof(mse))
|
||||
r1, _, err := procGlobalMemoryStatusEx.Call(uintptr(unsafe.Pointer(&mse)))
|
||||
|
||||
if ret := *(*bool)(unsafe.Pointer(&r1)); !ret {
|
||||
|
||||
@@ -35,8 +35,7 @@ func (m *Error) Is(err error) bool {
|
||||
return false
|
||||
}
|
||||
|
||||
var e *Error
|
||||
if errors.As(err, &e) {
|
||||
if e, ok := errors.AsType[*Error](err); ok {
|
||||
return m.ErrorCode == e.ErrorCode
|
||||
}
|
||||
|
||||
|
||||
@@ -254,8 +254,7 @@ func queryRawData(query string) ([]byte, error) {
|
||||
|
||||
continue
|
||||
case err != nil:
|
||||
var errNo windows.Errno
|
||||
if errors.As(err, &errNo) {
|
||||
if errNo, ok := errors.AsType[windows.Errno](err); ok {
|
||||
return nil, fmt.Errorf("ReqQueryValueEx failed: %w errno %d", err, uint(errNo))
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user