![]() |
Consumption Analytics Documentation |
A data source is required to provide a VMware vCloud endpoint URL and credentials. You can provide this in Cloud Cruiser as a managed data source, or you can embed connection details in the job file as an explicit data source.
The explicit data source requires that all connection information be set directly on the bean, which means credentials are embedded in one or more job files. To specify the data source for data collection directly in the job XML, use the VCloudDataSourceConfig
bean to provide the endpoint URL using the following syntax:
<bean id="dataSource" class="com.cloudcruiser.batch.collect.vmware.vcloud.VCloudDataSourceConfig"> <property name="endpoint" value="https://vcdserver/api" /> <property name="username" value="user@organization" /> <property name="password" value="password" /> </bean>
This is convenient when developing jobs, but is not necessarily secure and can increase maintenance complexity when credentials change.
Alternatively, a managed data source is securely maintained in the application and is referenced by one or more jobs using a unique data source name. You can set the data source connection in Cloud Cruiser and refer to the data source by name (see Managed data source for more information). For example, with the data source managed by the application, the ManagedVCloudDataSource
bean in the job file can fetch the data source vc1
by name:
<bean class="com.cloudcruiser.batch.collect.vmware.vcloud.ManagedVCloudDataSource"> <property name="name" value="vc1"/> </bean>
(c) Copyright 2017-2020 Hewlett Packard Enterprise Development LP