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/container-apps/functions-cli.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -47,7 +47,7 @@ Get detailed information about a specific function:
47
47
az containerapp function show \
48
48
--resource-group <RESOURCE_GROUP> \
49
49
--name <CONTAINER_APP_NAME> \
50
-
--function-name HttpExample
50
+
--function-name <FUNCTIONS_APP_NAME>
51
51
```
52
52
53
53
## Monitor function invocations
@@ -60,7 +60,7 @@ Monitoring your function app is essential for understanding its performance and
60
60
az containerapp function invocations traces \
61
61
--name <CONTAINER_APP_NAME> \
62
62
--resource-group <RESOURCE_GROUP> \
63
-
--function-name <FUNCTION_APP_NAME> \
63
+
--function-name <FUNCTIONS_APP_NAME> \
64
64
--timespan 5h \
65
65
--limit 3
66
66
```
@@ -71,7 +71,7 @@ Monitoring your function app is essential for understanding its performance and
71
71
az containerapp function invocations summary \
72
72
--name <CONTAINER_APP_NAME> \
73
73
--resource-group <RESOURCE_GROUP> \
74
-
--function-name <FUNCTION_APP_NAME> \
74
+
--function-name <FUNCTIONS_APP_NAME> \
75
75
--timespan 5h
76
76
```
77
77
@@ -84,7 +84,7 @@ Azure Functions uses [keys for authentication and authorization](/azure/azure-fu
84
84
- **System keys**: Used by Azure services
85
85
- **Function keys**: Access specific functions
86
86
87
-
The following commands show you how to manage keys for the host. To run the same command for a specific Functions app, add the `--function-name <FUNCTION_APP_NAME>` parameter to your command.
87
+
The following commands show you how to manage keys for the host. To run the same command for a specific Functions app, add the `--function-name <FUNCTIONS_APP_NAME>` parameter to your command.
0 commit comments