-
Notifications
You must be signed in to change notification settings - Fork 110
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* implement per table filtering * implement per table filtering * add telemetry for data collection profile * add telemetry for data collection profile * cost optimization GA updates * template updates * template updates * fix bug * fix bug * fix bug * reduce logging * avoid frequent dcr config read calls * avoid frequent dcr config read calls * refactor code * refactor code * arm template updates * fix pr feedback * fix pr feedback * update dcr and dcr-a api version * refactor code * refactor code * code refactoring * fix bug * remove info logs * update dcr and dcr-a api version * optimize code
- Loading branch information
Showing
24 changed files
with
437 additions
and
244 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
158 changes: 89 additions & 69 deletions
158
scripts/onboarding/aks/onboarding-using-msi-auth/existingClusterParam.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,73 +1,93 @@ | ||
{ | ||
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", | ||
"contentVersion": "1.0.0.0", | ||
"parameters": { | ||
"aksResourceId": { | ||
"value": "/subscriptions/<SubscriptionId>/resourcegroups/<ResourceGroup>/providers/Microsoft.ContainerService/managedClusters/<ResourceName>" | ||
}, | ||
"aksResourceLocation": { | ||
"value": "<aksClusterLocation>" | ||
}, | ||
"workspaceResourceId": { | ||
"value": "/subscriptions/<SubscriptionId>/resourceGroups/<ResourceGroup>/providers/Microsoft.OperationalInsights/workspaces/<workspaceName>" | ||
}, | ||
"workspaceRegion": { | ||
"value": "<workspaceRegion>" | ||
}, | ||
"enableSyslog": { | ||
"value": false | ||
}, | ||
"syslogLevels": { | ||
"value": [ | ||
"Debug", | ||
"Info", | ||
"Notice", | ||
"Warning", | ||
"Error", | ||
"Critical", | ||
"Alert", | ||
"Emergency" | ||
] | ||
}, | ||
"syslogFacilities": { | ||
"value": [ | ||
"auth", | ||
"authpriv", | ||
"cron", | ||
"daemon", | ||
"mark", | ||
"kern", | ||
"local0", | ||
"local1", | ||
"local2", | ||
"local3", | ||
"local4", | ||
"local5", | ||
"local6", | ||
"local7", | ||
"lpr", | ||
"mail", | ||
"news", | ||
"syslog", | ||
"user", | ||
"uucp" | ||
] | ||
}, | ||
"resourceTagValues": { | ||
"value": { | ||
"<existingOrnew-tag-name1>": "<existingOrnew-tag-value1>", | ||
"<existingOrnew-tag-name2>": "<existingOrnew-tag-value2>", | ||
"<existingOrnew-tag-nameN>": "<existingOrnew-tag-valueN>" | ||
} | ||
}, | ||
"dataCollectionInterval": { | ||
"value" : "1m" | ||
}, | ||
"namespaceFilteringModeForDataCollection": { | ||
"value": "Off" | ||
}, | ||
"namespacesForDataCollection": { | ||
"value": [ "kube-system", "gatekeeper-system", "azure-arc" ] | ||
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", | ||
"contentVersion": "1.0.0.0", | ||
"parameters": { | ||
"aksResourceId": { | ||
"value": "/subscriptions/<SubscriptionId>/resourcegroups/<ResourceGroup>/providers/Microsoft.ContainerService/managedClusters/<ResourceName>" | ||
}, | ||
"aksResourceLocation": { | ||
"value": "<aksClusterLocation>" | ||
}, | ||
"workspaceResourceId": { | ||
"value": "/subscriptions/<SubscriptionId>/resourceGroups/<ResourceGroup>/providers/Microsoft.OperationalInsights/workspaces/<workspaceName>" | ||
}, | ||
"workspaceRegion": { | ||
"value": "<workspaceRegion>" | ||
}, | ||
"enableSyslog": { | ||
"value": false | ||
}, | ||
"syslogLevels": { | ||
"value": [ | ||
"Debug", | ||
"Info", | ||
"Notice", | ||
"Warning", | ||
"Error", | ||
"Critical", | ||
"Alert", | ||
"Emergency" | ||
] | ||
}, | ||
"syslogFacilities": { | ||
"value": [ | ||
"auth", | ||
"authpriv", | ||
"cron", | ||
"daemon", | ||
"mark", | ||
"kern", | ||
"local0", | ||
"local1", | ||
"local2", | ||
"local3", | ||
"local4", | ||
"local5", | ||
"local6", | ||
"local7", | ||
"lpr", | ||
"mail", | ||
"news", | ||
"syslog", | ||
"user", | ||
"uucp" | ||
] | ||
}, | ||
"resourceTagValues": { | ||
"value": { | ||
"<existingOrnew-tag-name1>": "<existingOrnew-tag-value1>", | ||
"<existingOrnew-tag-name2>": "<existingOrnew-tag-value2>", | ||
"<existingOrnew-tag-nameN>": "<existingOrnew-tag-valueN>" | ||
} | ||
}, | ||
"dataCollectionInterval": { | ||
"value": "1m" | ||
}, | ||
"namespaceFilteringModeForDataCollection": { | ||
"value": "Off" | ||
}, | ||
"namespacesForDataCollection": { | ||
"value": [ | ||
"kube-system", | ||
"gatekeeper-system", | ||
"azure-arc" | ||
] | ||
}, | ||
"defaultStreams": { | ||
"value": [ | ||
"Microsoft-ContainerLog", | ||
"Microsoft-ContainerLogV2", | ||
"Microsoft-KubeEvents", | ||
"Microsoft-KubePodInventory", | ||
"Microsoft-KubeNodeInventory", | ||
"Microsoft-KubePVInventory", | ||
"Microsoft-KubeServices", | ||
"Microsoft-KubeMonAgentEvents", | ||
"Microsoft-InsightsMetrics", | ||
"Microsoft-ContainerInventory", | ||
"Microsoft-ContainerNodeInventory", | ||
"Microsoft-Perf" | ||
] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.