I solved it! The problem was this Log.Fatal(ex, "UnexpectedException"), when I change it to this Log.Fatal(ex.Message), then the message was logged to application insight.
Log.Fatal(ex, "UnexpectedException")
Log.Fatal(ex.Message)