Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
旧的 silverlight 门户用于显示每个角色实例的开始日期时间,以便我可以看到它上次循环的时间。
据我所知,此信息并未出现在HTML5门户中。
HTML5
有没有办法通过powershell或以编程方式访问这些信息REST API?
powershell
REST API
我找不到查看每个角色实例的正常运行时间的方法,但看起来这将为您提供自上次修改服务以来的时间(即使用交换 VIP、上传包等)。这和一个很好的老式 ping(以确保它仍然存在)应该可以帮助您了解您的服务“稳定”了多长时间。
[DateTime]::Now - (Get-AzureService | Where-Object { $_.Label -eq 'MyService' } | Select-Object -ExpandProperty DateModified)