You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/stream-analytics/stream-analytics-real-time-fraud-detection.md
+20-14Lines changed: 20 additions & 14 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ ms.author: mamccrea
6
6
ms.reviewer: mamccrea
7
7
ms.service: stream-analytics
8
8
ms.topic: conceptual
9
-
ms.date: 12/07/2018
9
+
ms.date: 03/24/2020
10
10
ms.custom: seodec18
11
11
---
12
12
# 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
81
81
82
82
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.
83
83
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.
85
85
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**.
87
87
88
88
>[!NOTE]
89
89
>Make sure you're working with the event hub, not the event hub namespace.
90
90
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**.
92
92
93
93
<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"/>
94
94
95
-
4.Click **Create**.
95
+
4.Click **Create**.
96
96
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.
98
98
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.
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.
104
104
105
105
The connection string looks like this:
106
106
@@ -123,16 +123,22 @@ Before you start the TelcoGenerator app, you must configure it so that it will s
123
123
* Set the value of the `EventHubName` key to the event hub name (that is, to the value of the entity path).
124
124
* Set the value of the `Microsoft.ServiceBus.ConnectionString` key to the connection string.
125
125
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:
127
127
128
-

128
+
```xml
129
+
<appSettings>
130
+
<!-- Service Bus specific app setings for messaging connections -->
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.
134
140
135
-
2.Enter the following command:
141
+
2.Enter the following command:
136
142
137
143
```cmd
138
144
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
187
193
188
194
|**Setting**|**Suggested value**|**Description**|
189
195
|---------|---------|---------|
190
-
|Input alias | CallStream | Enter a name to identify the job’s input. |
196
+
|Input alias | CallStream | Enter a name to identify the job's input. |
191
197
|Subscription |\<Your subscription\>| Select the Azure subscription that has the Event Hub you created. |
192
198
|Event Hub namespace | asa-eh-ns-demo | Enter the name of the Event Hub namespace. |
193
199
|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
357
363
358
364
|**Setting**|**Suggested value**|**Description**|
359
365
|---------|---------|---------|
360
-
|Output alias | CallStream-FraudulentCalls | Enter a name to identify the job’s output. |
366
+
|Output alias | CallStream-FraudulentCalls | Enter a name to identify the job's output. |
361
367
|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. |
362
368
|Storage account | asaehstorage | Enter the name of the storage account you created. |
363
369
|Container | asa-fraudulentcalls-demo | Choose Create new and enter a container name. |
0 commit comments