robotframework-perfmon
Project description
robotframework-perfmon
Robot Framework wrapper for pyperfmon, provides a simple way to collect windows performance monitor (perfmon) counter statistics from a windows machine, usually the AUT servers.
Installation
pip install robotframework-perfmon
Example Usage
Simple example usage:
*** Settings ***
Library PerfmonLibrary
*** Variables ***
${AUTServer} MyAUTServer
*** Test Cases ***
Check Memory
${mempct}= Get Counter Memory\\% Committed Bytes In Use ${AUTServer}
Should Be True ${mempct[1]} < 80
Check CPU
${cputotpct}= Get Counter Processor\\_Total\\% Processor Time ${AUTServer}
Should Be True ${cputotpct[1]} < 80
Keyword Documentation
| Keyword | Description |
|---|---|
| Connect To | Establishes a connection to a remote windows machine. The most likely reasons for using this keyword are: - You need to use different credentials to connect to the remote windows machine - You want to avoid the connection time overhead on reading the first performance counter All arguments are optional with the default values used if omitted - hostname the windows machine to connect to. Default: localhost - username the windows user to connect with, when specifying a domain you will need to escape the \ as \\. Default: current logged in user. - password the password for the specified windows user. If username no specified password is not used. Default: None example usage: Connect To hostname domnain\\username password Connect To hostname It is suggested to use this keyword in Suite setup |
| Get Counter | Get the performance monitor counter's value, the value is returned as a tuple of ('counterpath', value) counterpath argument is required, hostname argument is optional with the default value used if omitted - counterpath the path to the windows performance counter, can be in either format <object>\\<counter> or <object>\\<instance>\\<counter> - hostname the windows machine to connect to. Default: localhost |
| Get Objects | Get a list of available performance monitor counter objects All arguments are optional with the default values used if omitted - hostname the windows machine to connect to. Default: localhost |
| Get Counters | Get a list of available performance monitor counters for specified object object argument is required, hostname argument is optional with the default value used if omitted - object the object to get a list of windows performance counters for. - hostname the windows machine to connect to. Default: localhost |
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file robotframework-perfmon-0.1.tar.gz.
File metadata
- Download URL: robotframework-perfmon-0.1.tar.gz
- Upload date:
- Size: 15.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/58.1.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6b658acd486256e773a7f14d7eaf2dd920958d9e3aaa4487c1a1cdb971a141e3
|
|
| MD5 |
c8337aa2cf8dc1c34c8c446f51c7f273
|
|
| BLAKE2b-256 |
2af4cc67ad9ba7a8022d1c59ccddcdbc59a99938fa4af9aaa1de166fcfec7379
|
File details
Details for the file robotframework_perfmon-0.1-py3-none-any.whl.
File metadata
- Download URL: robotframework_perfmon-0.1-py3-none-any.whl
- Upload date:
- Size: 15.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/58.1.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d813ba31658d572c2eb708c26e3f56c93080c7baf13cd6f91344fce7c71b670b
|
|
| MD5 |
318aaf50a5997a878c872f85e95f45a6
|
|
| BLAKE2b-256 |
b9d87e620802326e849a872fd9050ac0399e8dbc9b827473c8e774d12a3561a7
|