-
Notifications
You must be signed in to change notification settings - Fork 299
Closed
7 / 77 of 7 issues completedDescription
Add a file sink that will allow the information from the log to be written into the file.
Additionally, a new file property will be added to the configuration file that will be under runtime and that can be enabled in order for the file to receive the logging information.
Configuration File with Sink
{
"runtime": {
...
"telemetry": {
"application-insights": {
"enabled": true,
"connection-string": "@env('app-insights-connection-string')"
}
},
"file": {
"enabled": true,
"path": "/logs/dab-log.txt",
"rollingInterval": "Day",
"retainedFileCountLimit": 7,
"fileSizeLimitBytes": 10485760
},
...
}
}
Sub-issues
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request
Type
Projects
Status
Done