npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@biztory/n8n-nodes-autom8-tableau-alert-trigger

v0.5.8

Published

Autom8 Tableau Alert Trigger node for n8n. Polls a Tableau view or datasource on a schedule and fires when a configured condition is met.

Readme

@biztory/n8n-nodes-autom8-tableau-alert-trigger

n8n community node that polls a Tableau view or published datasource on a schedule and fires a workflow when a configured condition is met (any rows returned, row count threshold, etc.).

📚 Full documentation: https://biztory.atlassian.net/wiki/spaces/A8/pages/1123254273/n8n+Node ℹ️ More information: https://autom8.biztory.com

Installation

Follow the installation guide in the n8n community nodes documentation, and search for @biztory/n8n-nodes-autom8-tableau-alert-trigger.

Authentication

This node authenticates using a Tableau Connected App (Direct Trust). Connected Apps let a service account sign JWT tokens instead of using a stored password.

1. Create a Connected App in Tableau

  1. In Tableau Cloud or Tableau Server, go to Settings → Connected Apps.
  2. Click New Connected App → Direct Trust.
  3. Give it a name (e.g. n8n integration) and click Save.
  4. Open the Connected App and click Generate New Secret.
  5. Copy and store the Client ID, Secret ID, and Secret Value — the secret value is only shown once.

2. Configure the credential in n8n

Add a new Autom8 Tableau Connected App credential and fill in the following fields:

| Field | Description | |---|---| | Server URL | Base URL of your Tableau instance, e.g. https://prod-useast1.online.tableau.com | | Site Content URL | The site name that appears in your Tableau URLs. Leave empty for the Default site. | | API Version | Tableau REST API version, e.g. 3.23. Check your Tableau release notes for the supported version. | | Client ID | From the Connected App overview page. | | Secret ID | From the generated secret. | | Secret Value | From the generated secret (shown only at creation time). | | Username | The Tableau username (email) the node will impersonate when querying data. | | Scopes | Space-separated JWT scopes. Use tableau:views:download for the View source, tableau:viz_data_service:read for the Datasource source, or both. |

Usage

  1. Add the Autom8 Tableau - Data Alert Trigger node to a new workflow.
  2. Select the credential you created above.
  3. Pick a Source (View or Datasource) and a Condition (Any Rows Returned or Row Count Threshold).
  4. The node polls on n8n's configured polling interval and emits items whenever the condition is met.

Finding a View ID or Datasource ID

The View ID and Datasource ID fields expect the object's LUID — the UUID-style identifier visible in the Tableau REST API and in the object's URL on Tableau Server/Cloud.

Example: alert when open support tickets exceed a threshold

Scenario: A Tableau view is pre-filtered to show only open support tickets. The workflow should fire and post a Slack message whenever that count exceeds 50.

Trigger node configuration:

| Setting | Value | |---|---| | Source | View | | View ID | (LUID of your "Open Tickets" view) | | Condition | Row Count Threshold | | Operator | > (Greater Than) | | Threshold | 50 | | Emit | Single Summary Item |

The trigger emits one item with the shape:

{
  "row_count": 63,
  "triggered_at": "2025-06-01T09:15:00.000Z",
  "source": "view",
  "rows": [ ... ]
}

Connect a Slack node after the trigger and reference {{ $json.row_count }} in the message body:

⚠️ 63 open support tickets — threshold of 50 exceeded. [View in Tableau →]

Compatibility

Tested and supported starting with n8n version 2.18.5.

Resources