Skip to content

Commit 883cef7

Browse files
docs: Added file, images and update the links
2 parents 60076cc + 4c7e5fe commit 883cef7

File tree

6 files changed

+41
-2
lines changed

6 files changed

+41
-2
lines changed

documents/CustomizingAzdParameters.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ By default this template will use the environment name as the prefix to prevent
2121
| `AZURE_OPENAI_EMBEDDING_MODEL` | string | `text-embedding-ada-002` | Sets the name of the embedding model to use. |
2222
| `AZURE_ENV_IMAGETAG` | string | `latest` | Sets the image tag (`latest`, `dev`, `hotfix`, etc.). |
2323
| `AZURE_OPENAI_EMBEDDING_MODEL_CAPACITY` | integer | `80` | Sets the capacity for the embedding model deployment. |
24-
| `AZURE_ENV_LOG_ANALYTICS_WORKSPACE_ID` | string | `<Existing Workspace Id>` | Reuses an existing Log Analytics Workspace instead of creating a new one. |
24+
| `AZURE_ENV_LOG_ANALYTICS_WORKSPACE_ID` | string | Guide to get your [Existing Workspace ID](/documents/re-use-log-analytics.md) | Reuses an existing Log Analytics Workspace instead of creating a new one. |
25+
| `USE_LOCAL_BUILD` | string | `false` | Indicates whether to use a local container build for deployment. |
2526
| `AZURE_EXISTING_AI_PROJECT_RESOURCE_ID` | string | `<Existing AI Project resource Id>` | Reuses an existing AIFoundry and AIFoundryProject instead of creating a new one. |
2627

2728

@@ -38,4 +39,4 @@ azd env set <PARAMETER_NAME> <VALUE>
3839

3940
```bash
4041
azd env set AZURE_LOCATION westus2
41-
```
42+
```

documents/DeploymentGuide.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,13 @@ Depending on your subscription quota and capacity, you can [adjust quota setting
137137

138138
**⚠️ Warning:** Insufficient quota can cause deployment errors. Please ensure you have the recommended capacity or request additional capacity before deploying this solution.
139139

140+
</details>
141+
<details>
142+
143+
<summary><b>Reusing an Existing Log Analytics Workspace</b></summary>
144+
145+
Guide to get your [Existing Workspace ID](/documents/re-use-log-analytics.md)
146+
140147
</details>
141148

142149
### Deploying with AZD
142 KB
Loading
196 KB
Loading
88.9 KB
Loading

documents/re-use-log-analytics.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
[← Back to *DEPLOYMENT* guide](https://github.com/microsoft/Conversation-Knowledge-Mining-Solution-Accelerator/blob/psl-re-use-log-update/documents/DeploymentGuide.md#deployment-options--steps)
2+
3+
# Reusing an Existing Log Analytics Workspace
4+
To configure your environment to use an existing Log Analytics Workspace, follow these steps:
5+
---
6+
### 1. Go to Azure Portal
7+
Go to https://portal.azure.com
8+
9+
### 2. Search for Log Analytics
10+
In the search bar at the top, type "Log Analytics workspaces" and click on it and click on the workspace you want to use.
11+
12+
![alt text](../documents/Images/re_use_log/logAnalyticsList.png)
13+
14+
### 3. Copy Resource ID
15+
In the Overview pane, Click on JSON View
16+
17+
![alt text](../documents/Images/re_use_log/logAnalytics.png)
18+
19+
Copy Resource ID that is your Workspace ID
20+
21+
![alt text](../documents/Images/re_use_log/logAnalyticsJson.png)
22+
23+
### 4. Set the Workspace ID in Your Environment
24+
Run the following command in your terminal
25+
```bash
26+
azd env set AZURE_ENV_LOG_ANALYTICS_WORKSPACE_ID '<Existing Log Analytics Workspace Id>'
27+
```
28+
Replace `<Existing Log Analytics Workspace Id>` with the value obtained from Step 3.
29+
30+
### 5. Continue Deployment
31+
Proceed with the next steps in the [deployment guide](https://github.com/microsoft/Conversation-Knowledge-Mining-Solution-Accelerator/blob/psl-re-use-log-update/documents/DeploymentGuide.md#deployment-options--steps).

0 commit comments

Comments
 (0)