Receive dashboard alerts and share visualizations directly in Slack channels with automated notifications.

Overview

Send Zurck dashboards and alerts directly to Slack channels. Set up automated reports that post daily, weekly, or based on data thresholds. Team members can view dashboards without leaving Slack, and interactive charts allow drill-down exploration. Perfect for keeping distributed teams informed about key metrics.

How it works

Install the Lumis Slack app and authorize channel access. Configure which dashboards to share and when. Set alert conditions that trigger Slack notifications when data crosses thresholds. Team members receive chart images with links to interactive dashboards. Use slash commands to query data directly in Slack.

Configure - implementation details

Slack API enables rich message formatting with interactive components. Image rendering service generates chart previews for in-app viewing.

// Slack dashboard notification
const slack = new WebClient(process.env.SLACK_TOKEN);

async function postDashboard(channel, dashboardId) {
  const imageUrl = await renderDashboard(dashboardId);
  
  await slack.chat.postMessage({
    channel,
    text: 'Daily metrics update',
    blocks: [{
      type: 'image',
      image_url: imageUrl,
      alt_text: 'Dashboard snapshot'
    }, {
      type: 'actions',
      elements: [{
        type: 'button',
        text: {type: 'plain_text', text: 'View Full Dashboard'},
        url: `https://lumis.app/dash/${dashboardId}`
      }]
    }]
  });
}

Slack

Category

Productivity

Date Added

Jun 9, 2025

Ready to transform your data workflow?

14 day trial, no credit card required.