Deep-dive on the Next Gen Platform. Join the Webinar!

Skip Navigation
Show nav
Dev Center
  • Get Started
  • Documentation
  • Changelog
  • Search
  • Get Started
    • Node.js
    • Ruby on Rails
    • Ruby
    • Python
    • Java
    • PHP
    • Go
    • Scala
    • Clojure
    • .NET
  • Documentation
  • Changelog
  • More
    Additional Resources
    • Home
    • Elements
    • Products
    • Pricing
    • Careers
    • Help
    • Status
    • Events
    • Podcasts
    • Compliance Center
    Heroku Blog

    Heroku Blog

    Find out what's new with Heroku on our blog.

    Visit Blog
  • Log inorSign up
Hide categories

Categories

  • Heroku Architecture
    • Compute (Dynos)
      • Dyno Management
      • Dyno Concepts
      • Dyno Behavior
      • Dyno Reference
      • Dyno Troubleshooting
    • Stacks (operating system images)
    • Networking & DNS
    • Platform Policies
    • Platform Principles
  • Developer Tools
    • Command Line
    • Heroku VS Code Extension
  • Deployment
    • Deploying with Git
    • Deploying with Docker
    • Deployment Integrations
  • Continuous Delivery & Integration (Heroku Flow)
    • Continuous Integration
  • Language Support
    • Node.js
      • Working with Node.js
      • Troubleshooting Node.js Apps
      • Node.js Behavior in Heroku
    • Ruby
      • Rails Support
      • Working with Bundler
      • Working with Ruby
      • Ruby Behavior in Heroku
      • Troubleshooting Ruby Apps
    • Python
      • Working with Python
      • Background Jobs in Python
      • Python Behavior in Heroku
      • Working with Django
    • Java
      • Java Behavior in Heroku
      • Working with Java
      • Working with Maven
      • Working with Spring Boot
      • Troubleshooting Java Apps
    • PHP
      • PHP Behavior in Heroku
      • Working with PHP
    • Go
      • Go Dependency Management
    • Scala
    • Clojure
    • .NET
      • Working with .NET
  • Databases & Data Management
    • Heroku Postgres
      • Postgres Basics
      • Postgres Getting Started
      • Postgres Performance
      • Postgres Data Transfer & Preservation
      • Postgres Availability
      • Postgres Special Topics
      • Migrating to Heroku Postgres
    • Heroku Key-Value Store
    • Apache Kafka on Heroku
    • Other Data Stores
  • AI
    • Working with AI
  • Monitoring & Metrics
    • Logging
  • App Performance
  • Add-ons
    • All Add-ons
  • Collaboration
  • Security
    • App Security
    • Identities & Authentication
      • Single Sign-on (SSO)
    • Private Spaces
      • Infrastructure Networking
    • Compliance
  • Heroku Enterprise
    • Enterprise Accounts
    • Enterprise Teams
    • Heroku Connect (Salesforce sync)
      • Heroku Connect Administration
      • Heroku Connect Reference
      • Heroku Connect Troubleshooting
  • Patterns & Best Practices
  • Extending Heroku
    • Platform API
    • App Webhooks
    • Heroku Labs
    • Building Add-ons
      • Add-on Development Tasks
      • Add-on APIs
      • Add-on Guidelines & Requirements
    • Building CLI Plugins
    • Developing Buildpacks
    • Dev Center
  • Accounts & Billing
  • Troubleshooting & Support
  • Integrating with Salesforce
  • Add-ons
  • All Add-ons
  • SentinelDB
SentinelDB

This add-on is operated by LogSentinel B.V.

A privacy by design, GDPR-compliant database with per-record encryption

SentinelDB

Last updated April 13, 2020

The SentinelDB add-on is currently in beta.

Table of Contents

  • Provisioning the add-on
  • Local setup
  • Using with any programming language
  • Dashboard
  • Migrating between plans
  • Removing the add-on
  • Support

SentinelDB is a cloud-based datastore that encrypts data per-record and ensures compliance with data protection regulations like GDPR and HIPAA.

Integration with SentinelDB is simple via its RESTful API.

