fluent-plugin-azuremonitorlog/README.md

60 строки
1.9 KiB
Markdown
Исходник Обычный вид История

# fluent-plugin-azuremonitorlog, a plugin for [Fluentd](http://fluentd.org)
2017-10-17 16:22:05 +03:00
## Overview
***Azure Monitor log*** input plugin.
2017-10-17 16:22:05 +03:00
This plugin gets the monitor activity logs from Azure Monitor API to fluentd.
2017-10-19 11:49:59 +03:00
## Installation
2017-10-19 11:49:59 +03:00
Install from RubyGems:
```
$ gem install fluent-plugin-azuremonitorlog
```
To use this plugin, you need to have Azure Service Principal.<br/>
Create an Azure Service Principal through [Azure CLI](https://docs.microsoft.com/en-us/cli/azure/create-an-azure-service-principal-azure-cli?toc=%2fazure%2fazure-resource-manager%2ftoc.json) or [Azure portal](https://docs.microsoft.com/en-us/azure/azure-resource-manager/resource-group-create-service-principal-portal).
2017-10-17 16:22:05 +03:00
## Configuration
```config
<source>
@type azuremonitorlog
tag azuremonitorlog
2017-10-17 16:22:05 +03:00
tenant_id [Azure_Tenant_ID]
subscription_id [Azure_Subscription_Id]
client_id [Azure_Client_Id]
client_secret [Azure_Client_Secret]
select [selected fields to query]
filter [filter the query query] (default: eventChannels eq 'Admin, Operation')
2017-10-17 16:22:05 +03:00
interval [interval in seconds] (default: 300)
api_version [api version] (default: 2015-04-01)
2017-10-17 16:22:05 +03:00
</source>
```
Documentation for select and filter can be found [here](https://docs.microsoft.com/en-us/rest/api/monitor/ActivityLogs/List#activitylogs_list_uri_parameters)
2017-10-17 16:22:05 +03:00
### Example for source config
```config
<source>
@type azuremonitorlog
tag azuremonitorlog
2017-10-17 16:22:05 +03:00
tenant_id [Azure_Tenant_ID]
subscription_id [Azure_Subscription_Id]
client_id [Azure_Client_Id]
client_secret [Azure_Client_Secret]
select_filter eventName,id,resourceGroupName,resourceProviderName,operationName,status,eventTimestamp,correlationId,submissionTimestamp,level
</source>
```
## Contributing
1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Added some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create new Pull Request