Last updated
Was this helpful?
Last updated
Was this helpful?
In a previous article, we have already seen how to . To complete the picture, learn here how to manually export content from the Portal and, optionally, how to create a content pack for combining both Finder and Portal content into a single file.
The operations described in this article should only be performed by a Nexthink Engineer or a Nexthink Certified Partner. If you need help or assistance, please contact your Nexthink Certified Partner.
There are two ways to export modules:
Using the graphical user interface (GUI)
Using the command line interface (CLI)
The Portal GUI provides a quick way to export a specific module with all its associated metrics.
Please note that the categories and scores used in the metrics are not exported. So when importing the content pack using the Finder, the required categories and scores must be present.
To export a personal or published module:
Log in to the Portal.
Display the desired module.
Click on the menu icon at the top right corner.
Select "Export module..." and the web browser will download it as an XML file.
To export a published module:
Log in to the CLI of the appliance hosting the Portal.
Go to the directory holding the export script:
cd /var/nexthink/portal/rsquery
3. Optional: Display the usage of the export script:
./exportLibraryV6.py --help
4. Optional: List all the published modules available for export:
./exportLibraryV6.py --list
5. Export a module to an XML file:
./exportLibraryV6.py --export --moduleName="name" \
--exportfilename="/tmp/module.xml"
You can export more than one module at a time by specifying several modules by their name or their UIDs in the export command.
With the methods for exporting modules from the Portal and other content from the Finder, you have now at your disposal the tools to export any kind of content from one setup to another. However, for your convenience, you may want to put all the content that you want to export from both the Portal and the Finder in a single content pack file.
To that end, edit your own content pack XML file and add all the content to it. If you want to include Portal modules, it is recommended to reuse the XML file generated by the Portal as a starting point to build your own content pack. In any case, the XML of a content pack has the following structure:
Inside each Content tag, copy the Finder or Portal content that you have previously exported as XML files, after removing their own XML header. In the case of Finder content, the XML must contain a tree of objects and not a single object. To export a tree of objects from the Finder, group the content in a folder and export the folder. Alternatively, export a tree of objects by exporting a whole section: right-click the header of a section in the accordion and select Export. For instance, to export all your categories at once from the Finder, right-click the header of the Categories section in the left-hand side accordion and select Export.
Indicate the type of content that you have copied inside the Content tag by setting the value of the Type attribute. See below the list of all possible values for the Type attribute:
Indicates that the content are modules exported from the Portal.
Indicates that the content is a set of investigations.
Indicates that the content is a set of services.
Indicates that the content is a set of metrics.
Indicates that the content is a set of categories.
Replace Object by the actual name of an object to indicate that the content is a set of one-clicks relative to that object. Object may be one of User, Device, Package, Application, Executable, Binary, Port, Destination, Domain, Printer, Execution, Connection, or Web_request.
Indicates that the content is a set of scores.
Indicates that the content is a set of campaigns.
Indicates that the content is a set of remote actions.
Note that the Settings section in the accordion of the Finder is special when exporting content, because it exports only the content that it is displaying at the moment, be it alerts, or one-clicks.
One-clicks in particular are also special on their own. When exporting all the one-clicks at once and not only the one-clicks associated to one kind of object, the Finder actually generates a content pack (not a simple tree) which itself includes all the trees of one-clicks associated to each kind of object. Keep this in mind when editing your own content pack.
RELATED TASKS
That file can be imported using the Finder, the same way as you would .
The export process using the CLI takes the specified module and produces an XML file as output. This file can later be imported into another setup from the Finder in the same way as you would . Note that the tool only lists and exports published modules by default.