diff --git a/src/dotnet/Common/Constants/Configuration/KeyVaultSecretNames.cs b/src/dotnet/Common/Constants/Configuration/KeyVaultSecretNames.cs index 799d2bd800..92707e0b92 100644 --- a/src/dotnet/Common/Constants/Configuration/KeyVaultSecretNames.cs +++ b/src/dotnet/Common/Constants/Configuration/KeyVaultSecretNames.cs @@ -29,11 +29,17 @@ public static partial class KeyVaultSecretNames public const string FoundationaLLM_APIEndpoints_GatekeeperAPI_APIKey = "foundationallm-apiendpoints-gatekeeperapi-apikey"; + /// + /// The name of the Azure Key Vault secret holding the connection string for the App Insights service used by the Gatekeeper API. + /// + public const string FoundationaLLM_APIEndpoints_GatekeeperAPI_AppInsightsConnectionString = + "foundationallm-appinsights-connectionstring"; + /// /// The name of the Azure Key Vault secret holding the API key for the Gatekeeper Integration API. /// public const string FoundationaLLM_APIEndpoints_GatekeeperIntegrationAPI_APIKey = - "foundationallm-apiendpoints-gatekeeperintergrationapi-apikey"; + "foundationallm-apiendpoints-gatekeeperintegrationapi-apikey"; /// /// The name of the Azure Key Vault secret holding the connection string for the App Insights service used by the Gatekeeper Integration API. @@ -135,7 +141,7 @@ public static partial class KeyVaultSecretNames /// The name of the Azure Key Vault secret holding the API key for the State API. /// public const string FoundationaLLM_APIEndpoints_StateAPI_APIKey = - "foundationallm-apinedpoints-stateapi-apikey"; + "foundationallm-apiendpoints-stateapi-apikey"; /// /// The name of the Azure Key Vault secret holding the connection string for the App Insights service used by the State API. diff --git a/src/python/AgentHubAPI/app/main.py b/src/python/AgentHubAPI/app/main.py index f467324a44..9971fc54a8 100644 --- a/src/python/AgentHubAPI/app/main.py +++ b/src/python/AgentHubAPI/app/main.py @@ -13,7 +13,7 @@ # Open a connection to the app configuration config = get_config() # Start collecting telemetry -Telemetry.configure_monitoring(config, f'FoundationaLLM:APIs:{API_NAME}:AppInsightsConnectionString') +Telemetry.configure_monitoring(config, f'FoundationaLLM:APIEndpoints:{API_NAME}:AppInsightsConnectionString') app = FastAPI( title=f'FoundationaLLM {API_NAME}', diff --git a/src/python/DataSourceHubAPI/app/main.py b/src/python/DataSourceHubAPI/app/main.py index ea0862cdc4..3ba1e21e3f 100644 --- a/src/python/DataSourceHubAPI/app/main.py +++ b/src/python/DataSourceHubAPI/app/main.py @@ -13,7 +13,7 @@ # Open a connection to the app configuration config = get_config() # Start collecting telemetry -Telemetry.configure_monitoring(config, f'FoundationaLLM:APIs:{API_NAME}:AppInsightsConnectionString') +Telemetry.configure_monitoring(config, f'FoundationaLLM:APIEndpoints:{API_NAME}:AppInsightsConnectionString') app = FastAPI( title=f'FoundationaLLM {API_NAME}', diff --git a/src/python/LangChainAPI/app/main.py b/src/python/LangChainAPI/app/main.py index 012f8eb356..4a4fcfff37 100644 --- a/src/python/LangChainAPI/app/main.py +++ b/src/python/LangChainAPI/app/main.py @@ -14,7 +14,7 @@ # Open a connection to the app configuration config = get_config() # Start collecting telemetry -Telemetry.configure_monitoring(config, f'FoundationaLLM:APIs:{API_NAME}:AppInsightsConnectionString') +Telemetry.configure_monitoring(config, f'FoundationaLLM:APIEndpoints:{API_NAME}:AppInsightsConnectionString') app = FastAPI( title=f'FoundationaLLM {API_NAME}', diff --git a/src/python/PromptHubAPI/app/main.py b/src/python/PromptHubAPI/app/main.py index 7c9c37bab5..9ddec05426 100644 --- a/src/python/PromptHubAPI/app/main.py +++ b/src/python/PromptHubAPI/app/main.py @@ -13,7 +13,7 @@ # Open a connection to the app configuration config = get_config() # Start collecting telemetry -Telemetry.configure_monitoring(config, f'FoundationaLLM:APIs:{API_NAME}:AppInsightsConnectionString') +Telemetry.configure_monitoring(config, f'FoundationaLLM:APIEndpoints:{API_NAME}:AppInsightsConnectionString') app = FastAPI( title=f'FoundationaLLM {API_NAME}',