I want to monitor Perfomance metrics of a existing Service Fabric Cluster. Here is the link of Performance metrics - https://docs.microsoft.com/en-us/azure/service-fabric/service-fabric-diagnostics-event-generation-perf
I went through this Microsoft documentation - https://docs.microsoft.com/en-us/azure/service-fabric/service-fabric-diagnostics-perf-wad
My problem is, The ARM template I downloaded during Service Fabric creation time is quite big and contains lot of params and I don't have the template-params file. I think it is possible to build the params file but it will be time consuming.
Is it possible to download template and template-params file of existing service fabric cluster ?
If no, Is it possible to just update the "WadCfg" section to add new performance counters ?
Your can export your entire resource group with all definitions and parameters, there you can find all parameters(as default parameters) for the resources deployed in the resource group. I've never done for SF cluster, but a quick look to an existing resource group I have I could see the cluster definition included.
This link explain how: https://docs.microsoft.com/en-us/azure/azure-resource-manager/resource-manager-export-template
In Summary:
1:
2:
You could also add it to a library and deploy from there, as guided in the link above.
To be honest, I've never deployed this way other than test environments, so I am not sure if it is safe for production.