-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConnectorDefinition.json
More file actions
175 lines (174 loc) · 6.73 KB
/
Copy pathConnectorDefinition.json
File metadata and controls
175 lines (174 loc) · 6.73 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
{
"name": "GigamonTelemetry",
"apiVersion": "2022-09-01-preview",
"type": "Microsoft.SecurityInsights/dataConnectorDefinitions",
"location": "{{location}}",
"kind": "Customizable",
"properties": {
"connectorUiConfig": {
"id": "GigamonTelemetry",
"title": "Gigamon Telemetry Connector",
"publisher": "GigamonTelemetry",
"descriptionMarkdown": "The Gigamon connector provides the capability to read raw event data from Gigamon in Microsoft Sentinel.",
"graphQueries": [
{
"metricName": "Activity",
"legend": "Gigamon_CL",
"baseQuery": "Gigamon_CL"
},
{
"metricName": "Threat",
"legend": "Gigamon_CL",
"baseQuery": "Gigamon_CL"
}
],
"sampleQueries": [
{
"description": "Gigamon - All Network Logs",
"query": "Gigamon_CL\n | sort by TimeGenerated desc"
},
{
"description": "Obsidian - All Activity events",
"query": "Gigamon_CL\n | sort by TimeGenerated desc"
}
],
"dataTypes": [
{
"name": "Gigamon_CL",
"lastDataReceivedQuery": "Gigamon_CL\n | summarize Time = max(TimeGenerated)\n | where isnotempty(Time)"
},
{
"name": "Gigamon_CL",
"lastDataReceivedQuery": "Gigamon_CL\n | summarize Time = max(TimeGenerated)\n | where isnotempty(Time)"
}
],
"connectivityCriteria": [
{
"type": "IsConnectedQuery",
"value": [
"Gigamon_CL\n | summarize LastLogReceived = max(TimeGenerated)\n | project IsConnected = LastLogReceived > ago(7d)",
"Gigamon_CL\n | summarize LastLogReceived = max(TimeGenerated)\n | project IsConnected = LastLogReceived > ago(7d)"
]
}
],
"availability": {
"status": 1
},
"permissions": {
"resourceProvider": [
{
"provider": "Microsoft.OperationalInsights/workspaces",
"permissionsDisplayText": "read and write permissions are required.",
"providerDisplayName": "Workspace",
"scope": "Workspace",
"requiredPermissions": {
"write": true,
"read": true,
"delete": true
}
}
],
"customs": [
{
"name": "Microsoft Entra",
"description": "Permission to create an app registration in Microsoft Entra ID. Typically requires Entra ID Application Developer role or higher."
},
{
"name": "Microsoft Azure",
"description": "Permission to assign Monitoring Metrics Publisher role on data collection rule (DCR). Typically requires Azure RBAC Owner or User Access Administrator role"
}
]
},
"instructionSteps": [
{
"title": "1. Create ARM Resources and Provide the Required Permissions",
"description": "This connector reads data from the tables that Obsidian Datasharing uses in a Microsoft Analytics Workspace, if the data forwarding option is enabled in Obsidian Datasharing then raw event data is sent to the Microsoft Sentinel Ingestion API.",
"instructions": [
{
"type": "Markdown",
"parameters": {
"content": "#### Automated Configuration and Secure Data Ingestion with Entra Application \nClicking on \"Deploy\" will trigger the creation of Log Analytics tables and a Data Collection Rule (DCR). \nIt will then create an Entra application, link the DCR to it, and set the entered secret in the application. This setup enables data to be sent securely to the DCR using an Entra token."
}
},
{
"parameters": {
"label": "Deploy Obsidian Datasharing connector resources",
"applicationDisplayName": "Obsidian Datasharing Connector Application"
},
"type": "DeployPushConnectorButton"
}
]
},
{
"title": "2. Push your logs into the workspace",
"description": "Use the following parameters to configure the your machine to send the logs to the workspace.",
"instructions": [
{
"parameters": {
"label": "Tenant ID (Directory ID)",
"fillWith": [
"TenantId"
]
},
"type": "CopyableLabel"
},
{
"parameters": {
"label": "Entra App Registration Application ID",
"fillWith": [
"ApplicationId"
],
"placeholder": "Deploy push connector to get the App Registration Application ID"
},
"type": "CopyableLabel"
},
{
"parameters": {
"label": "Entra App Registration Secret",
"fillWith": [
"ApplicationSecret"
],
"placeholder": "Deploy push connector to get the App Registration Secret"
},
"type": "CopyableLabel"
},
{
"parameters": {
"label": "Data Collection Endpoint Uri",
"fillWith": [
"DataCollectionEndpoint"
],
"placeholder": "Deploy push connector to get the Data Collection Endpoint Uri"
},
"type": "CopyableLabel"
},
{
"parameters": {
"label": "Data Collection Rule Immutable ID",
"fillWith": [
"DataCollectionRuleId"
],
"placeholder": "Deploy push connector to get the Data Collection Rule Immutable ID"
},
"type": "CopyableLabel"
},
{
"parameters": {
"label": "Activity Stream Name",
"value": "Custom-Gigamon_CL"
},
"type": "CopyableLabel"
},
{
"parameters": {
"label": "Threat Stream Name",
"value": "Custom-Gigamon_CL"
},
"type": "CopyableLabel"
}
]
}
]
}
}
}