mirror of
https://github.com/openshift/openshift-docs.git
synced 2026-02-07 00:48:01 +01:00
- Pipelines are wrongly mentioned in the Advanced configuration options of Forwarding to Azure Monitor Logs sections. - Here is the documentation link: https://docs.openshift.com/container-platform/4.16/observability/logging/log_collection_forwarding/configuring-log-forwarding.html#logging-forwarding-azure_configuring-log-forwarding - Here are the current `Advanced configuration options` part: ~~~ apiVersion: "logging.openshift.io/v1" kind: "ClusterLogForwarder" metadata: name: instance namespace: openshift-logging spec: outputs: - name: azure-monitor type: azureMonitor azureMonitor: customerId: my-customer-id logType: my_log_type azureResourceId: "/subscriptions/111111111" host: "ods.opinsights.azure.com" secret: name: my-secret pipelines: - name: app-pipeline <<====== Wrong indentation inputRefs: - application outputRefs: - azure-monitor ~~~ - Due to this ClusterLogForwarder can not get applied. It streams the following errors: ~~~ Error parsing YAML: YAMLException: bad indentation of a sequence entry at line 19, column 5: inputRefs: Error parsing YAML: YAMLException: bad indentation of a sequence entry at line 20, column 5: - application Error parsing YAML: YAMLException: bad indentation of a sequence entry at line 21, column 5: outputRefs: Error parsing YAML: YAMLException: bad indentation of a sequence entry at line 22, column 5: - azure-monitor ~~~ - Here is the correct indentation for `Advanced configuration options` part: ~~~ apiVersion: "logging.openshift.io/v1" kind: "ClusterLogForwarder" metadata: name: instance namespace: openshift-logging spec: outputs: - name: azure-monitor type: azureMonitor azureMonitor: customerId: my-customer-id logType: my_log_type azureResourceId: "/subscriptions/111111111" host: "ods.opinsights.azure.com" secret: name: my-secret pipelines: - name: app-pipeline inputRefs: - application outputRefs: - azure-monitor ~~~
138 lines
4.5 KiB
Plaintext
138 lines
4.5 KiB
Plaintext
// Module included in the following assemblies:
|
|
// * logging/configuring-log-forwarding.adoc
|
|
|
|
:_mod-docs-content-type: PROCEDURE
|
|
[id="logging-forwarding-azure_{context}"]
|
|
= Forwarding to Azure Monitor Logs
|
|
With {logging} 5.9 and later, you can forward logs to link:https://learn.microsoft.com/en-us/azure/azure-monitor/logs/data-platform-logs[Azure Monitor Logs] in addition to, or instead of, the default log store. This functionality is provided by the link:https://vector.dev/docs/reference/configuration/sinks/azure_monitor_logs/[Vector Azure Monitor Logs sink].
|
|
|
|
.Prerequisites
|
|
|
|
* You are familiar with how to administer and create a `ClusterLogging` custom resource (CR) instance.
|
|
* You are familiar with how to administer and create a `ClusterLogForwarder` CR instance.
|
|
* You understand the `ClusterLogForwarder` CR specifications.
|
|
* You have basic familiarity with Azure services.
|
|
* You have an Azure account configured for Azure Portal or Azure CLI access.
|
|
* You have obtained your Azure Monitor Logs primary or the secondary security key.
|
|
* You have determined which log types to forward.
|
|
|
|
To enable log forwarding to Azure Monitor Logs via the HTTP Data Collector API:
|
|
|
|
Create a secret with your shared key:
|
|
[source,yaml]
|
|
----
|
|
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: my-secret
|
|
namespace: openshift-logging
|
|
type: Opaque
|
|
data:
|
|
shared_key: <your_shared_key> # <1>
|
|
----
|
|
<1> Must contain a primary or secondary key for the link:https://learn.microsoft.com/en-us/azure/azure-monitor/logs/log-analytics-workspace-overview[Log Analytics workspace] making the request.
|
|
|
|
To obtain a link:https://learn.microsoft.com/en-us/rest/api/storageservices/authorize-with-shared-key[shared key], you can use this command in Azure CLI:
|
|
|
|
[source,text]
|
|
----
|
|
Get-AzOperationalInsightsWorkspaceSharedKey -ResourceGroupName "<resource_name>" -Name "<workspace_name>”
|
|
----
|
|
|
|
|
|
Create or edit your `ClusterLogForwarder` CR using the template matching your log selection.
|
|
|
|
.Forward all logs
|
|
[source,yaml]
|
|
----
|
|
apiVersion: "logging.openshift.io/v1"
|
|
kind: "ClusterLogForwarder"
|
|
metadata:
|
|
name: instance
|
|
namespace: openshift-logging
|
|
spec:
|
|
outputs:
|
|
- name: azure-monitor
|
|
type: azureMonitor
|
|
azureMonitor:
|
|
customerId: my-customer-id # <1>
|
|
logType: my_log_type # <2>
|
|
secret:
|
|
name: my-secret
|
|
pipelines:
|
|
- name: app-pipeline
|
|
inputRefs:
|
|
- application
|
|
outputRefs:
|
|
- azure-monitor
|
|
----
|
|
<1> Unique identifier for the Log Analytics workspace. Required field.
|
|
<2> link:https://learn.microsoft.com/en-us/azure/azure-monitor/logs/data-collector-api?tabs=powershell#record-type-and-properties[Azure record type] of the data being submitted. May only contain letters, numbers, and underscores (_), and may not exceed 100 characters.
|
|
|
|
.Forward application and infrastructure logs
|
|
[source,yaml]
|
|
----
|
|
apiVersion: "logging.openshift.io/v1"
|
|
kind: "ClusterLogForwarder"
|
|
metadata:
|
|
name: instance
|
|
namespace: openshift-logging
|
|
spec:
|
|
outputs:
|
|
- name: azure-monitor-app
|
|
type: azureMonitor
|
|
azureMonitor:
|
|
customerId: my-customer-id
|
|
logType: application_log # <1>
|
|
secret:
|
|
name: my-secret
|
|
- name: azure-monitor-infra
|
|
type: azureMonitor
|
|
azureMonitor:
|
|
customerId: my-customer-id
|
|
logType: infra_log #
|
|
secret:
|
|
name: my-secret
|
|
pipelines:
|
|
- name: app-pipeline
|
|
inputRefs:
|
|
- application
|
|
outputRefs:
|
|
- azure-monitor-app
|
|
- name: infra-pipeline
|
|
inputRefs:
|
|
- infrastructure
|
|
outputRefs:
|
|
- azure-monitor-infra
|
|
----
|
|
<1> link:https://learn.microsoft.com/en-us/azure/azure-monitor/logs/data-collector-api?tabs=powershell#record-type-and-properties[Azure record type] of the data being submitted. May only contain letters, numbers, and underscores (_), and may not exceed 100 characters.
|
|
|
|
.Advanced configuration options
|
|
[source,yaml]
|
|
----
|
|
apiVersion: "logging.openshift.io/v1"
|
|
kind: "ClusterLogForwarder"
|
|
metadata:
|
|
name: instance
|
|
namespace: openshift-logging
|
|
spec:
|
|
outputs:
|
|
- name: azure-monitor
|
|
type: azureMonitor
|
|
azureMonitor:
|
|
customerId: my-customer-id
|
|
logType: my_log_type
|
|
azureResourceId: "/subscriptions/111111111" # <1>
|
|
host: "ods.opinsights.azure.com" # <2>
|
|
secret:
|
|
name: my-secret
|
|
pipelines:
|
|
- name: app-pipeline
|
|
inputRefs:
|
|
- application
|
|
outputRefs:
|
|
- azure-monitor
|
|
----
|
|
<1> Resource ID of the Azure resource the data should be associated with. Optional field.
|
|
<2> Alternative host for dedicated Azure regions. Optional field. Default value is `ods.opinsights.azure.com`. Default value for Azure Government is `ods.opinsights.azure.us`.
|