Update WadCfg “only” of existing Azure Service Fabric cluster?

前端 未结 1 368
长情又很酷
长情又很酷 2021-01-23 12:47

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/servi

相关标签:
1条回答
  • 2021-01-23 13:31

    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:

    • Find the resource group where your cluster is deployed
    • Open the resource group and navigate to 'Automation Scripts'
    • Click 'Download' on top bar
    • Open the ARM template with all definitions
    • Make the modifications and save
    • Publish the updates

    1:

    2:

    You could also add it to a library and deploy from there, as guided in the link above.

    From the docs: Not all resource types support the export template function. To resolve this issue, manually add the missing resources back into your template.

    To be honest, I've never deployed this way other than test environments, so I am not sure if it is safe for production.

    0 讨论(0)
提交回复
热议问题