In the below link you can obtain a guide to compare features of Portfolio for Jira VS Jira Align: Download Doc: Portfolio for Jira VS Jira Align See below some screenshots of: Jira Align
Read More
In the below link you can obtain a guide to compare features of Portfolio for Jira VS Jira Align: Download Doc: Portfolio for Jira VS Jira Align See below some screenshots of: Jira Align
Read MoreThis exercise is the continuation of: How to create a Jira custom field with options from an external REST API In this case, instead of use an external REST API to obtain the values of the dropdown, we want to use a static list of values. We will use the same approach than the other…
Read MoreTo do this exercise, we will use the famous plugin for Jira called Adaptavist Scriptrunner. First step, we need to create a REST Endpoint in our Jira Server. This REST Endpoint will query the external REST API to obtain the values and options (In this example we will query GitHub to obtain a list of…
Read MoreIn this exercise we want to create a new custom field of type Scriptfield of Scriptrunner Jira plugin. This script field will sum all the values of some customfield of its subtasks. Just go to Add-ons –> Scriptrunner –> Script Fields and create a new Script field like this (Total…): Now place a script like…
Read MoreExample script code in Groovy to read attributes from persons of the LDAP in Jira Server or Datacenter by MrAddon @GrabResolver(name=’apache-snapshot’, root=’http://repository.apache.org/snapshots/’) @Grab(group=’org.apache.directory’, module=’groovyldap’, version=’0.1-SNAPSHOT’) import javax.naming.Context; import javax.naming.NameNotFoundException; import javax.naming.NamingEnumeration; import javax.naming.NamingException; import javax.naming.directory.Attribute; import javax.naming.directory.Attributes; import javax.naming.directory.BasicAttribute; import javax.naming.directory.BasicAttributes; import javax.naming.directory.ModificationItem; import javax.naming.directory.SearchControls; import javax.naming.directory.SearchResult; import javax.naming.ldap.InitialLdapContext; import javax.naming.ldap.LdapContext; import javax.naming.ldap.LdapName; import java.text.MessageFormat;…
Read MoreVery useful example to get the values of a cascading customfield using Groovy in Jira.
Read MoreIMPORTANT NOTE: these codes would work only if eazyBI is used for Jira Cloud. For more info please see eazyBI support comments (in the comments section of this post) eazyBI does not track the change history for those fields by default. However, you may add those fields to data import. This solution requires changes in…
Read MoreFor me, the best videos from the last Atlassian Summit, very interesting ones. Tunning the JAVA Garbage Collection… (Reduce the downtime of your JIRA) Datacenter in AmazonWS (AWS) What’s NEW in Datacenter
Read MoreThe following example JVM settings are recommended for most production servers (JIRA works better as standalone installation): -server -Xms24G -Xmx24G -XX:PermSize=512m -XX:+UseG1GC -XX:MaxGCPauseMillis=200 -XX:ParallelGCThreads=20 -XX:ConcGCThreads=5 -XX:InitiatingHeapOccupancyPercent=70 For production replica servers (test environments), use the example settings: -server -Xms4G -Xmx4G -XX:PermSize=512m -XX:+UseG1GC -XX:MaxGCPauseMillis=200 -XX:ParallelGCThreads=20 -XX:ConcGCThreads=5 -XX:InitiatingHeapOccupancyPercent=70 For standalone installations (recommended in JIRA large installations), use the…
Read MoreThe performance seems better with this values More info in: https://github.com/rsim/mondrian-olap/issues/28 https://docs.eazybi.com/display/EAZYBIPRIVATE/Custom+schema+definition+-+Aggregate+tables https://docs.eazybi.com/display/EAZYBIJIRA/Installation+and+setup#Installationandsetup-Databaseconnection Values info: http://infocenter.pentaho.com/help/index.jsp?topic=%2Fperformance_tuning_guide%2Fconcept_mondrian_properties.html
Read More