mirror of
https://github.com/valitydev/wazuh-kibana-app.git
synced 2024-11-08 02:38:51 +00:00
47 lines
2.0 KiB
HTML
47 lines
2.0 KiB
HTML
<!-- General card -->
|
|
<md-card class="wz-md-card" ng-if="!JSONContent && !XMLContent && configurationSubTab === 'amazon-general'">
|
|
<md-card-content>
|
|
<div layout="row" layout-align="start center">
|
|
<div>
|
|
<span class="font-size-16">Main settings</span>
|
|
<div class="wz-margin-top-10">
|
|
<span class="md-subheader small">Common settings applied to all Amazon S3 buckets</span>
|
|
</div>
|
|
</div>
|
|
<span flex></span>
|
|
<span ng-class="JSONContent ? 'wz-text-active' : ''" class="wz-text-link small" ng-click="getJSON()">JSON</span>
|
|
<span class="small"> · </span>
|
|
<span ng-class="XMLContent ? 'wz-text-active' : ''" class="wz-text-link small" ng-click="getXML()">XML</span>
|
|
</div>
|
|
<md-divider class="wz-margin-top-10"></md-divider>
|
|
|
|
<!-- Configuration block -->
|
|
<div class="wz-padding-top-10">
|
|
|
|
<wz-config-item
|
|
label="Amazon S3 integration status"
|
|
value="currentConfig['aws-s3'].disabled === 'no' ? 'enabled' : 'disabled'">
|
|
</wz-config-item>
|
|
<wz-config-item
|
|
label="Frequency for reading from S3 buckets"
|
|
value="currentConfig['aws-s3'].interval">
|
|
</wz-config-item>
|
|
<wz-config-item
|
|
label="Run on start"
|
|
value="currentConfig['aws-s3'].run_on_start">
|
|
</wz-config-item>
|
|
<wz-config-item
|
|
label="Remove bucket logs after being read"
|
|
value="currentConfig['aws-s3'].remove_from_bucket || 'yes'">
|
|
</wz-config-item>
|
|
<wz-config-item
|
|
label="Skip logs that can't be processed"
|
|
value="currentConfig['aws-s3'].skip_on_error">
|
|
</wz-config-item>
|
|
|
|
</div>
|
|
<!-- End configuration block -->
|
|
</md-card-content>
|
|
</md-card>
|
|
<!-- End general card -->
|