Create a new data model
From version 2.2.0, Splunk add-on builder supports the user to map the data event to the data model you create.
Users can design and maintain data models and use them in Splunk Add-on builder. Splunk recommends you to use Splunk web first and then modify the data model JSON file to follow the standard of Add-on builder.
To create data models which can be used by Splunk add-on builder, you need to understand
- What is data models and how to create a data model in Splunk platform.
- The format and semantics of their indexed data and are familiar with the Splunk search language. In building a typical data model, knowledge managers use knowledge object types such as lookups, transactions, search-time field extractions, and calculated fields.
- The data model standard of Splunk add-on builder. See syntax of data model for details.
Make sure you have sufficient access permissions to any files you place in your add-on directory.
Syntax of data model
After building data model using Splunk web, the generated JSON file cannot be used by Splunk Add-on builder directly, add the following fields to the existing JSON file.
Required field
- objects.comment.tags
- Syntax: $.objects[*].comment.tags
- Description:: It defines the tags of object in the data model. Eventtype which has the same tag(s) will be mapped to this data model.
Optional fields
- objects.comment.description
- Syntax: $.objects[*].comment.description
- Description:: The description of the data model.
- object.fields.comment.description
- Syntax: $.object[*].fields[*].comment.description:<string>
- Description:: The description of the data model field.
- object.fields.comment.expected_values
- Syntax: $.object[*].fields[*].comment.expected_values:<string>
- Description:: It defines the expected value(s) of the data model field. Splunk add-on builder verifies the expect value(s) when user validates the add-on.
Example: Create a data model named test
- Create the data model using Splunk Web and name it as 'test'.
- Open the test.json file under
- Save the file and then restart Splunk
- The data model you create will be listed on the Select Data Models page. Follow the instruction on how to map to data model.
$SPLUNK_HOME/etc/apps/<your_addon_folder>/default/data/models/test.json
and add the field required by Splunk Add-on builder as followsUse the add-on | Modify files directly |
This documentation applies to the following versions of Splunk® Add-on Builder: 3.0.0, 3.0.1
Feedback submitted, thanks!