You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[observer/ecs] Don't report EC2 tasks with unassigned container instances (#23279)
When ECS task is in state Provisioning/Pending, it can contain
container(s) which don't have EC2 instance yet. Such containers have
`nil` instance arn.
This change fixes service discovery error:
```error [email protected]/error.go:77 attachContainerInstance failed:
describe container instanced failed offset=0: ecs.DescribeContainerInstance
failed: InvalidParameterException: Container instance can not be blank.
{"kind": "extension", "name": "ecs_observer", "ErrScope": "Unknown"}
```
**Testing:** Related unit test is added.
# Use this changelog template to create an entry for release notes.
2
+
# If your change doesn't affect end users, such as a test fix or a tooling change,
3
+
# you should instead start your pull request title with [chore] or use the "Skip Changelog" label.
4
+
5
+
# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix'
6
+
change_type: bug_fix
7
+
8
+
# The name of the component, or a single word describing the area of concern, (e.g. filelogreceiver)
9
+
component: ecsobserver
10
+
11
+
# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`).
12
+
note: Don't fail with error when finding a task of EC2 launch type and missing container instance, just ignore them. This fixes behavior when task is provisioning and its containers are not assigned to instances yet.
13
+
14
+
# Mandatory: One or more tracking issues related to the change. You can use the PR number here if no issue exists.
15
+
issues: [23279]
16
+
17
+
# (Optional) One or more lines of additional information to render under the primary note.
18
+
# These lines will be padded with 2 spaces and then inserted directly into the document.
0 commit comments