![]() |
Consumption Analytics Documentation |
Extracts data from consolidated billing report files downloaded with Amazon Web Services (AWS).
IMPORTANT: This collector requires that the files have already been downloaded with the
DownloadCostAllocationReportsTasklet
. The files are snapshots of cumulative month-to-date usage. They are tagged with a timestamp indicating the snapshot time.
<bean class="com.cloudcruiser.batch.collect.amazon.AmazonCollector">
<property name="feedConfig" ref="feedConfig " /> |
|
Sets the feed configuration for this collector. The feed configuration maps input data to the CC-Record content. |
<batch:step id="collect" next="assemble">
<batch:tasklet>
<bean class="com.cloudcruiser.batch.CCRecordCollectTasklet">
<property name="active" value="true" />
<property name="feedName" value="aws_feed1" />
<property name="singleFeedPerDay" value="true" />
<property name="collector">
<bean class="com.cloudcruiser.batch.collect.amazon.AmazonCollector">
<property name="feedConfig">
<bean class="com.cloudcruiser.batch.collect.amazon.AmazonFeedConfig">
<property name="useTotalCostField" value="true" />
<property name="stripUserTagPrefix" value="false" />
<property name="excludedUserTags">
<list>
<value>MyTag1</value>
<value>MyTag2</value>
</list>
</property>
</bean>
</property>
</bean>
</property>
</bean>
</batch:tasklet>
</batch:step>
(c) Copyright 2017-2020 Hewlett Packard Enterprise Development LP