Sha256: 8340c97768c8976cc39d9b35fe46978c60ff2e2e632f68cc0544ec19b9b00b92
Contents?: true
Size: 1.78 KB
Versions: 6
Compression:
Stored size: 1.78 KB
Contents
[![Build Status](https://travis-ci.org/treasure-data/embulk-input-jira.svg)](https://travis-ci.org/treasure-data/embulk-input-jira) [![Code Climate](https://codeclimate.com/github/treasure-data/embulk-input-jira/badges/gpa.svg)](https://codeclimate.com/github/treasure-data/embulk-input-jira) [![Test Coverage](https://codeclimate.com/github/treasure-data/embulk-input-jira/badges/coverage.svg)](https://codeclimate.com/github/treasure-data/embulk-input-jira/coverage) [![Gem Version](https://badge.fury.io/rb/embulk-input-jira.svg)](https://badge.fury.io/rb/embulk-input-jira) # Jira input plugin for Embulk embulk-input-jira is the Embulk input plugin for [JIRA](https://www.atlassian.com/software/jira). ## Overview Required Embulk version >= 0.8.7 * **Plugin type**: input * **Resume supported**: no * **Cleanup supported**: no * **Guess supported**: yes ## Configuration - **username** JIRA username (string, required) - **password** JIRA password (string, required) - **uri** JIRA API endpoint (string, required) - **jql** [JQL](https://confluence.atlassian.com/display/JIRA/Advanced+Searching) for extract target issues (string, required) - **columns** target issue attributes. You can generate this configuration by `guess` command (array, required) - **retry_initial_wait_sec**: Wait seconds for exponential backoff initial value (integer, default: 1) - **retry_limit**: Try to retry this times (integer, default: 5) ## Example ```yaml in: type: jira username: USERNAME password: PASSWORD uri: http://localhost:8090 jql: project = PRO AND summary~Fix columns: - {name: id, type: long} - {name: key, type: string} - {name: project.name, type: string} - {name: summary, type: string} - {name: assignee.name, type: string} ``` ## Build ``` $ bundle exec rake build ```
Version data entries
6 entries across 6 versions & 1 rubygems