Skip to content

Commit 70e4021

Browse files
committed
remove image
1 parent 252c712 commit 70e4021

File tree

2 files changed

+20
-14
lines changed

2 files changed

+20
-14
lines changed

articles/stream-analytics/stream-analytics-real-time-fraud-detection.md

Lines changed: 20 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ms.author: mamccrea
66
ms.reviewer: mamccrea
77
ms.service: stream-analytics
88
ms.topic: conceptual
9-
ms.date: 12/07/2018
9+
ms.date: 03/24/2020
1010
ms.custom: seodec18
1111
---
1212
# Get started using Azure Stream Analytics: Real-time fraud detection
@@ -81,26 +81,26 @@ In this procedure, you first create an event hub namespace, and then you add an
8181

8282
Before a process can send data to an event hub, the event hub must have a policy that allows appropriate access. The access policy produces a connection string that includes authorization information.
8383

84-
1. In the event namespace pane, click **Event Hubs** and then click the name of your new event hub.
84+
1. In the event namespace pane, click **Event Hubs** and then click the name of your new event hub.
8585

86-
2. In the event hub pane, click **Shared access policies** and then click **+ Add**.
86+
2. In the event hub pane, click **Shared access policies** and then click **+ Add**.
8787

8888
>[!NOTE]
8989
>Make sure you're working with the event hub, not the event hub namespace.
9090

91-
3. Add a policy named `asa-policy-manage-demo` and for **Claim**, select **Manage**.
91+
3. Add a policy named `asa-policy-manage-demo` and for **Claim**, select **Manage**.
9292

9393
<img src="./media/stream-analytics-real-time-fraud-detection/stream-analytics-create-shared-access-policy-manage-new-portal.png" alt="Create shared access policy for Stream Analytics" width="300px"/>
9494

95-
4. Click **Create**.
95+
4. Click **Create**.
9696

97-
5. After the policy has been deployed, click it in the list of shared access policies.
97+
5. After the policy has been deployed, click it in the list of shared access policies.
9898

99-
6. Find the box labeled **CONNECTION STRING-PRIMARY KEY** and click the copy button next to the connection string.
99+
6. Find the box labeled **CONNECTION STRING-PRIMARY KEY** and click the copy button next to the connection string.
100100

101101
<img src="./media/stream-analytics-real-time-fraud-detection/stream-analytics-shared-access-policy-copy-connection-string-new-portal.png" alt="Stream Analytics shared access policy" width="300px"/>
102102

103-
7. Paste the connection string into a text editor. You need this connection string for the next section, after you make some small edits to it.
103+
7. Paste the connection string into a text editor. You need this connection string for the next section, after you make some small edits to it.
104104

105105
The connection string looks like this:
106106

@@ -123,16 +123,22 @@ Before you start the TelcoGenerator app, you must configure it so that it will s
123123
* Set the value of the `EventHubName` key to the event hub name (that is, to the value of the entity path).
124124
* Set the value of the `Microsoft.ServiceBus.ConnectionString` key to the connection string.
125125

126-
The `<appSettings>` section will look like the following example. (For clarity, the lines are wrapped and some characters have been removed from the authorization token.)
126+
The `<appSettings>` section will look like the following example:
127127

128-
![TelcoGenerator config file shows event hub name and connection string](./media/stream-analytics-real-time-fraud-detection/stream-analytics-telcogenerator-config-file-app-settings.png)
128+
```xml
129+
<appSettings>
130+
<!-- Service Bus specific app setings for messaging connections -->
131+
<add key="EventHubName" value="asa-eh-ns-demo"/>
132+
<add key="Microsoft.ServiceBus.ConnectionString" value="Endpoint=sb://asa-eh-ns-demo.servicebus.windows.net/;SharedAccessKeyName=asa-policy-manage-demo;SharedAccessKey=GEcnTKf2//1MRn6SN1A2u0O76MP9pj3v0Ccyf1su4Zo="/>
133+
</appSettings>
134+
```
129135

130136
4. Save the file.
131137

132138
### Start the app
133-
1. Open a command window and change to the folder where the TelcoGenerator app is unzipped.
139+
1. Open a command window and change to the folder where the TelcoGenerator app is unzipped.
134140

135-
2. Enter the following command:
141+
2. Enter the following command:
136142

137143
```cmd
138144
telcodatagen.exe 1000 0.2 2
@@ -187,7 +193,7 @@ Now that you have a stream of call events, you can set up a Stream Analytics job
187193

188194
|**Setting** |**Suggested value** |**Description** |
189195
|---------|---------|---------|
190-
|Input alias | CallStream | Enter a name to identify the jobs input. |
196+
|Input alias | CallStream | Enter a name to identify the job's input. |
191197
|Subscription | \<Your subscription\> | Select the Azure subscription that has the Event Hub you created. |
192198
|Event Hub namespace | asa-eh-ns-demo | Enter the name of the Event Hub namespace. |
193199
|Event Hub name | asa-eh-frauddetection-demo | Select the name of your Event Hub. |
@@ -357,7 +363,7 @@ If you have an existing blob storage account, you can use that. For this tutoria
357363

358364
|**Setting** |**Suggested value** |**Description** |
359365
|---------|---------|---------|
360-
|Output alias | CallStream-FraudulentCalls | Enter a name to identify the jobs output. |
366+
|Output alias | CallStream-FraudulentCalls | Enter a name to identify the job's output. |
361367
|Subscription | \<Your subscription\> | Select the Azure subscription that has the storage account you created. The storage account can be in the same or in a different subscription. This example assumes that you have created storage account in the same subscription. |
362368
|Storage account | asaehstorage | Enter the name of the storage account you created. |
363369
|Container | asa-fraudulentcalls-demo | Choose Create new and enter a container name. |

0 commit comments

Comments
 (0)