In this section
You can search for relevant logs by searching the logs connector-plugin
, connector-plugin-warning
, and connector-plugin-error
, or by searching directly for your connector class.
Tableau Log Viewer is a good tool to view and filter relevant logs when developing your connector.
If your connector does not show up, please check the Tableau logs for any failures for your connector in /Users/<username>/Documents/My Tableau Repository/Logs/log.txt
. Tableau logs all the file paths for the tacos attempted to load under the keyword connector-plugin
, and you can search for your connector class or your taco’s file name to jump to it directly to that part. If you don’t see any log lines for your connector, please check it in the correct place. Follow the section Use a connector built with Tableau Connector SDK
in this doc to check where the taco should be placed.
If you get
Running the plugin script failed
Running the plugin script component exceeded the timeout: %1ms
Check that you’ve correctly implemented connectionBuilder.js
and connectionProperties.js
. Please follow this example for the Postgres JDBC connector as the starting point for all the files necessary to successfully build a connector. You can see the exact javascript error by searching for QJSEngine
, which will be nearby to a connector-plugin-error
log line.If you are getting Package signature verification failed during connection creation.
in the logs for your connector, you can still use your connector by disabling the signature verification during development by using:
"C:\Program Files\Tableau\Tableau 2023.2\bin\tableau.exe" -DDisableVerifyConnectorPluginSignature=true
/Applications/Tableau\ Desktop\ 2023.2.app/Contents/MacOS/Tableau -DDisableVerifyConnectorPluginSignature=true
.
This error will show up when you click “Sign in” on the connector dialog.
You can see the signature error in the logs, or outside of Tableau by running jarsigner --verify --strict --verbose --certs [path_to_taco]
.To fix the issue with signature verification follow the Sign your packaged connector with jarsigner section of Package and Sign Your Connector for Distribution.