Sha256: 4d7d6399eae1236d73d661e30c769659fe47e2413209ad4929da541662d1648b
Contents?: true
Size: 1.53 KB
Versions: 3
Compression:
Stored size: 1.53 KB
Contents
# Athenian::CalculatedJIRAMetricValues ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **granularity** | **String** | How often the metrics are reported. The value must satisfy the following regular expression: /^all|(([1-9]\\d* )?(aligned )?(day|week|month|year))$/. \"all\" produces a single interval [`date_from`, `date_to`]. \"aligned week/month/year\" produces intervals cut by calendar week/month/year borders, for example, when `date_from` is `2020-01-15` and `date_to` is `2020-03-10`, the intervals will be `2020-01-15` - `2020-02-01` - `2020-03-01` - `2020-03-10`. | | | **_for** | [**JIRAFilter**](JIRAFilter.md) | | [optional] | | **jira_label** | **String** | Title of the assigned JIRA label, if `group_by_jira_label` was previously set to `true`. If is missing and `group_by_jira_label` was set to `true` then the metrics are calculated for issues without labels. | [optional] | | **with** | [**JIRAFilterWith**](JIRAFilterWith.md) | | [optional] | | **values** | [**Array<CalculatedLinearMetricValues>**](CalculatedLinearMetricValues.md) | The sequence steps from `date_from` till `date_to` by `granularity`. | | ## Example ```ruby require 'athenian' instance = Athenian::CalculatedJIRAMetricValues.new( granularity: 2 week, _for: null, jira_label: null, with: null, values: null ) ```
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
athenian-2.1.86 | docs/CalculatedJIRAMetricValues.md |
athenian-2.1.85 | docs/CalculatedJIRAMetricValues.md |
athenian-2.1.81 | docs/CalculatedJIRAMetricValues.md |