LANG SELRCT

Apps Script Reference  (Create: Create new Spreadsheet | Create new Apps Script

Saturday, September 5, 2020

JIRAのAutomation rulesでglobal ruleとmultiple projectsには実行Limitがあるらしい(スタンダードプラン)


JIRAのスタンダードプランの場合
Automation rulesのScopeの設定で、multi-project か global rule だと実行数のLimitにかかる可能性があります。

Single-project なら使用量にカウントされないようです。


Limitにかかる場合は、Scopeでプロジェクトを一つに絞るか、プレミアムプランにアップグレードする必要があるようです。


使用量は以下URLのSITENAMEをご自身のものにして「Usage」から確認できます。


Scopeは各ルールの詳細で設定できます。


Limitにかかるのはスタンダードプランで、トライアル中のプレミアムプランを見るとUNLIMITEDになっていました。

公式ページを見てみる

How is my usage calculated? を見るとこのように書かれていました。

Your usage is measured by the number of rules that have been executed during your billing period.
使用量は、請求期間中に実行されたルールの数によって測定されます。

What is a rule execution?
Any time an event fires as a result of an automation rule you have enabled, it will count as a rule execution.
ルール実行とは何ですか?
有効にした自動化ルールの結果としてイベントが発生すると、そのイベントはルールの実行としてカウントされます。

What executions count towards my usage?
All multi-project and global rule executions will count towards your usage.
使用にはどの実行がカウントされますか?
すべてのマルチプロジェクトおよびグローバルルールの実行は、使用量にカウントされます。

What doesn’t count towards my usage?
Single-project rule executions do not count towards your usage. A single-project rule is a rule that automates a task or process that only affects one project.
使用量にカウントされないものは何ですか?
単一プロジェクトルールの実行は、使用量にカウントされません。単一プロジェクトルールは、1つのプロジェクトにのみ影響するタスクまたはプロセスを自動化するルールです。


参考

How is my usage calculated?


調べている時に見たページたち

View your usage

Automate your Jira Cloud processes and workflows

What are service limits?

Jira Automation

PRODUCTS & NEWS

Automations execution limit

Jira Automation, usage limits

Latest post

スプレッドシートA列にある複数のテキストをスライドに追加したい(Google Apps Script)

今回Google Apps Scriptでやりたいこと GoogleスプレッドシートA列にある複数の値を取得して Googleスライドに渡して 図形オブジェクトのテキストとして追加したい ① スプレッドシートのA列に値を入れておく ② Code.gsのinsertNewShape...