Modifying Integration Name & Acronym
Change your Integration name, acronym, and description
Last updated
Change your Integration name, acronym, and description
Last updated
You might want to change the name, acronym, or description of an integration that you already have installed. This is particularly useful when you're using an integration such as Splunk, Elasticsearch, PostgreSQL or any other integrations that connect to data sources that can store a wide range of data. By changing the name to something more specific, your users will be able to more easily identify the purpose and value of the integration.
If you are looking to install a second copy of an integration (which also involves changing the integration's name), see the below guide.
To change an existing integration's name, acronym, or description, you will need to modify the integration's config.js
file which is located within the config
directory of the integration's directory. Open it with a text editor on your server:
Once the config.js
file is open you will see the name
and acronym
properties near the top of the file. As an example, the Splunk integration will look similar to this:
Modify the name
, acronym
, and optionally the description
to your new values. For the name
property we generally recommend appending a descriptor to the base name of the integration. For the acronym
property we recommend using all caps and keeping it short. Here is an example of a modified config.js
file:
Ensure the values you use remain enclosed within single quotes and that the end of each line maintains the trailing comma.
Once you've made your changes, save the file.
In order for the Polarity Server to pick up the configuration changes, you will need to increment the integration's version. The version of the integration is located within the integration's package.json
file. Open it with a text editor on your server:
Once open, find the version
property and append a dash and a counter to signify that you have made a modification to the integration. In the example below the base version was 3.3.0
and we modified it to be 3.3.0-1
Finally, you can restart the integration from the integration's settings page within the Polarity interface by clicking on the "Actions" drop down in the top right and selecting "Restart Integration"
After the integration restarts you should see your updated integration name, acronym, and description.