mirror of
https://github.com/prometheus-community/windows_exporter.git
synced 2025-04-18 19:24:05 +03:00
148 lines
4.2 KiB
Go
148 lines
4.2 KiB
Go
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
// Copyright 2025 The Prometheus 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.
|
|
|
|
//go:build windows
|
|
|
|
package mscluster
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/prometheus-community/windows_exporter/internal/mi"
|
|
"github.com/prometheus-community/windows_exporter/internal/types"
|
|
"github.com/prometheus/client_golang/prometheus"
|
|
)
|
|
|
|
const nameNetwork = Name + "_network"
|
|
|
|
type collectorNetwork struct {
|
|
networkMIQuery mi.Query
|
|
|
|
networkCharacteristics *prometheus.Desc
|
|
networkFlags *prometheus.Desc
|
|
networkMetric *prometheus.Desc
|
|
networkRole *prometheus.Desc
|
|
networkState *prometheus.Desc
|
|
}
|
|
|
|
// msClusterNetwork represents the MSCluster_Network WMI class
|
|
// - https://docs.microsoft.com/en-us/previous-versions/windows/desktop/cluswmi/mscluster-network
|
|
type msClusterNetwork struct {
|
|
Name string `mi:"Name"`
|
|
|
|
Characteristics uint `mi:"Characteristics"`
|
|
Flags uint `mi:"Flags"`
|
|
Metric uint `mi:"Metric"`
|
|
Role uint `mi:"Role"`
|
|
State uint `mi:"State"`
|
|
}
|
|
|
|
func (c *Collector) buildNetwork() error {
|
|
networkMIQuery, err := mi.NewQuery("SELECT Characteristics,Flags,Metric,Role,State FROM MSCluster_Network")
|
|
if err != nil {
|
|
return fmt.Errorf("failed to create WMI query: %w", err)
|
|
}
|
|
|
|
c.networkMIQuery = networkMIQuery
|
|
|
|
c.networkCharacteristics = prometheus.NewDesc(
|
|
prometheus.BuildFQName(types.Namespace, nameNetwork, "characteristics"),
|
|
"Provides the characteristics of the network.",
|
|
[]string{"name"},
|
|
nil,
|
|
)
|
|
c.networkFlags = prometheus.NewDesc(
|
|
prometheus.BuildFQName(types.Namespace, nameNetwork, "flags"),
|
|
"Provides access to the flags set for the node. ",
|
|
[]string{"name"},
|
|
nil,
|
|
)
|
|
c.networkMetric = prometheus.NewDesc(
|
|
prometheus.BuildFQName(types.Namespace, nameNetwork, "metric"),
|
|
"The metric of a cluster network (networks with lower values are used first). If this value is set, then the AutoMetric property is set to false.",
|
|
[]string{"name"},
|
|
nil,
|
|
)
|
|
c.networkRole = prometheus.NewDesc(
|
|
prometheus.BuildFQName(types.Namespace, nameNetwork, "role"),
|
|
"Provides access to the network's Role property. The Role property describes the role of the network in the cluster. 0: None; 1: Cluster; 2: Client; 3: Both ",
|
|
[]string{"name"},
|
|
nil,
|
|
)
|
|
c.networkState = prometheus.NewDesc(
|
|
prometheus.BuildFQName(types.Namespace, nameNetwork, "state"),
|
|
"Provides the current state of the network. 1-1: Unknown; 0: Unavailable; 1: Down; 2: Partitioned; 3: Up",
|
|
[]string{"name"},
|
|
nil,
|
|
)
|
|
|
|
var dst []msClusterNetwork
|
|
|
|
if err := c.miSession.Query(&dst, mi.NamespaceRootMSCluster, c.networkMIQuery); err != nil {
|
|
return fmt.Errorf("WMI query failed: %w", err)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// Collect sends the metric values for each metric
|
|
// to the provided prometheus metric channel.
|
|
func (c *Collector) collectNetwork(ch chan<- prometheus.Metric) error {
|
|
var dst []msClusterNetwork
|
|
|
|
if err := c.miSession.Query(&dst, mi.NamespaceRootMSCluster, c.networkMIQuery); err != nil {
|
|
return fmt.Errorf("WMI query failed: %w", err)
|
|
}
|
|
|
|
for _, v := range dst {
|
|
ch <- prometheus.MustNewConstMetric(
|
|
c.networkCharacteristics,
|
|
prometheus.GaugeValue,
|
|
float64(v.Characteristics),
|
|
v.Name,
|
|
)
|
|
|
|
ch <- prometheus.MustNewConstMetric(
|
|
c.networkFlags,
|
|
prometheus.GaugeValue,
|
|
float64(v.Flags),
|
|
v.Name,
|
|
)
|
|
|
|
ch <- prometheus.MustNewConstMetric(
|
|
c.networkMetric,
|
|
prometheus.GaugeValue,
|
|
float64(v.Metric),
|
|
v.Name,
|
|
)
|
|
|
|
ch <- prometheus.MustNewConstMetric(
|
|
c.networkRole,
|
|
prometheus.GaugeValue,
|
|
float64(v.Role),
|
|
v.Name,
|
|
)
|
|
|
|
ch <- prometheus.MustNewConstMetric(
|
|
c.networkState,
|
|
prometheus.GaugeValue,
|
|
float64(v.State),
|
|
v.Name,
|
|
)
|
|
}
|
|
|
|
return nil
|
|
}
|