Documentation ¶
Index ¶
- Variables
- func ContainerAssociationHandler(state dockerstate.TaskEngineState) func(http.ResponseWriter, *http.Request)
- func ContainerAssociationsHandler(state dockerstate.TaskEngineState) func(http.ResponseWriter, *http.Request)
- func ContainerMetadataHandler(state dockerstate.TaskEngineState) func(http.ResponseWriter, *http.Request)
- func ContainerStatsHandler(state dockerstate.TaskEngineState, statsEngine stats.Engine) func(http.ResponseWriter, *http.Request)
- func GetContainerNetworkMetadata(containerID string, state dockerstate.TaskEngineState) ([]containermetadata.Network, error)
- func GetContainerResponse(containerID string, state dockerstate.TaskEngineState) (*v2.ContainerResponse, error)
- func TaskMetadataHandler(state dockerstate.TaskEngineState, ecsClient api.ECSClient, ...) func(http.ResponseWriter, *http.Request)
- func TaskStatsHandler(state dockerstate.TaskEngineState, statsEngine stats.Engine) func(http.ResponseWriter, *http.Request)
- type AssociationsResponse
Constants ¶
This section is empty.
Variables ¶
var ( // Container associations endpoint: /v3/<v3 endpoint id>/<association type> ContainerAssociationsPath = fmt.Sprintf("/v3/%s/associations/%s", utils.ConstructMuxVar(v3EndpointIDMuxName, utils.AnythingButSlashRegEx), utils.ConstructMuxVar(associationTypeMuxName, utils.AnythingButSlashRegEx)) // Container association endpoint: /v3/<v3 endpoint id>/<association type>/<association name> ContainerAssociationPath = fmt.Sprintf("/v3/%s/associations/%s/%s", utils.ConstructMuxVar(v3EndpointIDMuxName, utils.AnythingButSlashRegEx), utils.ConstructMuxVar(associationTypeMuxName, utils.AnythingButSlashRegEx), utils.ConstructMuxVar(associationNameMuxName, utils.AnythingButEmptyRegEx)) // Treat "/v3/<v3 endpoint id>/<association type>/" as a container association endpoint with empty association name (therefore invalid), to be consistent with similar situation in credentials endpoint and v3 metadata endpoint ContainerAssociationPathWithSlash = ContainerAssociationsPath + "/" )
var ContainerMetadataPath = "/v3/" + utils.ConstructMuxVar(v3EndpointIDMuxName, utils.AnythingButSlashRegEx)
ContainerMetadataPath specifies the relative URI path for serving container metadata.
var ContainerStatsPath = "/v3/" + utils.ConstructMuxVar(v3EndpointIDMuxName, utils.AnythingButSlashRegEx) + "/stats"
ContainerStatsPath specifies the relative URI path for serving container stats.
var TaskMetadataPath = "/v3/" + utils.ConstructMuxVar(v3EndpointIDMuxName, utils.AnythingButSlashRegEx) + "/task"
TaskMetadataPath specifies the relative URI path for serving task metadata.
var TaskStatsPath = "/v3/" + utils.ConstructMuxVar(v3EndpointIDMuxName, utils.AnythingButSlashRegEx) + "/task/stats"
TaskStatsPath specifies the relative URI path for serving task stats.
var TaskWithTagsMetadataPath = "/v3/" + utils.ConstructMuxVar(v3EndpointIDMuxName, utils.AnythingButSlashRegEx) + "/taskWithTags"
TaskWithTagsMetadataPath specifies the relative URI path for serving task metdata with Container Instance and Task Tags retrieved through the ECS API
Functions ¶
func ContainerAssociationHandler ¶ added in v1.25.0
func ContainerAssociationHandler(state dockerstate.TaskEngineState) func(http.ResponseWriter, *http.Request)
ContainerAssociationHandler returns the handler method for handling container association requests.
func ContainerAssociationsHandler ¶ added in v1.25.0
func ContainerAssociationsHandler(state dockerstate.TaskEngineState) func(http.ResponseWriter, *http.Request)
ContainerAssociationHandler returns the handler method for handling container associations requests.
func ContainerMetadataHandler ¶
func ContainerMetadataHandler(state dockerstate.TaskEngineState) func(http.ResponseWriter, *http.Request)
ContainerMetadataHandler returns the handler method for handling container metadata requests.
func ContainerStatsHandler ¶
func ContainerStatsHandler(state dockerstate.TaskEngineState, statsEngine stats.Engine) func(http.ResponseWriter, *http.Request)
ContainerStatsHandler returns the handler method for handling container stats requests.
func GetContainerNetworkMetadata ¶ added in v1.25.3
func GetContainerNetworkMetadata(containerID string, state dockerstate.TaskEngineState) ([]containermetadata.Network, error)
GetContainerNetworkMetadata returns the network metadata for the container
func GetContainerResponse ¶ added in v1.25.3
func GetContainerResponse(containerID string, state dockerstate.TaskEngineState) (*v2.ContainerResponse, error)
GetContainerResponse gets container response for v3 metadata
func TaskMetadataHandler ¶
func TaskMetadataHandler(state dockerstate.TaskEngineState, ecsClient api.ECSClient, cluster, az, containerInstanceArn string, propagateTags bool) func(http.ResponseWriter, *http.Request)
TaskMetadataHandler returns the handler method for handling task metadata requests.
func TaskStatsHandler ¶
func TaskStatsHandler(state dockerstate.TaskEngineState, statsEngine stats.Engine) func(http.ResponseWriter, *http.Request)
TaskStatsHandler returns the handler method for handling task stats requests.
Types ¶
type AssociationsResponse ¶ added in v1.25.0
type AssociationsResponse struct {
Associations []string `json:"Associations"`
}
AssociationsResponse defines the schema for the associations response JSON object