mirror of
https://github.com/minio/minio.git
synced 2025-04-04 11:50:36 -04:00
Add deploymentID to ServerInfo (#7372)
This commit is contained in:
parent
328eb74cbb
commit
8a77a298f2
@ -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(),
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
@ -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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user