All eazyBI for Jira eazyBI for Confluence Private eazyBI

Creator

Calculated field to return the creator for each issue. This field can be imported as property and dimension.

Account-specific calculated field

Account-specific calculated fields are defined in Source Data → Import options.

Settings for the new field

Internal name

cf_creator

Display nameCreator
Data type

string 

Dimension

Additional advanced settings
json_fields = ["creator"]

Custom JavaScript code:

return issue.fields.creator;

Global calculated field

Global calculated fields are defined in eazyBI advanced settings.

Here are the settings for the new field definitions. You should insert the JavaScript (the code given above) below the line // Insert here the Custom JavaScript codeKeep the opening and closing quotation marks. ''', do not delete them.

[jira.customfield_cf_creator]
name = "Creator"
data_type = "string"
dimension = true
json_fields = "creator"
javascript_code = '''
  // Insert here the Custom JavaScript code
'''