Ylem documentation
  • 🗒️General information
    • Introduction to Ylem
    • Quick start guide
    • Release notes
  • 🔬Open-source edition
    • Installation
    • Usage of Apache Kafka
    • Task processing architecture
    • Configuring integrations with .env variables
  • 💡Integrations
    • Connecting an integration
    • Library of integrations
      • Amazon Redshift
      • Apache Kafka
      • APIs
      • Atlassian Jira
      • AWS Lambda
      • AWS RDS
      • AWS S3
      • ClickHouse
      • ElasticSearch
      • E-mail
      • Google Big Query
      • Google Cloud SQL
      • Google Pub/Sub
      • Google Sheets
      • Immuta
      • Incident.io
      • Jenkins
      • Hubspot
      • Microsoft Azure SQL
      • MySQL
      • OpenAI ChatGPT
      • Opsgenie
      • PostgreSQL
      • PlanetScale
      • RabbitMQ
      • Salesforce
      • Slack
      • Snowflake
      • Tableau
      • Twilio. SMS
      • WhatsApp (through Twilio)
    • Initial demo data source
  • 🚡Pipelines
    • Pipeline management
    • Tasks
      • Aggregator
      • API Call
      • Code
      • Condition
      • External trigger
      • Filter
      • For each
      • GPT
      • Merge
      • Notification
      • Query
      • Pipeline runner
      • Processor
      • Transformer
    • Running and scheduling pipelines
    • Library of templates
    • Environment variables
    • Mathematical functions and operations
    • Formatting of messages
  • 📈Statistics and profiling
    • Statistics of runs
    • Slow tasks
  • 📊Metrics
    • Metric management
    • Using previous values of a metric
  • 💼Use cases, patterns, templates, examples
    • Use cases
    • Messaging patterns
      • Datatype Channel
      • Message Dispatcher
      • Messaging Bridge
      • Message Bus
      • Message Filter
      • Message Router
      • Point-to-Point Channel
      • Publish-Subscribe Channel
      • Pull-Push
    • Functional use cases
      • Streaming from Apache Kafka and messaging queues
      • Streaming from APIs
      • Streaming from databases
      • Data orchestration, transformation and processing
      • Usage of Python and Pandas
      • KPI Monitoring
      • OKRs and custom metrics
      • Data Issues & Incidents
      • Reporting
      • Other functional use cases
    • Industry-specific use cases
      • Finance and Payments
      • E-commerce & Logistics
      • Customer Success
      • Security, Risk, and Anti-Fraud
      • Anti-Money Laundering (AML)
  • 🔌API
    • OAuth clients
    • API Reference
  • 👁️‍🗨️Other resources
    • FAQ
    • Our blog on Medium
Powered by GitBook
On this page
  • Drop in user signups
  • Drop in user logins
  • Monitor customers stuck in the onboarding
  • Customers stuck in the KYC process for too long
  • Customer engagement summary report

Was this helpful?

Edit on GitHub
  1. Use cases, patterns, templates, examples
  2. Industry-specific use cases

Customer Success

PreviousE-commerce & LogisticsNextSecurity, Risk, and Anti-Fraud

Last updated 1 year ago

Was this helpful?

Customer Success is typically the first department that receives calls from customers. It is your first line of defense that will take the hit when something goes wrong.

Therefore notifying them and streaming all the necessary customer information before customer calls to their communication channels and software APIs is important.

Drop in user signups

The following pipeline example helps to retrieve all signups from today, compare the number of them with the target, and notify the customer success team if it is lower than expected:

Drop in user logins

The same monitoring can be implemented for user logins. Just the query needs to be based on a different field:

Monitor customers stuck in the onboarding

Customers stuck in the KYC process for too long

One special modification of the previous example is the monitoring of customers who got stuck in the KYC process for too long.

If your data source supports such differentiation, you can even automatically detect if the root cause is on your side, your customers' side, or if the problem is related to your KYC provider.

Customer engagement summary report

// Simple SQL to get data
SELECT
  COUNT(*) as cnt,
  status
FROM customer_success.users
GROUP BY status
ORDER by cnt DESC;

The result can be sent once per time (usually per week) to your customer success team.

💼
Pipeline example
Query task
Condition task
Notification task
Example pipeline
Query task
CSV report as a result
Pipeline example