Docs Menu

Docs HomeView & Analyze DataAtlas Charts

Embed a Chart Authenticated with Atlas App Services

On this page

  • Prerequisites
  • Procedures
  • Enable Authenticated Embedding for a Chart
  • Configure Charts to use your Custom Atlas App Services Provider
  • Create a Web App to Display Your Chart
  • Customize the Node.js App

Atlas App Services is a serverless platform that enables developers to quickly build applications without having to set up server infrastructure. App Services offers several authentication options, including Google OAuth, Facebook Login, and email/password. You can use the authentication mechanism from an app service to control data access for an embedded chart.

This tutorial shows you how to:

  • Enable authenticated embedding for a chart.

  • Use the Embedding SDK to embed a chart authenticated by a custom Atlas App Services provider.

  • Use your app service to control the data in your embedded chart.

Note

This tutorial does not cover creating an app service with authentication. See the Atlas App Services documentation for app creation tutorials.

  • You must be an Atlas Project Owner to configure embedding authentication providers for your linked Charts instance.

  • You must have a chart which uses your app's backing database as its data source. For more information about creating a chart, see Build Charts.

Enable authenticated embedding to generate a Charts Base URL and a chart ID. You will need your Charts Base URL and chart ID to display your chart on a web page.

1

From your dashboard page, select the dashboard containing the chart you wish to embed.

2

From the dashboard, click at the top-right of the chart to access its embedding information. Select Embed chart from the dropdown menu.

Note

If a chart is on a dashboard that has embedding enabled, the Embed Chart option is automatically enabled. Therefore, you can't select the Embed chart option for charts within dashboards that have embedding enabled.

3

If you have already enabled external sharing on the data source this chart uses, skip this step. If you haven't yet enabled embedding on the data source, you can do so now. Click the Configure external sharing link.

4
Embed authenticated chart
click to enlarge
5
6

You can specify a function to inject a MongoDB filter document for each user who views the chart. This is useful for rendering user-specific charts.

Example

The following filter function only renders data where the ownerId field of a document matches the value of the Embedding Authentication Provider's token's sub field:

function getFilter(context) {
return { ownerId: context.token.sub };
}

Tip

See also:

To learn more about injecting filters per user, see Inject User-Specific Filters.

7

Specify the fields on which chart viewers can filter data. By default, no fields are specified, meaning the chart cannot be filtered until you explicitly allow at least one field.

Tip

See also:

To learn more about filterable fields, see Specify Filterable Fields.

8

Use these values in your application code together with your Embedded Authentication Provider attributes to embed your chart.

1
  1. If Charts is not already displayed, click Charts in the navigation bar.

  2. Click Embedding in the sidebar.

  3. Click the Authentication Settings tab.

2
3
4
5
6
7

In addition to authenticating users for embedded chart access, you can perform fine-grained data access control with your app service service rules. Set the toggle switch to On if you want to enable rule enforcement.

When this option is enabled, any App Services rules defined on collections will be observed by Charts when retrieving chart data. You can use this feature to restrict access to the data shown on your chart, including showing different subsets of data to different users, depending on their role.

Note

  • This option assumes that the data source for this chart uses the same MongoDB database and collection as your app service.

  • Using this option may have a performance impact, so you should leave it off if you do not need to restrict data access based on App Services rules.

8

Enter the name of the service that fetches data from MongoDB. To find the name of your data service:

  1. Navigate to your app service.

  2. Click Clusters in the sidebar navigation.

  3. The service name is listed under App Service Name.

9

If you already have an app in which to display your chart, you're ready to add an embedded chart. If not, proceed with the remaining steps to create a new app.

MongoDB offers a pre-built example app that shows how to use the Embedding SDK to display an embedded chart using App Services authentication.

Clone the GitHub repository and follow the instructions in the Readme file to begin using the app. You can run the app as-is, or you can customize it to use the chart you created earlier.

Note

The example app assumes that your app service uses email/password authentication. If your app service uses another authentication mechanism, the example app will require additional customization.

All the lines you need to edit are marked with a comment containing ~REPLACE~.

1

The file index.js is located in the src directory.

2

Replace the existing App ID with your App ID, which you can find on the left side of your app service UI.

const client = Stitch.initializeAppClient(
'authentication-sample-eibkj', // Optional: ~REPLACE~ with your App ID
{
3

Replace the existing Charts Base URL with the Base URL of the chart you want to display. Your Charts Base URL is visible in the embedding options modal window. See Embedding SDK for detailed instructions on enabling embedding for a chart.

const sdk = new ChartsEmbedSDK({
baseUrl: "https://charts-dev.mongodb.com/charts-test2-pebbp", // Optional: ~REPLACE~ with your Charts URL
getUserToken: () => getRealmUserToken(client),
});

Note the getRealmUserToken() function in the code snippet above, which returns the JWT from the existing Atlas App Services authentication session. getRealmUserToken() must be imported from the Embedding SDK, as you can see in the import statement on line 2 of the example app:

import ChartsEmbedSDK, { getRealmUserToken } from "@mongodb-js/charts-embed-dom";

You can also include the Embedding SDK with inline Javascript in an HTML page, as shown in the following code snippet:

<script src="https://s3.amazonaws.com/stitch-sdks/js/bundles/4.6.0/stitch.js"></script>
<script src="https://unpkg.com/@mongodb-js/charts-embed-dom"></script>

To use the getRealmUserToken() function in this scenario, import it from the SDK:

ChartsEmbedSDK.getRealmUserToken()
4

Replace the existing chart ID with the ID of the chart you want to display. Your chart ID is visible in the embedding options modal window. See Embedding SDK for detailed instructions on enabling embedding for a chart.

const chart = sdk.createChart({
chartId: "a2e775e6-f267-4c2c-a65d-fbf3fad4a4f2", // Optional: ~REPLACE~ with your Chart ID
});

After you finish customizing the app, it's ready to run.

←  Embed a Chart Authenticated with Google Sign-InEmbed an Authenticated Chart using a Custom JWT Provider →