Managing data exporters
Last updated
Last updated
Before Nexthink can export data to any third-party supported tools, you must create and define new credentials to connect and enable such communication and then apply the credentials when configuring a data exporter. Refer to the Connector credentials documentation for more information.
Nexthink uses a mechanism that regulates the delivery of messages sent to third-party tools in order to prevent them from getting overloaded with data. This means that the delivery of information is not immediate and some delays may occur.
From the main menu in the Nexthink web interface:
Click on Administration > Outbound connectors > Data Exporter to open the administration page.
All data exporters are listed on the Data exporters administration page. The fields shown are:
Active toggle to enable/disable data exporters.
Name of the data exporter.
Type of data exporter.
Scheduling Frequency matching the NQL time period: Hourly, Daily = 1d, Weekly = 7d.
Last updated date for the data exporter.
Last execution indicating success or failure of the data exporter execution. See the section Troubleshooting a data exporter on this page.
From the Data exporters administration page:
Click the New Exporter button in the top right corner of the page to open the data exporter configuration page.
Select a data exporter Type from the popup. Refer to the links below depending on the data exporter:
Hover over the data exporter listed on the Data exporters administration page to reveal icons on the right side of the selected item:
Click on the pencil icon to open the configuration page for the data exporter.
Click on the bin icon to delete the data exporter.
Deleting a data exporter cannot be undone.
Data exporters can fail for various reasons, such as expired credentials or unavailable resources. These failures may lead to missing data in your data lake. Understanding these failures is crucial to resolving issues quickly and creating visibility into possible problems with the data displayed on the dashboards.
The system saves each bulk data export event with details such as export duration time, status and data export NQL ID in the platform.date_exporter_logs
table. Use the following NQL query to investigate the cause of specific data exporter failures:
Nexthink recommends configuring a monitor that detects all data exporter failures to help you stay informed and react quickly. Use the following monitor NQL query and settings:
If an execution fails, the system displays a red icon next to the date of the last execution attempt on the Data exporters configuration page. Hover over the failed status to reveal a pop-up containing detailed error information.
Nexthink enables employees to monitor global limits and daily data export consumption based on specific use cases.
Run the following NQL query to investigate bulk data export usage:
This returns the total number of rows exported over the past 24 hours.
Send a GET status request to query daily consumption. The API includes the following headers in its response:
x-nexthink-daily-record-consumption
: The global daily limits consumed.
x-nexthink-daily-record-limit
: Default daily export global limit. This limit resets daily at 00:00 UTC.
x-nexthink-individual-query-record-limit
: The limit on how many rows can be exported with a single exporter.
Refer to the NQL API documentation for more information.
Create a custom dashboard from scratch to proactively monitor bulk data usage according to your own needs and specific use cases.
To create a dashboard:
Select Live Dashboards from the main menu.
Click on Create a dashboard in the top-right corner of the empty Dashboards page.
Enter a meaningful name for the dashboard and click Save.
After you save your dashboard, add widgets in edit mode:
Click on Add a widget to add a new widget.
Select the widget type you want to add:
Visualizations, to present data as a line chart, bar chart, gauge chart, table or other type of visualization.
Heading, to enter the name of a new section or a group of widgets on your dashboard.
Fill in the visualization fields in the Add a widget pop-up.
Click Save widget.
Refer to the Creating dashboards documentation for more information.
When a limit is exceeded, the bulk data export log notifies customers about the failure. The log provides detailed information, including the number of records that caused the issue.
Run the following NQL query to identify exports that failed due to exceeded limits:
RELATED TASK