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/azure-functions/errors-diagnostics/diagnostic-events/azfd0001.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ ms.date: 09/03/2022
10
10
11
11
# AZFD0001: AzureWebJobsStorage app setting is not present.
12
12
13
-
This event is triggered when the function app does not have AzureWebJobsStorage app setting configured for the function app.
13
+
This event occurs when the function app doesn't have the `AzureWebJobsStorage` app setting configured for the function app.
14
14
15
15
|| Value |
16
16
|-|-|
@@ -19,14 +19,14 @@ This event is triggered when the function app does not have AzureWebJobsStorage
19
19
|**Severity**|Error|
20
20
21
21
## Event description
22
-
`AzureWebJobsStorage` app setting is used to store the connection string of the Azure Storage account associated with the function app. The Azure Functions runtime uses this connection for core behaviors such as coordinating singleton execution of timer triggers, default app key storage and storing diagnostic events.
22
+
The `AzureWebJobsStorage` app setting is used to store the connection string of the Azure Storage account associated with the function app. The Azure Functions runtime uses this connection for core behaviors such as coordinating singleton execution of timer triggers, default app key storage, and storing diagnostic events.
23
23
24
-
For more information on `AzureWebJobsStorage` information, see [AzureWebJobsStorage](../../functions-app-settings.md#azurewebjobsstorage)
24
+
For more information, see [AzureWebJobsStorage](../../functions-app-settings.md#azurewebjobsstorage).
25
25
26
26
## How to resolve the event
27
27
28
-
Create a new app setting on your function app with name "AzureWebJobsStorage" with a valid Azure Storage account connection string as the value.
28
+
Create a new app setting on your function app with name `AzureWebJobsStorage` with a valid storage account connection string as the value. For more information, see [Work with application settings](../../functions-how-to-use-azure-function-app-settings.md#settings).
Copy file name to clipboardExpand all lines: articles/azure-functions/errors-diagnostics/diagnostic-events/azfd0002.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ ms.date: 09/03/2022
10
10
11
11
# AZFD0002: Value of AzureWebJobsStorage app setting is invalid.
12
12
13
-
This event is triggered when the value of `AzureWebJobsStorage`has invalid Azure Storage connection string or it has a Keyvault reference.
13
+
This event occurs when the value of the `AzureWebJobsStorage`app setting is set to either an invalid Azure Storage account connection string or to a Key Vault reference.
14
14
15
15
|| Value |
16
16
|-|-|
@@ -19,12 +19,12 @@ This event is triggered when the value of `AzureWebJobsStorage` has invalid Azur
19
19
|**Severity**|Error|
20
20
21
21
## Event description
22
-
`AzureWebJobsStorage` app setting is used to store the connection string of the Azure Storage associated with the function app. The Azure Functions runtime uses this connection for core behaviors such as coordinating singleton execution of timer triggers, default app key storage and storing diagnostic events. This app setting needs to have a valid Azure Storage connection string.
22
+
The `AzureWebJobsStorage` app setting is used to store the connection string of the storage account associated with the function app. The Azure Functions runtime uses this connection for core behaviors such as coordinating singleton execution of timer triggers, default app key storage, and storing diagnostic events. This app setting needs to be set to a valid connection string.
23
23
24
-
For more information on `AzureWebJobsStorage` information, see [AzureWebJobsStorage](../../functions-app-settings.md#azurewebjobsstorage)
24
+
For more information, see [AzureWebJobsStorage](../../functions-app-settings.md#azurewebjobsstorage).
25
25
26
26
## How to resolve the event
27
-
Update the value of `AzureWebJobsStorage` app setting on your function app with a valid Azure Storage account connection string.
27
+
Update the value of the `AzureWebJobsStorage` app setting on your function app with a valid storage account connection string.
28
28
29
29
## When to suppress the event
30
-
This event should suppressed if your function app needs to use Azure Key Vault reference for storing the value of `AzureWebjobsStorage` app setting.
30
+
You should suppress this event when your function app uses an Azure Key Vault reference in the `AzureWebjobsStorage` app setting instead of a connection string. For more information, see [Source application settings from Key Vault](../../../app-service/app-service-key-vault-references.md?toc=%2Fazure%2Fazure-functions%2Ftoc.json#source-application-settings-from-key-vault)
Copy file name to clipboardExpand all lines: articles/azure-functions/errors-diagnostics/diagnostic-events/azfd0003.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ ms.date: 09/03/2022
10
10
11
11
# AZFD0003: Encountered a StorageException while trying to fetch the diagnostic events.
12
12
13
-
This event is triggered when the Azure Storage connection string stored within the `AzureWebJobsStorage`does not have permissions to access table storage or causes the storage exceptions when trying to connect to Azure Storage.
13
+
This event occurs when the Azure Storage account connection string value in the `AzureWebJobsStorage`app setting either doesn't have permissions to access Azure Table Storage or generates exceptions when trying to connect to storage.
14
14
15
15
|| Value |
16
16
|-|-|
@@ -19,14 +19,14 @@ This event is triggered when the Azure Storage connection string stored within t
19
19
|**Severity**|Error|
20
20
21
21
## Event description
22
-
`AzureWebJobsStorage` app setting is used to store the connection string of the Azure Storage associated with the function app. The Azure Functions runtime uses this connection for core behaviors such as coordinating singleton execution of timer triggers, default app key storage and storing diagnostic events.
22
+
The `AzureWebJobsStorage` app setting is used to store the connection string of the storage account associated with the function app. The Azure Functions runtime uses this connection for core behaviors such as coordinating singleton execution of timer triggers, default app key storage, and storing diagnostic events.
23
23
24
-
This `AzureWebJobsStorage`needs to have permissions (read, write, delete, add and create) to table storage to be able store and fetch diagnostic events.
24
+
The connection string set in `AzureWebJobsStorage`must be for an account that has permissions to store and read diagnostic events from Table Storage. The complete set of read, write, delete, add, and create events must be supported.
25
25
26
-
For more information on `AzureWebJobsStorage` information, see [AzureWebJobsStorage](../../functions-app-settings.md#azurewebjobsstorage)
26
+
For more information, see [AzureWebJobsStorage](../../functions-app-settings.md#azurewebjobsstorage).
27
27
28
28
## How to resolve the event
29
-
The connection string stored in `AzureWebJobsStorage`app setting needs to have read, write, delete, add and create permissions to Azure Table storage. Additionally Azure Storage clients should be able to Azure Storage with this connection string without incurring Storage exceptions.
29
+
Make sure that the storage account for the connection string stored in `AzureWebJobsStorage`has permissions to read, write, delete, add and create in Table Storage. Clients should be able to access Storage using this connection string without generating exceptions.
0 commit comments