Data Feeds
Note
The Data Feed service sends node data to a 3rd party service. This can be useful when updating configuration management databases, external security dashboards and IT service management platforms. The following types of information are sent:
- Ohai data gathered from each managed node - This data includes hardware, operating system, and installed program information. Some variation depends on the managed operating system
- Configuration information about each managed node - This information includes Chef Client Run status, Runlists, Cookbooks, and Recipes being ran against each node
- Compliance information about each node that shows the compliance state - This information includes passed and failed controls for each profile executed against that node
A Data Feed operates by doing the following:
- Every 4 hours, the data-feed-service will aggregate the client runs and compliance reports from the previous 4 hours and send this information to the registered destinations. This time interval is 4 hours by default, but is configurable
- If there are no destinations, aggregation will not occur
- The data aggregates and sends in batches of 50 nodes at a time. The batch amount is 50 by default, but is configurable
By default, only Admin users of Chef Automate may create and manage Data Feeds.
Adding a Data Feed Instance
A single Data Feed instance connects to one 3rd party endpoint. Create as many Data Feed instances as needed.
To add a Data Feed instance in Chef Automate:
- In the Settings tab, navigate to Data Feeds in the sidebar
- Select Create Data Feed
- Enter a unique Data Feed name
- Enter the URL for your Data Feed endpoint, including any specific port details
- Enter the Username and Password that your 3rd party endpoint requires for authentication
- Select Test Data Feed to begin validating the connection details
- Once the test is successful, select Create Data Feed to save your Data Feed configuration
Edit a Data Feed Instance
To edit a Data Feed instance in Chef Automate:
- In Data Feeds, select the Data Feed name to open its detail page
- Edit the Data Feed name or URL
- Use the Save button to save your changes
Delete a Data Feed Instance
To delete a Data Feed instance in Chef Automate:
- In Data Feeds, select Delete Data Feed from the menu at the end of the table row
- Select Delete Data Feed to confirm permanent deletion of this Data Feed
Configuring Global Data Feed Behavior
Note
To modify Data Feed behavior with the available configuration settings:
Create a configuration patch file to update the configuration settings. Save this file in the
.toml
file format and name your file as desired. For example,data-feed-patch.toml
Include one or more configuration settings and their updated value(s) in your configuration patch
.toml
file to reflect the desired global Data Feed behavior:
- Use the
feed_interval
setting to change the interval for the Data Feed collection. The default value is four hours - Use the
node_batch_size
setting to change the number of sets of node data sent in each individual batch to your endpoint. The default value is 50 nodes - Use the
updated_nodes_only
setting to determine what data to include in each export. The default setting istrue
, which causes the aggregation of only the changed data of updated nodes since the last export. Setupdated_nodes_only
tofalse
and it aggregates all data of updated nodes since the last export - To reduce the IP address range for the collected and processed node data, update the
disable_cidr_filter
setting tofalse
and update thecidr_filter
setting to cover the required IP address range. For example, you may wish to send only production or test node traffic - Use the
accepted_status_codes
setting to define an array of HTTP status codes that the Data Feed Service will treat assuccess
if returned by the 3rd party endpoint. If the status code is not in theaccepted_status_codes
list, then an error will be logged
Save your configuration patch file changes before continuing to the next step.
Apply your configuration changes with the Chef Automate command-line tool:
chef-automate config patch data-feed-patch.toml
where `data-feed-patch.toml` is this example's configuration patch file.
Configuration Patch File Example
[data_feed_service.v1.sys]
[data_feed_service.v1.sys.service]
feed_interval = "4h"
node_batch_size = 50
updated_nodes_only = true
disable_cidr_filter = true
cidr_filter = "0.0.0.0/0"
accepted_status_codes = [200, 201, 202, 203, 204]
[data_feed_service.v1.sys.log]
level = "info"
To debug any issues with the Data Feed Service in Chef Automate, update the following section in your configuration patch file by changing the log_level
value to “debug”:
[data_feed_service.v1.sys.log]
log_level = "debug"
Data Feed Output Syntax and Details
The outputted data from Data Feed consists of line-separated JSON strings. Each line represents the data for one node, and contains the following properties:
{
"attributes": {
"node_id": "",
"name": "",
"run_list": [],
"chef_environment": "",
"normal": {},
"default": {},
"override":{},
"automatic":{},
"normal_value_count": 0,
"default_value_count": 1,
"override_value_count": 1,
"all_value_count": 10,
"automatic_value_count": 8
},
"report": { ... },
"client_run": { ... },
"node": {
"automate_fqdn": "",
"ip_address" : "",
"mac_address": "",
"description":"",
"serial_number":"",
"os_service_pack":""
}
}
Was this page helpful?