You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/virtual-machines/workloads/sap/configure-ha-cluster-azure-monitor-sap-solutions.md
+55-20Lines changed: 55 additions & 20 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -33,20 +33,44 @@ For RHEL-based clusters, install **performance co-pilot (PCP)** and the **pcp-pm
33
33
34
34
For RHEL-based pacemaker clusters, also install [PMProxy](https://access.redhat.com/articles/6139852) in each node.
35
35
36
-
### Steps to install HA Cluster Exporter on RHEl system:
36
+
### Install HA Cluster Exporter on RHEL
37
37
1. Install the required packages on the system.
38
-
1. yum install pcp pcp-pmda-hacluster
38
+
39
+
```bash
40
+
yum install pcp pcp-pmda-hacluster
41
+
```
42
+
39
43
1. Enable and start the required PCP Collector Services.
40
-
1. systemctl enable pmcd
41
-
1. systemctl start pmcd
42
-
1. Install and enable the HA Cluster PMDA. (replace $PCP_PMDAS_DIR with the path where hacluster is installed, use find command in linux to find it)
43
-
1. cd $PCP_PMDAS_DIR/hacluster
44
-
1. ./install
45
-
1. Enable and start the pmproxy service.
46
-
1. sstemctl start pmproxy
47
-
1. systemctl enable pmproxy
48
-
1. Data will then be collected by PCP on the system and can be exported via pmproxy at the following address:
49
-
1. http://<'servername or ip address'>:44322/metrics?names=ha_cluster
44
+
45
+
```bash
46
+
systemctl enable pmcd
47
+
```
48
+
49
+
```bash
50
+
systemctl start pmcd
51
+
```
52
+
53
+
1. Install and enable the HA Cluster PMDA. Replace `$PCP_PMDAS_DIR` with the path where `hacluster` is installed. Use the `find`commandin Linuxto find the path.
54
+
55
+
```bash
56
+
cd$PCP_PMDAS_DIR/hacluster
57
+
```
58
+
59
+
```bash
60
+
. ./install
61
+
```
62
+
63
+
1. Enable and start the `pmproxy` service.
64
+
65
+
```bash
66
+
sstemctl start pmproxy
67
+
```
68
+
69
+
```bash
70
+
systemctl enable pmproxy
71
+
```
72
+
73
+
1. Data will then be collected by PCP on the system. You can export the data using `pmproxy` at `http://<SERVER-NAME-OR-IP-ADDRESS>:44322/metrics?names=ha_cluster`. Replace `<SERVER-NAME-OR-IP-ADDRESS>` with your server name or IP address.
50
74
51
75
## Create provider for Azure Monitor for SAP solutions
52
76
@@ -61,7 +85,7 @@ For RHEL-based pacemaker clusters, also install [PMProxy](https://access.redhat.
61
85
1. For **Type**, select **High-availability cluster (Pacemaker)**.
62
86
1. Configure providers for each node of the cluster by entering the endpoint URL for **HA Cluster Exporter Endpoint**.
63
87
64
-
1. For SUSE-based clusters, enter `http://<'IP address'> :9664/metrics`.
88
+
1. For SUSE-based clusters, enter `http://<IP-address> :9664/metrics`.
65
89
66
90

67
91
@@ -81,15 +105,26 @@ For RHEL-based pacemaker clusters, also install [PMProxy](https://access.redhat.
81
105
82
106
1. Select **Create** to finish creating the resource.
83
107
84
-
## Trouble shooting guide for common exceptions
108
+
## Troubleshooting
109
+
110
+
Use the following troubleshooting steps for common errors.
111
+
112
+
### Unable to reach the Prometheus endpoint
113
+
114
+
When the provider settings validation operation fails with the code ‘PrometheusURLConnectionFailure’:
115
+
116
+
1. Restart the HA cluster exporter agent.
117
+
118
+
```bash
119
+
sstemctl start pmproxy
120
+
```
85
121
86
-
### Unable to reach the prometheus endpoint
87
-
The provider settings validation operation has failed with code ‘PrometheusURLConnectionFailure’.
122
+
1. Reenable the HA cluster exporter agent.
123
+
```bash
124
+
systemctl enable pmproxy
125
+
```
88
126
89
-
1. Try to restart the ha cluster exporter agent:
90
-
1. sstemctl start pmproxy
91
-
1. systemctl enable pmproxy
92
-
1. Please verify if the prometheus endpoint provided is reachable from the subnet provided while creating Azure Monitor for Sap Solutions resource.
127
+
1. Verify that the Prometheus endpoint is reachable from the subnet that provided while creating the Azure Monitor for SAP solutions resource.
Copy file name to clipboardExpand all lines: articles/virtual-machines/workloads/sap/configure-linux-os-azure-monitor-sap-solutions.md
+22-16Lines changed: 22 additions & 16 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,18 +21,21 @@ This content applies to both versions of the service, *Azure Monitor for SAP sol
21
21
22
22
- An Azure subscription.
23
23
- An existing Azure Monitor for SAP solutions resource. To create an Azure Monitor for SAP solutions resource, see the [quickstart for the Azure portal](azure-monitor-sap-quickstart.md) or the [quickstart for PowerShell](azure-monitor-sap-quickstart-powershell.md).
24
-
- Install [node exporter version 1.3.0](https://prometheus.io/download/#node_exporter) in each SAP host that you want to monitor, either BareMetal or Azure virtual machine (Azure VM). For more information, see [the node exporter GitHub repository](https://github.com/prometheus/node_exporter).
24
+
- Install the [node exporter version 1.3.0](https://prometheus.io/download/#node_exporter) in each SAP host that you want to monitor, either BareMetal or Azure virtual machine (Azure VM). For more information, see [the node exporter GitHub repository](https://github.com/prometheus/node_exporter).
25
25
26
-
### Steps to install node exporter:
27
-
You can follow the step by step [guide to install node exporter on linux system](https://prometheus.io/docs/guides/node-exporter/):
0 commit comments