Sample performance metrics data for PAS for OpenEdge
- Last Updated: September 5, 2025
- 2 minute read
- OpenEdge Command Center
- Version 2.0
- Documentation
When you configure OpenTelemetry (OTel) Collector to save the performance metrics data for a PAS for OpenEdge instance in a JSON file and start the OTel Collector, the generated data is stored in the JSON file. You can choose to analyze this data directly or use an APM tool for detailed analysis.
The sample performance metrics data in the JSON file for the PAS for OpenEdge instance is as follows:
{
"resourceMetrics": [
{
"resource": {
"attributes": [
{"key": "agent_guid", "value": {"stringValue": "ABCD"}},
{"key": "hostname", "value": {"stringValue": "windowssrv2019"}},
{"key": "resource_name", "value": {"stringValue": "RetailMgmt"}},
{"key": "service_name", "value": {"stringValue": "otpasoe"}},
{"key": "telemetry_sdk_language", "value": {"stringValue": "Java"}},
{"key": "telemetry_sdk_name", "value": {"stringValue": "openTelemetry"}},
{"key": "telemetry_sdk_os", "value": {"stringValue": "Windows"}},
{"key": "telemetry_sdk_version", "value": {"stringValue": "1.15.0"}}
]
},
"scopeMetrics": [
{
"scope": {
"name": "progress_oepas_C:/OE_128/wrk/RetailMgmt",
"version": "1.0.0"
},
"metrics": [ {
"name": "Progress_pasoe_get_errors_total",
"description": "The number of GET requests that resulted in errors.",
"unit": "cumulative",
"sum": {
"dataPoints": [
{
"attributes": [
{"key": "ablapp", "value": {"stringValue": "RetailMgmt"}},
{"key": "transport", "value": {"stringValue": "WEB"}},
{"key": "webapp", "value": {"stringValue": "ROOT"}}
],
"startTimeUnixNano": "1718893655587297400",
"timeUnixNano": "1718893685609868500",
"asInt": "0"
},
{
"attributes": [
{"key": "ablapp", "value": {"stringValue": "Customer"}},
{"key": "transport", "value": {"stringValue": "WEB"}},
{"key": "webapp", "value": {"stringValue": "Orders"}}
],
"startTimeUnixNano": "1718893655587297400",
"timeUnixNano": "1718893685609868500",
"asInt": "0"
}
],
"aggregationTemporality": 2
}
},
...
]
}
]
}
]
}
Resource-level attributes
The resource-level attributes are key-value pairs that describe the characteristics of a monitored PAS for OpenEdge instance, including details about the OpenEdge Command Center agent, service name, and host name. These attributes remain constant across all collected metrics for that particular PAS for OpenEdge instance and provide essential metadata for analysis and filtering metric data.
|
| Attribute | Description |
|---|---|
agent_guid |
Specifies the unique identifier for the OpenEdge Command Center agent. |
hostname |
Specifies the name of the host system where the agent is running. |
resource_name |
Specifies the name of the PAS for OpenEdge instance that is monitored. |
service_name |
Specifies the name of the telemetry service generating metric data. |
telemetry_sdk_language |
Specifies the programming language of the SDK used for metric data collection. |
telemetry_sdk_name |
Specifies the name of the telemetry SDK. |
telemetry_sdk_os |
Specifies the operating system of the host running the telemetry service. |
telemetry_sdk_version |
Specifies the version of the telemetry SDK used. |
Metric-level attributes
The metric-level attributes are key-value pairs within the data point of a recorded metric. They provide additional contextual information about the measurement being taken. These attributes are dynamic and allow you to view, filter, and perform granular analysis of metric data.
|