I'm trying to setup a Gelf logger in azure function. I'm currently using this logger and trying to add a nlog.config file. I managed to create the file but unable to edit it, does anyone know why?
Unable to add Gelf config file into Azure function app
95 Views Asked by Eugene At
1
There are 1 best solutions below
Related Questions in C#
- Passing arguments to main in C using Eclipse
- kernel module does not print packet info
- error C2016 (C requires that a struct or union has at least one member) and structs typedefs
- Drawing with ncurses, sockets and fork
- How to catch delay-import dll errors (missing dll or symbol) in MinGW(-w64)?
- Configured TTL for A record(s) backing CNAME records
- Allocating memory for pointers inside structures in functions
- Finding articulation point of undirected graph by DFS
- C first fgets() is being skipped while the second runs
- C std library don't appear to be linked in object file
- gcc static library compilation
- How to do a case-insensitive string comparison?
- C programming: Create and write 2D array of files as function
- How to read a file then store to array and then print?
- Function timeouts in C and thread
Related Questions in AZURE-FUNCTIONS
- How to set MaxReceivedMessageSize for Azure Functions
- Authenticate to Azure Function from within App
- SQL connection pooling in Azure Functions
- Azure Functions live event stream is not working
- Azure Function Compiler Issues
- Can't load Entity Framework Core in Azure Function
- Azure function gives "The 'code' query parameter provided in the HTTP request did not match the expected value."
- Timeouts in Azure Functions when populating queues
- How can I make my Azure logic app portable
- Setting up Build Pipeline for Azure Bot Service/Azure Functions solution in VSTS Build
- Building SOAP Listener with Azure Functions
- How do I publish a .net Core app to Azure App Service for use in a Function?
- Azure Function access private resources
- Azure Function and Soap: Could not access envelope: Unable to create envelope from given source: com.sun.xml.internal.messaging.saaj.SOAPExceptionImpl
- How to add a reference of "System.ServiceModel" from Azure Function?
Related Questions in GELF
- Docker GELF logging additional fields
- Nginx UDP load-balance hash from first 8 bytes
- Logback and Graylog cannot communicate on a Mac using syslog
- net core app crash on windows when Gelf using
- Missing zero byte (\0) character at end of GELF TCP message from docker container's gelf driver
- Send GELF messages via HTTP to Logstash
- How to add a static field to gelf logstash appender in properties file? biz.paluch.logging
- How to run GELF Extension logger?
- TraceId from de.siegmar.logbackgelf.GelfUdpAppender to graylog
- Docker gelf log driver - Invalid reference format
- How to get GELF-Logs from local Docker daemon to Loki?
- Send a message on Graylog GELF UDP Input through a JAVA class
- Unable to add Gelf config file into Azure function app
- fluentd gelf plugin parameters setting
- Logging with JSON GELF format in Spring Boot
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?

Since you are develop azure function on portal, then you can edit the file directly.
If portal has some problems, you can choose to use kudu to edit the files of your function app:
1, Go to
https://yourfunctionappname.scm.azurewebsites.net/DebugConsole.2, Then go to D:\home\site\wwwroot>. Then you can find the files of your function app and edit it. This can avoid facing strange problems on azure portal.
Please let me know whether this can work.