SAP HANA
Monitor SAP HANA — memory usage, CPU, connection pool, replication, and backup status — using hana_exporter.
Pattern: hana_exporter → Prometheus scrape → xScaler remote_write
Prerequisites
- SAP HANA 2.0+
- Monitoring user with
DATA ADMINorMONITORINGrole - Network access from the exporter host to HANA port (default 39013)
Option A — Prometheus Exporter
Run the hana_exporter as a Docker container:
docker run -d -p 9668:9668 \
-e HANA_HOST=hana-host \
-e HANA_PORT=39013 \
-e HANA_USER=monitor \
-e HANA_PASSWORD=pass \
dbsystel/prometheus-hana-exporter
Then configure Prometheus to scrape it and forward to xScaler:
scrape_configs:
- job_name: sap-hana
static_configs:
- targets: ["localhost:9668"]
remote_write:
- url: https://euw1-01.m.xscalerlabs.com/api/v1/push
authorization:
credentials: <token>
headers:
X-Scope-OrgID: <tenant-id>
Option B — Grafana Alloy
prometheus.scrape "sap_hana" {
targets = [{ __address__ = "localhost:9668" }]
forward_to = [prometheus.remote_write.xscaler.receiver]
}
prometheus.remote_write "xscaler" {
endpoint {
url = "https://euw1-01.m.xscalerlabs.com/api/v1/push"
authorization {
type = "Bearer"
credentials = "<token>"
}
headers = { "X-Scope-OrgID" = "<tenant-id>" }
}
}
Option C — OpenTelemetry Collector
receivers:
prometheus:
config:
scrape_configs:
- job_name: sap-hana
static_configs:
- targets: ["localhost:9668"]
processors:
memory_limiter:
check_interval: 1s
limit_mib: 256
batch:
timeout: 10s
exporters:
otlphttp/xscaler:
endpoint: https://euw1-01.m.xscalerlabs.com
headers:
Authorization: "Bearer <token>"
X-Scope-OrgID: "<tenant-id>"
compression: gzip
service:
pipelines:
metrics:
receivers: [prometheus]
processors: [memory_limiter, batch]
exporters: [otlphttp/xscaler]
Logs
Collect SAP HANA alert trace and error trace files. Add the following to your Alloy config:
local.file_match "sap_hana_logs" {
path_targets = [{
__address__ = "localhost",
__path__ = "/usr/sap/*/HDB*/trace/alert_*.trc",
instance = constants.hostname,
job = "integrations/sap_hana",
}]
}
loki.source.file "sap_hana_logs" {
targets = local.file_match.sap_hana_logs.targets
forward_to = [loki.write.xscaler.receiver]
}
loki.write "xscaler" {
endpoint {
url = "https://euw1-01.l.xscalerlabs.com/api/v1/logs/push"
http_client_config {
authorization {
type = "Bearer"
credentials = env("XSCALER_TOKEN")
}
}
headers = { "X-Scope-OrgID" = env("XSCALER_TENANT_ID") }
}
}
Key metrics
| Metric | Description |
|---|---|
hana_cpu_used | CPU utilization percentage across HANA services |
hana_memory_used_mb | Total memory consumed by HANA in megabytes |
hana_connection_count | Current number of active client connections |
hana_backup_status | Status code of the most recent backup operation |
hana_replication_status | System replication state (active, error, etc.) |
hana_service_memory_used_mb | Memory used per individual HANA service |