mirror of https://github.com/dapr/docs.git
Merge branch 'v1.11' into aacrawfi/split-workflow
This commit is contained in:
commit
1cd9f4c4b0
|
@ -15,24 +15,25 @@ description: "Enable Dapr metrics and logs with Azure Monitor for Azure Kubernet
|
||||||
|
|
||||||
## Enable Prometheus metric scrape using config map
|
## Enable Prometheus metric scrape using config map
|
||||||
|
|
||||||
1. Make sure that omsagents are running
|
1. Make sure that Azure Monitor Agents (AMA) are running.
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
$ kubectl get pods -n kube-system
|
$ kubectl get pods -n kube-system
|
||||||
NAME READY STATUS RESTARTS AGE
|
NAME READY STATUS RESTARTS AGE
|
||||||
...
|
...
|
||||||
omsagent-75qjs 1/1 Running 1 44h
|
ama-logs-48kpv 2/2 Running 0 2d13h
|
||||||
omsagent-c7c4t 1/1 Running 0 44h
|
ama-logs-mx24c 2/2 Running 0 2d13h
|
||||||
omsagent-rs-74f488997c-dshpx 1/1 Running 1 44h
|
ama-logs-rs-f9bbb9898-vbt6k 1/1 Running 0 30h
|
||||||
omsagent-smtk7 1/1 Running 1 44h
|
ama-logs-sm2mz 2/2 Running 0 2d13h
|
||||||
|
ama-logs-z7p4c 2/2 Running 0 2d13h
|
||||||
...
|
...
|
||||||
```
|
```
|
||||||
|
|
||||||
2. Apply config map to enable Prometheus metrics endpoint scrape.
|
1. Apply config map to enable Prometheus metrics endpoint scrape.
|
||||||
|
|
||||||
You can use [azm-config-map.yaml](/docs/azm-config-map.yaml) to enable prometheus metrics endpoint scrape.
|
You can use [azm-config-map.yaml](/docs/azm-config-map.yaml) to enable Prometheus metrics endpoint scrape.
|
||||||
|
|
||||||
If you installed Dapr to the different namespace, you need to change the `monitor_kubernetes_pod_namespaces` array values. For example:
|
If you installed Dapr to a different namespace, you need to change the `monitor_kubernetes_pod_namespaces` array values. For example:
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
...
|
...
|
||||||
|
@ -54,19 +55,20 @@ kubectl apply -f ./azm-config.map.yaml
|
||||||
|
|
||||||
## Install Dapr with JSON formatted logs
|
## Install Dapr with JSON formatted logs
|
||||||
|
|
||||||
1. Install Dapr with enabling JSON-formatted logs
|
1. Install Dapr with enabling JSON-formatted logs.
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
helm install dapr dapr/dapr --namespace dapr-system --set global.logAsJson=true
|
helm install dapr dapr/dapr --namespace dapr-system --set global.logAsJson=true
|
||||||
```
|
```
|
||||||
|
|
||||||
2. Enable JSON formatted log in Dapr sidecar and add Prometheus annotations.
|
1. Enable JSON formatted log in Dapr sidecar and add Prometheus annotations.
|
||||||
|
|
||||||
> Note: OMS Agent scrapes the metrics only if replicaset has Prometheus annotations.
|
> Note: The Azure Monitor Agents (AMA) only sends the metrics if the Prometheus annotations are set.
|
||||||
|
|
||||||
Add `dapr.io/log-as-json: "true"` annotation to your deployment yaml.
|
Add `dapr.io/log-as-json: "true"` annotation to your deployment yaml.
|
||||||
|
|
||||||
Example:
|
Example:
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
apiVersion: apps/v1
|
apiVersion: apps/v1
|
||||||
kind: Deployment
|
kind: Deployment
|
||||||
|
@ -97,11 +99,11 @@ spec:
|
||||||
|
|
||||||
## Search metrics and logs with Azure Monitor
|
## Search metrics and logs with Azure Monitor
|
||||||
|
|
||||||
1. Go to Azure Monitor
|
1. Go to Azure Monitor in the Azure portal.
|
||||||
|
|
||||||
2. Search Dapr logs
|
1. Search Dapr **Logs**.
|
||||||
|
|
||||||
Here is an example query, to parse JSON formatted logs and query logs from dapr system processes.
|
Here is an example query, to parse JSON formatted logs and query logs from Dapr system processes.
|
||||||
|
|
||||||
```
|
```
|
||||||
ContainerLog
|
ContainerLog
|
||||||
|
@ -111,9 +113,9 @@ ContainerLog
|
||||||
| sort by Time
|
| sort by Time
|
||||||
```
|
```
|
||||||
|
|
||||||
3. Search metrics
|
1. Search **Metrics**.
|
||||||
|
|
||||||
This query, queries process_resident_memory_bytes Prometheus metrics for Dapr system processes and renders timecharts
|
This query, queries `process_resident_memory_bytes` Prometheus metrics for Dapr system processes and renders timecharts.
|
||||||
|
|
||||||
```
|
```
|
||||||
InsightsMetrics
|
InsightsMetrics
|
||||||
|
@ -125,8 +127,8 @@ InsightsMetrics
|
||||||
| render timechart
|
| render timechart
|
||||||
```
|
```
|
||||||
|
|
||||||
# References
|
## References
|
||||||
|
|
||||||
* [Configure scraping of Prometheus metrics with Azure Monitor for containers](https://docs.microsoft.com/azure/azure-monitor/insights/container-insights-prometheus-integration)
|
- [Configure scraping of Prometheus metrics with Azure Monitor for containers](https://docs.microsoft.com/azure/azure-monitor/insights/container-insights-prometheus-integration)
|
||||||
* [Configure agent data collection for Azure Monitor for containers](https://docs.microsoft.com/azure/azure-monitor/insights/container-insights-agent-config)
|
- [Configure agent data collection for Azure Monitor for containers](https://docs.microsoft.com/azure/azure-monitor/insights/container-insights-agent-config)
|
||||||
* [Azure Monitor Query](https://docs.microsoft.com/azure/azure-monitor/log-query/query-language)
|
- [Azure Monitor Query](https://docs.microsoft.com/azure/azure-monitor/log-query/query-language)
|
||||||
|
|
Loading…
Reference in New Issue