mirror of
https://github.com/prometheus-community/windows_exporter.git
synced 2026-02-08 05:56:37 +00:00
Fix typo "Labelled"
Signed-off-by: Simon Legner <Simon.Legner@gmail.com>
This commit is contained in:
@@ -17,7 +17,7 @@ None
|
|||||||
|
|
||||||
Name | Description | Type | Labels
|
Name | Description | Type | Labels
|
||||||
-----|-------------|------|-------
|
-----|-------------|------|-------
|
||||||
`windows_cpu_info` | Labeled CPU information | gauge | `architecture`, `device_id`, `description`, `family`, `l2_cache_size` `l3_cache_size`, `name`
|
`windows_cpu_info` | Labelled CPU information | gauge | `architecture`, `device_id`, `description`, `family`, `l2_cache_size` `l3_cache_size`, `name`
|
||||||
|
|
||||||
### Example metric
|
### Example metric
|
||||||
```
|
```
|
||||||
|
|||||||
@@ -18,7 +18,7 @@ Name | Description | Type | Labels
|
|||||||
-----|-------------|------|-------
|
-----|-------------|------|-------
|
||||||
`windows_cs_logical_processors` | Number of installed logical processors | gauge | None
|
`windows_cs_logical_processors` | Number of installed logical processors | gauge | None
|
||||||
`windows_cs_physical_memory_bytes` | Total installed physical memory | gauge | None
|
`windows_cs_physical_memory_bytes` | Total installed physical memory | gauge | None
|
||||||
`windows_cs_hostname` | Labeled system hostname information | gauge | `hostname`, `domain`, `fqdn`
|
`windows_cs_hostname` | Labelled system hostname information | gauge | `hostname`, `domain`, `fqdn`
|
||||||
|
|
||||||
### Example metric
|
### Example metric
|
||||||
_This collector does not yet have explained examples, we would appreciate your help adding them!_
|
_This collector does not yet have explained examples, we would appreciate your help adding them!_
|
||||||
|
|||||||
@@ -57,7 +57,7 @@ func (c *collector) GetPerfCounter() ([]string, error) {
|
|||||||
func (c *collector) Build() error {
|
func (c *collector) Build() error {
|
||||||
c.CpuInfo = prometheus.NewDesc(
|
c.CpuInfo = prometheus.NewDesc(
|
||||||
prometheus.BuildFQName(types.Namespace, "", Name),
|
prometheus.BuildFQName(types.Namespace, "", Name),
|
||||||
"Labeled CPU information as provided provided by Win32_Processor",
|
"Labelled CPU information as provided provided by Win32_Processor",
|
||||||
[]string{
|
[]string{
|
||||||
"architecture",
|
"architecture",
|
||||||
"device_id",
|
"device_id",
|
||||||
|
|||||||
@@ -63,7 +63,7 @@ func (c *collector) Build() error {
|
|||||||
)
|
)
|
||||||
c.Hostname = prometheus.NewDesc(
|
c.Hostname = prometheus.NewDesc(
|
||||||
prometheus.BuildFQName(types.Namespace, Name, "hostname"),
|
prometheus.BuildFQName(types.Namespace, Name, "hostname"),
|
||||||
"Labeled system hostname information as provided by ComputerSystem.DNSHostName and ComputerSystem.Domain",
|
"Labelled system hostname information as provided by ComputerSystem.DNSHostName and ComputerSystem.Domain",
|
||||||
[]string{
|
[]string{
|
||||||
"hostname",
|
"hostname",
|
||||||
"domain",
|
"domain",
|
||||||
|
|||||||
@@ -27,7 +27,7 @@ test_alpha_total 42
|
|||||||
# TYPE windows_cpu_processor_rtc_total counter
|
# TYPE windows_cpu_processor_rtc_total counter
|
||||||
# HELP windows_cpu_processor_utility_total Processor Utility represents is the amount of time the core spends executing instructions
|
# HELP windows_cpu_processor_utility_total Processor Utility represents is the amount of time the core spends executing instructions
|
||||||
# TYPE windows_cpu_processor_utility_total counter
|
# TYPE windows_cpu_processor_utility_total counter
|
||||||
# HELP windows_cs_hostname Labeled system hostname information as provided by ComputerSystem.DNSHostName and ComputerSystem.Domain
|
# HELP windows_cs_hostname Labelled system hostname information as provided by ComputerSystem.DNSHostName and ComputerSystem.Domain
|
||||||
# TYPE windows_cs_hostname gauge
|
# TYPE windows_cs_hostname gauge
|
||||||
# HELP windows_cs_logical_processors ComputerSystem.NumberOfLogicalProcessors
|
# HELP windows_cs_logical_processors ComputerSystem.NumberOfLogicalProcessors
|
||||||
# TYPE windows_cs_logical_processors gauge
|
# TYPE windows_cs_logical_processors gauge
|
||||||
|
|||||||
Reference in New Issue
Block a user