1

I need a system which reads new log entries from an azure function and outputs them to a logging program like SUMO Logic. This system needs to run outside of the azure function so as to increase efficiency within the function. I basically need a way to feed the logs into another azure function.

Cat
  • 21
  • 1

1 Answers1

0

The logs are stored in table storage - you could have a function run on a timer and pull the last set of logs.

Also, perhaps the functions app insights integration provides what you need? https://github.com/Azure/Azure-Functions/wiki/App-Insights-(Preview)

Matt Mason
  • 2,676
  • 9
  • 22
  • Thanks, I ended up using Application Insights, which works really well with azure functions now. https://github.com/Azure/Azure-Functions/wiki/App-Insights-(Preview) – Cat May 11 '17 at 06:23