how to insert custom logs in app insights from azure function app?
I want to send custom logs to azure app insights from azure function app. For eg i want to send error code error message and payload from azure functions to app insights
I want to send custom logs to azure app insights from azure function app. For eg i want to send error code error message and payload from azure functions to app insights
I have rows in a table like this: ORG Tenant Dimension Count A T1 MAU 100 A T1 WAU 70 B T2 MAU 50 B T2 Retention 30 Now I need to group based on ORG, Tenant and remaining columns…
I am using Windows authentication in a Webforms application, and I want to get the user's email address, but I think I hit the error when connecting to the server. Anything wrong with my code? I had tried the strAccountId…
I have this simple Object class, which is filled by json content of the api controller. [BsonId] public string Id { get; } [JsonIgnore] public string UserId { get; set; } I want both of these variables to access the…
I have a base class with a vector of pointers, and I think to slide the vector outside this class, I wrote the for_each() method: class model { static std::vector<model*> models; ... public: template <class C> static void for_each(C *c,void…
I want to store my credintial like email and password hardcode on my code, when I create jwt token then I want to use it. Can I do this?? If it possible how to access email and password.
I'm getting System.UnauthorizedAccessException when trying to create a file using using (var fileStream = System.IO.File.Create(filePath)) this is only trace i got Exception thrown: 'System.UnauthorizedAccessException' in System.Private.CoreLib.dll It's ASP.NET Core 6 Web API run on docker Any Ideas? Thanks :) EDIT:…
I have a form that is supposed to have defalt values, which the user can decide to change in some fields. The inputs are set up like this: <input type="text" id="username" clientidmode="static" runat="server" /> I am setting the default data…
I have a mongo collection (of <BsonDocument>) who could look like this: { "someProperty1": "someValue1", "users": [ { "name": "[email protected]", "displayName" : "Sample User" } { "name": "[email protected]", "displayName" : "Another User" } ] }, "someProperty2": "someValue2", "users": [ {…
I have a HTML code: <div class="container"> <div class="row"> @foreach(var post in Model) { <div class="col-sm-8"> <div class="row"> <div class="post-body container shadow p-3 mb-3 rounded-3"> <h2>@post.Title</h2> <p>@post.Description</p> <button type="button" class="show-post-btn btn btn-secondary" data-bs-toggle="modal" data-bs-target="#wholePost" onclick="return showContent()">Show post...</button> </div> <div class="modal…