Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -275,10 +275,27 @@ Specify the folder you want to clone by adding it to the sparse-checkout configu
echo "embedding_qs_series_2" >> .git/info/sparse-checkout
```

Finally, pull the specified folder from the repository:
Pull the specified folder from the repository:
```code
git pull origin main
```
<aside class="positive">
<strong>IMPORTANT:</strong><br> The next step requires Node.js. If it has never been installed on your machine, install it from the official site:

[Download Node.js](https://nodejs.org/)

We recommend installing the **LTS (Long Term Support)** version.

Once installed, you can verify the installation in Terminal with:

node -v
npm -v
</aside>

Finally, load node into the local project:
```code
npm install
```

After the command runs, click the button to `Open Folder`:

Expand Down Expand Up @@ -505,7 +522,7 @@ In the `Create client credentials` modal, select `Embedding`, give it a name, an
<img src="assets/gs_14.png" width="800"/>

<aside class="negative">
<strong>NOTE:</strong><br> Client credentials can also be used for access to Sigma's REST API.
<strong>NOTE:</strong><br> Client credentials can also be used for access to Sigma's REST API if the "REST API" checkbox is also selected.
</aside>

Click `Create`.
Expand Down Expand Up @@ -713,11 +730,7 @@ There are a few ways to see what embed users are doing in Sigma. After a user ac
<strong>IMPORTANT:</strong><br> Any changes to an embed user’s account type or team assignment in Sigma will be overwritten the next time they access embedded content. This is because the native application is responsible for passing those parameters at runtime. Users marked as "embed" in Sigma cannot log in directly to Sigma.
</aside>

Sigma also provides extensive usage reporting in `Administration` > `Usage` > `Embedding`:

<img src="assets/gs_29.png" width="800"/>

Customers can also enable audit logging and manually analyze raw event logs if preferred. Logs can be exported for integration with external systems.
Customers can enable audit logging and manually analyze raw event logs if preferred. Logs can be exported for integration with external systems.

To learn more, see [Access and explore audit logs](https://help.sigmacomputing.com/docs/access-and-explore-audit-logs)

Expand Down
18 changes: 18 additions & 0 deletions site/sigmaguides/src/embedding_16_JWT/embedding_16_JWT.md
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,24 @@ Finally, pull the specified folder from the repository:
git pull origin main
```

<aside class="positive">
<strong>IMPORTANT:</strong><br> The next step requires Node.js. If it has never been installed on your machine, install it from the official site:

[Download Node.js](https://nodejs.org/)

We recommend installing the **LTS (Long Term Support)** version.

Once installed, you can verify the installation in Terminal with:

node -v
npm -v
</aside>

Finally, load node into the local project:
```code
npm install
```

After the command runs, click the button to `Open Folder`:

<img src="assets/jwt2.png" width="800"/>
Expand Down