description: ‘Send logs, metrics to Azure Log Analytics’

Azure Log Analytics

Azure Log Analytics - 图1

Azure output plugin allows to ingest your records into Azure Log Analytics service.

To get more details about how to setup Azure Log Analytics, please refer to the following documentation: Azure Log Analytics

Configuration Parameters

Key Description default
Customer_ID Customer ID or WorkspaceID string.
Shared_Key The primary or the secondary Connected Sources client authentication key.
Log_Type The name of the event type. fluentbit

Getting Started

In order to insert records into an Azure Log Analytics instance, you can run the plugin from the command line or through the configuration file:

Command Line

The azure plugin, can read the parameters from the command line in two ways, through the -p argument (property), e.g:

  1. $ fluent-bit -i cpu -o azure -p customer_id=abc -p shared_key=def -m '*' -f 1

Configuration File

In your main configuration file append the following Input & Output sections:

  1. [INPUT]
  2. Name cpu
  3. [OUTPUT]
  4. Name azure
  5. Match *
  6. Customer_ID abc
  7. Shared_Key def