skip to Main Content

Logging Azure Function

Is there a way to view logging of my Azure Function App without the use of Application Insights? Can I write the logging of my Function app to a separate file that I can view? (edit) If so, how? Edit:…

VIEW QUESTION

Azure SQL DB not updating varchar length

I created a table using the following SQL command: CREATE TABLE [my-azure-db].dbo.MyTable ( Id int IDENTITY(1,1) NOT NULL, Name nvarchar(32) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL, ); When I check the table with DBeaver, it looks like this: Therefore, I tried to…

VIEW QUESTION

azure amortized cost usagestart and usageend date error while passing it as variable

I am trying to pull azure amortized cost at subscription level but when I pass usage_start_date and usage_end_date in hardcoded way I am able to pull data : Example : "https://management.azure.com/subscriptions/"+subs+"/providers/Microsoft.Consumption/usageDetail?$filter=properties/usageStart eq '2022-05-01' and properties/usageEnd eq '2022-05-31'&metric=AmortizedCost&api-version=2021-10-01" But when I…

VIEW QUESTION

C#.net Core 6.0 web app connecting to Snowflake from Azure using RSA key in file

I need to connect my .Net Core 6.0 web app from Azure to snowflake. I have RSA key stored locally and in the connection string it is referenced: SnowflakeDbCon": "account=**************;authenticator=snowflake_jwt;user=xxxxxxxx;private_key_file=c:Keysrsa_key.p8;private_key_pwd=yyyyyyyyy;db=dbbbbbbb;schema=MY_SCHEMA;" Code: builder.Services.AddScoped(_=> new SnowflakeDbConnection { ConnectionString = builder.Configuration.GetConnectionString("SnowflakeDbCon") }); This…

VIEW QUESTION
Back To Top
Search