Skip to content

Commit a9565f7

Browse files
Add Privacy Statement to README and telemetry message (#751)
* Add link to privacy statement * Add privacy link to output message * add to output message * Fix typos
1 parent d3dc5c1 commit a9565f7

File tree

2 files changed

+11
-5
lines changed

2 files changed

+11
-5
lines changed

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,11 @@ Databases on SQL Server, Azure SQL Database, or Azure SQL Managed Instance which
6565

6666
## Telemetry
6767

68-
This extension collect usage data in order to help us improve your experience. The data is anonymous and doesn't include any personal information. You can opt-out of telemetry by setting the `AZUREFUNCTIONS_SQLBINDINGS_TELEMETRY_OPTOUT` environment variable or the `AzureFunctionsSqlBindingsTelemetryOptOut` app setting (in your `*.settings.json` file) to '1', 'true' or 'yes';
68+
This extension collects usage data in order to help us improve your experience. The data is anonymous and doesn't include any personal information. You can opt-out of telemetry by setting the `AZUREFUNCTIONS_SQLBINDINGS_TELEMETRY_OPTOUT` environment variable or the `AzureFunctionsSqlBindingsTelemetryOptOut` app setting (in your `*.settings.json` file) to '1', 'true' or 'yes';
69+
70+
## Privacy Statement
71+
72+
To learn more about our Privacy Statement visit [this link](https://go.microsoft.com/fwlink/?LinkID=824704).
6973

7074
## Trademarks
7175

src/Telemetry/Telemetry.cs

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,12 @@ public sealed class Telemetry
3737
public const string TelemetryOptoutSetting = "AzureFunctionsSqlBindingsTelemetryOptOut";
3838

3939
public const string WelcomeMessage = @"Azure SQL binding for Azure Functions
40-
---------------------
41-
Telemetry
42-
---------
43-
This extension collect usage data in order to help us improve your experience. The data is anonymous and doesn't include any personal information. You can opt-out of telemetry by setting the " + TelemetryOptoutEnvVar + " environment variable or the " + TelemetryOptoutSetting + @" + app setting to '1', 'true' or 'yes';
40+
-----------------------------------------------
41+
Azure Functions SQL Binding Extension Telemetry
42+
-----------------------------------------------
43+
This extension collects usage data in order to help us improve your experience. The data is anonymous and doesn't include any personal information. You can opt-out of telemetry by setting the " + TelemetryOptoutEnvVar + " environment variable or the " + TelemetryOptoutSetting + @" app setting to '1', 'true' or 'yes'.
44+
45+
To learn more about our Privacy Statement visit this link: https://go.microsoft.com/fwlink/?LinkID=824704
4446
";
4547

4648
public void Initialize(IConfiguration config, ILogger logger)

0 commit comments

Comments
 (0)