Share via

Server status-ARG

Siva 736 Reputation points
2022-09-26T01:36:48.42+00:00

Hi Team,

how to find the server status using the ARG query?- can any provide query for that., so that we can see that server is in seek state or something.

Azure Backup
Azure Backup

An Azure backup service that provides built-in management at scale.

Azure Automation
Azure Automation

An Azure service that is used to automate, configure, and install updates across hybrid environments.

0 comments No comments

Answer accepted by question author

Maxim Sergeev 6,591 Reputation points Microsoft Employee
2022-09-26T02:38:18.157+00:00

Hi there,

Resources  
| where type =~ 'Microsoft.Compute/virtualMachines'  
| project name, location, type, properties.extended.instanceView.powerState.displayStatus, id  
| order by name desc  
| project Server = name, Location = location, VMStatus = properties_extended_instanceView_powerState_displayStatus, id  

Was this answer helpful?

0 comments No comments

1 additional answer

Sort by: Most helpful
  1. Dillon Silzer 60,931 Reputation points
    2022-09-26T01:54:00.553+00:00

    Hi @Siva

    I think you may be looking for the following network commands (use in command prompt):

    arp -a

    or

    netstat -ano

    ----------------------------------

    If this is helpful please accept answer.

    Was this answer helpful?


Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.