Add deploymentID to ServerInfo (#7372)

This commit is contained in:
Krishnan Parthasarathi 2019-03-19 16:12:24 +05:30 committed by Nitish Tiwari
parent 328eb74cbb
commit 8a77a298f2
2 changed files with 18 additions and 15 deletions

View File

@ -177,11 +177,12 @@ func (a adminAPIHandlers) ServiceStopNRestartHandler(w http.ResponseWriter, r *h
// ServerProperties holds some server information such as, version, region // ServerProperties holds some server information such as, version, region
// uptime, etc.. // uptime, etc..
type ServerProperties struct { type ServerProperties struct {
Uptime time.Duration `json:"uptime"` Uptime time.Duration `json:"uptime"`
Version string `json:"version"` Version string `json:"version"`
CommitID string `json:"commitID"` CommitID string `json:"commitID"`
Region string `json:"region"` DeploymentID string `json:"deploymentID"`
SQSARN []string `json:"sqsARN"` Region string `json:"region"`
SQSARN []string `json:"sqsARN"`
} }
// ServerConnStats holds transferred bytes from/to the server // ServerConnStats holds transferred bytes from/to the server
@ -256,11 +257,12 @@ func (a adminAPIHandlers) ServerInfoHandler(w http.ResponseWriter, r *http.Reque
ConnStats: globalConnStats.toServerConnStats(), ConnStats: globalConnStats.toServerConnStats(),
HTTPStats: globalHTTPStats.toServerHTTPStats(), HTTPStats: globalHTTPStats.toServerHTTPStats(),
Properties: ServerProperties{ Properties: ServerProperties{
Uptime: UTCNow().Sub(globalBootTime), Uptime: UTCNow().Sub(globalBootTime),
Version: Version, Version: Version,
CommitID: CommitID, CommitID: CommitID,
SQSARN: globalNotificationSys.GetARNList(), DeploymentID: globalDeploymentID,
Region: globalServerConfig.GetRegion(), SQSARN: globalNotificationSys.GetARNList(),
Region: globalServerConfig.GetRegion(),
}, },
}, },
}) })

View File

@ -72,11 +72,12 @@ type StorageInfo struct {
// ServerProperties holds some of the server's information such as uptime, // ServerProperties holds some of the server's information such as uptime,
// version, region, .. // version, region, ..
type ServerProperties struct { type ServerProperties struct {
Uptime time.Duration `json:"uptime"` Uptime time.Duration `json:"uptime"`
Version string `json:"version"` Version string `json:"version"`
CommitID string `json:"commitID"` CommitID string `json:"commitID"`
Region string `json:"region"` DeploymentID string `json:"deploymentID"`
SQSARN []string `json:"sqsARN"` Region string `json:"region"`
SQSARN []string `json:"sqsARN"`
} }
// ServerConnStats holds network information // ServerConnStats holds network information