The full documentation is available here, including:

  • Getting Started – explaining the core concepts of SentinelDB and giving a simple API example
  • Architecture – an overview of SentinelDB’s security architecture
  • API reference – a list of all the API methods and their descriptions
  • Features – explaining all features of SentinelDB
  • Compliance FAQ – answering your compliance-related questions about GDPR, HIPAA and similar regulations

Provisioning the add-on

SentinelDB can be attached to a Heroku application via the CLI:

A list of all plans available can be found here.

$ heroku addons:create sentineldb
-----> Adding sentineldb to sharp-mountain-4005... done, v18 (free)

After you provision sentineldb, the SENTINELDB_ORGANIZATION_ID and SENTINELDB_ORGANIZATION_SECRET config vars are available in your app’s configuration. They contains the credentials needed to invoke the SentinelDB API. You can confirm this via the heroku config:get command:

$ heroku config:get SENTINELDB_ORGANIZATION_ID

After you provision SentinelDB, your application should be configured to fully integrate with the add-on.

Local setup

Environment setup

After you provision the add-on, it’s necessary to locally replicate its config vars so your development environment can operate against the service.

Use the Heroku Local command-line tool to configure, run, and manage process types specified in your app’s Procfile. Heroku Local reads configuration variables from a .env file. To view all of your app’s config vars, type heroku config. Use the following command for each value that you want to add to your .env file:

$ heroku config:get SENTINELDB_ORGANIZATION_ID -s  >> .env
$ heroku config:get SENTINELDB_ORGANIZATION_SECRET -s  >> .env

Credentials and other sensitive configuration values should not be committed to source-control. In Git, exclude the .env file with: echo .env >> .gitignore.

For more information, see the Heroku Local article.

Using with any programming language

Integrating SentinelDB is language-independent - you just use your favorite REST client to call our API. You can get started by reading our documentation

Dashboard

For more information on the features available within the SentinelDB dashboard, please see the docs at https://docs.sentineldb.io/.

The SentinelDB dashboard enables you to perform a wide variety of database-related tasks, including:

  • Define your schemas
  • Perform queries
  • See trends in your data
  • Check the audit trail of the data

You can access the dashboard via the CLI:

$ heroku addons:open sentineldb
Opening sentineldb for sharp-mountain-4005

or by visiting the Heroku Dashboard and selecting the application in question. Select SentinelDB from the Add-ons menu.

Migrating between plans

Application owners should carefully manage the migration timing to ensure proper application function during the migration process.

Use the heroku addons:upgrade command to migrate to a new plan.

$ heroku addons:upgrade sentineldb:newplan
-----> Upgrading sentineldb:newplan to sharp-mountain-4005... done, v18 ($49/mo)
       Your plan has been updated to: sentineldb:newplan

Removing the add-on

You can remove sentineldb via the CLI:

This will destroy all associated data and cannot be undone!

$ heroku addons:destroy sentineldb
-----> Removing sentineldb from sharp-mountain-4005... done, v20 (free)

Support

All SentinelDB support and runtime issues should be submitted via one of the Heroku Support channels. Any non-support related issues or product feedback is welcome at contact@logsentinel.com.

Keep reading

  • All Add-ons

Feedback

Log in to submit feedback.

Zara 4 Sentry

Information & Support

  • Getting Started
  • Documentation
  • Changelog
  • Compliance Center
  • Training & Education
  • Blog
  • Support Channels
  • Status

Language Reference

  • Node.js
  • Ruby
  • Java
  • PHP
  • Python
  • Go
  • Scala
  • Clojure
  • .NET

Other Resources

  • Careers
  • Elements
  • Products
  • Pricing
  • RSS
    • Dev Center Articles
    • Dev Center Changelog
    • Heroku Blog
    • Heroku News Blog
    • Heroku Engineering Blog
  • Twitter
    • Dev Center Articles
    • Dev Center Changelog
    • Heroku
    • Heroku Status
  • Github
  • LinkedIn
  • © 2025 Salesforce, Inc. All rights reserved. Various trademarks held by their respective owners. Salesforce Tower, 415 Mission Street, 3rd Floor, San Francisco, CA 94105, United States
  • heroku.com
  • Legal
  • Terms of Service
  • Privacy Information
  • Responsible Disclosure
  • Trust
  • Contact
  • Cookie Preferences
  • Your Privacy Choices