Quick Info
Description
Handlebar is a simple templating language. It can be used to generate HTML or other text formats from a template and input object.Quick Info
ucv-ext-handlebars-reporter:2.0.1.tar
Uploaded: 18-Nov-2022 15:05
Pull Command
docker pull hclcr.io/accelerate/ucv-ext-handlebars-reporter:2.0.1
Release Notes
ucv-ext-handlebars-reporter:1.0.2.tar
Uploaded: 14-Nov-2022 15:17
Pull Command
docker pull hclcr.io/accelerate/ucv-ext-handlebars-reporter:1.0.2
Release Notes
ucv-ext-handlebars-reporter:1.0.1.tar
Uploaded: 07-Sep-2022 18:47
Pull Command
docker pull hclcr.io/accelerate/ucv-ext-handlebars-reporter:1.0.1
Release Notes
ucv-ext-handlebars-reporter:0.0.59.tar
Uploaded: 01-Jun-2022 18:53
Pull Command
docker pull hclcr.io/accelerate/ucv-ext-handlebars-reporter:0.0.59
Release Notes
ucv-ext-handlebars-reporter:0.0.41.tar
Uploaded: 01-Nov-2021 22:32
Pull Command
docker pull hclcr.io/accelerate/ucv-ext-handlebars-reporter:0.0.41
Release Notes
ucv-ext-handlebars-reporter:0.0.39.tar
Uploaded: 30-Jul-2021 19:03
Pull Command
docker pull hclcr.io/accelerate/ucv-ext-handlebars-reporter:0.0.39
Release Notes
ucv-ext-handlebars-reporter:0.0.38.tar
Uploaded: 21-Jul-2021 15:58
Pull Command
docker pull hclcr.io/accelerate/ucv-ext-handlebars-reporter:0.0.38
Release Notes
ucv-ext-handlebars-reporter:0.0.30.tar
Uploaded: 17-May-2021 05:01
Pull Command
docker pull hclcr.io/accelerate/ucv-ext-handlebars-reporter:0.0.30
Release Notes
ucv-ext-handlebars-reporter:0.0.17.tar
Uploaded: 30-Mar-2021 11:09
Pull Command
docker pull hclcr.io/accelerate/ucv-ext-handlebars-reporter:0.0.17
Release Notes
Summary
The Handlebar Reporter plugin takes a Handlebars template and using a context generator to create HCL Accelerate reports. This plugin is required to run reports.
Compatibility
Must be running HCL Accelerate version 2.0 and later to use the plugin.
History
The following table describes the changes made in each plugin version.
Version | Description |
---|---|
0.0.17 | Minor enhancements |
0.0.6 | Minor enhancements |
Usage
To use the Handlebar Reporter plugin, the plugin must be loaded and an instance created before you can configure the plugin integration. You define configuration properties in the user interface or in a JSON file.
Integration type
The Handlebar Reporter plugin supports scheduled events integration which are listed in the following table.
Name | Description |
---|---|
handlebarsRunner | Generates a report. |
Integration
There are two methods to integrate the plugin:
- Using the user interface
- Using a JSON file
Using the user interface
- From the Plugins page, click Settings > Integrations > Plugins.
- Under the Action column for the plugin, click Add Integration.
- On the Add Integration page enter values for the fields used to configure the integration and define communication.
- Click Save.
Using a JSON file
The JSON file contains the information for creating a value stream and integrating with the Handlebar server. The following table describes the information for the creating an HCL Accelerate value stream map.
- Download the value stream map. The value stream map is a JSON file used to define integrations.
- Edit the JSON file to include the plugin configuration properties.
- Save and upload the JSON file. This replaces the current JSON file with the new content.
- View the new integration on the Integrations page.
Configuration Properties
The following tables describe the properties used to configure the integration. Each table contains the field name when using the user interface and the property name when using a JSON file.
- The General Configuration Properties table describes configuration properties used by all plugin integrations.
- The Handlebar Reporter Configuration Properties table describes the configuration properties that define the connection and communications with the HCL Accelerate server. When using the JSON method to integrate the plugin these properties are coded within the
properties
configuration property.
Some properties might not be displayed in the user interface, to see all properties enable the Hidden field.
Name | Description | Required | Property Name |
---|---|---|---|
NA | The version of the plugin that you want to use. To view available versions, click the Version History tab. If a value is not specified, the version named latest is used. | No | image |
Integration Name | An assigned name to the value stream. | Yes | name |
Logging Level | The level of Log4j messages to display in the log file. Valid values are: all, debug, info, warn, error, fatal, off, and trace. | No | loggingLevel |
NA | List of plugin configuration properties used to connect and communicate with the HCL Accelerate server. Enclose the properties within braces. | Yes | properties |
The name of the tenant. | Yes | tenant_id | |
NA | Unique identifier assigned to the plugin. The value for the Handlebar plugin is ucv-ext-handlebars-reporter . |
Yes | type |
Name | Type | Description | Required | Property Name |
---|---|---|---|---|
UCV User Access Key | Secure | The user access key used to authenticate with the HCL Accelerate server. | Yes | ucvKey |
JSON code sample
The following sample code can be used as a template to define the integration within the JSON file for a value stream. Copy and paste the template into the JSON file Integration section and make the appropriate changes.
"integrations": [
{
"type": "ucv-ext-handlebars-reporter",
"name": "",
"tenant_id": " ",
"logginglevel": "info",
"ucvkey": "key,
"properties": {
],
}
}
]