KZ
bin
Негізгі бет
Қазірдің өзінде танымал
Тікелей эфир
Ұнаған бейнелер
Қайтадан қараңыз
Жазылымдар
Кіру
Тіркелу
Ең жақсы KZbin
Фильм және анимация
Автокөліктер мен көлік құралдары
Музыка
Үй жануарлары мен аңдар
Спорт
Ойындар
Комедия
Ойын-сауық
Тәжірибелік нұсқаулар және стиль
Ғылым және технология
Жазылу
Paul Beck
Microsoft technology recordings and random musings
2:21
Introduction to managing Microsoft Azure resources using Pulumi in VS Code (TypeScript)
2 ай бұрын
2:41
OD4BPfdConvertIssue
6 ай бұрын
2:39
Demo of a Mendix Widget that uses the Azure AI Service endpoints for converting Text to Speech
8 ай бұрын
2:42
Mendix makes it easy to build multilanguage apps with its Language Translation
8 ай бұрын
3:50
Using SharePoints Microsoft Word Document Information Panel to reduce licence external user costs
10 ай бұрын
6:48
Using Playwright within VSCode to Testing Low-code applications
10 ай бұрын
1:00
Postman to retrieve Bearer Token using MFA
Жыл бұрын
4:02
Azure Function Logging - A Simple Example
Жыл бұрын
3:48
OpenAI Intro in plain English for none technical people
Жыл бұрын
2:18
Microsoft Graph Simple
Жыл бұрын
3:42
Logging from Power Automate into Azure Log Analytics
Жыл бұрын
2:08
Connecting Canvas Apps to Flow runs using Log Analytics
Жыл бұрын
2:44
Power Platform Solutions Identify the 6 Microsoft Model App Deprecated Controls
Жыл бұрын
2:08
SharePoint Smoke Testing with Selenium IDE
8 жыл бұрын
10:13
SPRetreat
13 жыл бұрын
13:53
SP2010DataAccessPart4 SPMetalTips
13 жыл бұрын
13:13
SP2010DataAccessPart3
13 жыл бұрын
9:36
SP2010DataAccessPart2 SPMetalOverview
13 жыл бұрын
13:57
SP2010DataAccessPart1-Overview.wmv
13 жыл бұрын
8:31
SPListvsDBTables700B
13 жыл бұрын
Пікірлер
@red6871
Ай бұрын
Screen and voice was not clear ,if it possible could you please upload language translation video and this video again plz..
@aalcaraztech
6 ай бұрын
I think this información is very usefull for trace logs with custom objects/values (JSON) from any flow. Thanks a lot for share It!
@stradviolinus
6 ай бұрын
Do you think this will be fixed? All my Flows are broken as well.
@paulbeck1
Жыл бұрын
#r "Newtonsoft.Json" using System.Net; using Microsoft.AspNetCore.Mvc; using Microsoft.Extensions.Primitives; using Newtonsoft.Json; public static async Task<IActionResult> Run(HttpRequest req, ILogger log) { string requestBody = await new StreamReader(req.Body).ReadToEndAsync(); dynamic data = JsonConvert.DeserializeObject(requestBody); int eventId = data?.eventId; string errType = data?.errType; string errMsg = data?.errMsg; string correlationId = data?.correlationId; string workflowId = data?.workflowId; string workflowUrl = data?.workflowUrl; string flowDisplayName = data?.flowDisplayName; var custProps = new Dictionary<string, object>() { { "CorrelationId", correlationId}, { "WorkflowId", workflowId}, { "WorkflowUrl", workflowUrl}, { "WorkflowDisplayName", flowDisplayName} }; using (log.BeginScope(custProps)) { if (errType=="Debug") { log.Log(LogLevel.Debug, eventId, $"{errMsg}"); } else if (errType=="Critical") { log.Log(LogLevel.Critical, eventId, $"{errMsg}"); } else if (errType=="Warning") { log.Log(LogLevel.Warning, eventId, $"{errMsg}"); } else if (errType=="Trace") { log.Log(LogLevel.Trace, eventId, $"{errMsg}"); } else if (errType=="Error") { log.Log(LogLevel.Error, eventId, $"{errMsg}"); } else { log.LogInformation($"Event is {eventId}, type is {errType}, and msg is {errMsg}"); } }; string responseMessage = $"This HTTP triggered function executed successfully. {errType} - {errMsg}"; return new OkObjectResult(responseMessage); }