Where can I find logs when I upgrade a fabric application ? - azure-service-fabric

I am trying to upgrade my Fabric Application using a powershell script. It fails sometime. Where can I find the logs for these failed application upgrades?
Thanks.

Related

1 Click app / add-on kubernetes on DigitalOcean failed

I have an kubernetes cluster running on DigitalOcean with multiple applications. Recently I tried using the 1 click app but got an error without any explenation. It just says: Installation failed try again.
The app I tried to install is: Kubernetes monitoring stack.
I hope someone can tell me how to fix this or where to find more information about the error.

Installing OWASP ZAP as Service on Windows 10

I am Trying to install OWASP ZAP (2.9.0) to run as a service on one of our servers for the testing environment. I've been trying unsuccessfully to use YAJSW. I creates a service but promptly stops running and gives up after a few restarts. The QA team has selenium tests which are configured to run through the instance of ZAP running on a particular server. If Zap in manually started. I would like to just have it running as a background/headless service though. We use YAJSW to run other java applications as services. Not sure why this is failing.

How to deploy Mindmeld project with production server mode?

The documentation explains how to run the service locally, but it does not explain how to deploy to the production server. I tried using a new flask service to call Mindmeld app. Although the service started successfully, it didn't load any data. Can you tell me how to deploy to the production?
server.py

Azure Service Fabric - install previous version of application from Service Fabric Explorer?

I'm trying to determine if it's possible to install a previous version of a Service Fabric application using the online Service Fabric Explorer as opposed to having to use a PowerShell script? In our case, the previous version of the application exists in the cluster and is visible in the list of application versions in the Explorer.
I appreciate any input.
This topic has been raised a few times around SO, short answer is no.
This answer give more details: Service fabric rollback to previous version from visual stuido or service fabric explorer

Hosting console application in public service fabric cluster

I am trying to deploy a console application to service fabric. I was able to successfully deploy and run the application in local service fabric cluster. But when I am trying with public service fabric cluster, I am seeing below warning in service fabric explorer and the application is not running.
Unhealthy event: SourceId='System.Hosting',
Property='CodePackageActivation:C:EntryPoint', HealthState='Warning',
ConsiderWarningAsError=false.There was an error during CodePackage
activation.The service host terminated with exit code: 3762504530
The most common explanation for code the runs locally but not in Azure is that you're targeting a .NET framework version that is not present on the VMs provisioned in a Service Fabric cluster. They currently provide .NET 4.5.1 out of the box, with .NET 4.5.2 getting added some time this month. Try retargeting your app to 4.5.1.
Update: as of February 2016, VMs provisioned for Service Fabric clusters come with .NET 4.5.2 by default.