Cloudwatch agent

0

Hey, I have a query about cloudwatch agent metrics for windows server ,below are the metrics available for windows server .

Processor % Idle Time,

Processor % Interrupt Time ,

Processor % User Time ,

PhysicalDisk % Disk Time ,

PhysicalDisk Disk Write Bytes/sec ,

PhysicalDisk Disk Read Bytes/sec ,

PhysicalDisk Disk Writes/sec ,

PhysicalDisk Disk Reads/sec ,

Paging File % Usage ,

LogicalDisk % Free Space ,

Memory % Committed Bytes In Use ,

TCPv4 Connections Established ,

TCPv6 Connections Established ,


But how can get the below metrics for windows server ?

--mem-util --mem-used --mem-avail

--disk-space-util --disk-space-used --disk-space-avail

asked 2 years ago391 views
1 Answer
0

Hello,

Here is a json snipit of the memory options for windows.

    },
      "Memory": {
        "metrics_collection_interval": 5,
        "measurement": [
          "Available Bytes",
          "Cache Faults/sec",
          "Page Faults/sec",
          "Pages/sec"
        ],
        "append_dimensions": {
          "d3": "win_bo"
        }
      },

You can also use windows performance counters to expose any other metrics in windows you would like to have. Here is some more information about collecting windows performance counter data.

answered a year ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions