Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions stackstate-changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@
- DynaTrace Integration
- Gather Dynatrace events to determine the health state of Dynatrace components in StackState [(STAC-10795)](https://stackstate.atlassian.net/browse/STAC-10795)

- Docker Swarm Integration [(STAC-12057)](https://stackstate.atlassian.net/browse/STAC-12057)
- Produce topology for docker swarm services and their tasks.
- Send metric for Desired and Active replicas of a swarm service.

**Improvements**

- Integrations
Expand All @@ -16,6 +20,7 @@
**Bugfix**

- Kubelet check should not fail for Kubernetes 1.18+ (due to deprecated `/spec` API endpoint) [(STAC-12307)](https://stackstate.atlassian.net/browse/STAC-12307)
- Remove the tag for process components with high I/O or CPU. [(STAC-12306)](https://stackstate.atlassian.net/browse/STAC-12306)

## 2.10.0 (2021-02-25)

Expand Down
4 changes: 2 additions & 2 deletions stackstate-deps.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
"TRACE_AGENT_VERSION": "6.7.11",
"TRACE_AGENT_BRANCH": "6.7.11",
"TRACE_AGENT_WINDOWS_BINARY": "yes",
"PROCESS_AGENT_BRANCH": "2.7.2",
"PROCESS_AGENT_VERSION": "2.7.2",
"PROCESS_AGENT_BRANCH": "2.7.3",
"PROCESS_AGENT_VERSION": "2.7.3",
"OMNIBUS_SOFTWARE_VERSION": "6.11.0",
"OMNIBUS_RUBY_VERSION": "05fb405a100b8157bc5b32e48a97e674857e97f6",
"JMXFETCH_VERSION": "0.26.1",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM datadog/docker-library:python_2_7-alpine3_6

# datadog-py has no release with UDS support yet, using a commit hash
RUN pip install --no-cache-dir https://github.com/DataDog/datadogpy/archive/8b19b0b6e2d5e898dc05800f8257430b68156471.zip
RUN pip install --no-cache-dir https://github.com/DataDog/datadogpy/archive/af1c23bf9cd187208d336f4a1468535f06f43acd.zip

COPY sender.py /sender.py

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,6 @@ def wait_for_components():
)

assert stress_process["command"]["exe"] == "/usr/bin/stress"
assert "usage:top-mem" in stress_process["tags"] or "usage:top-cpu" in stress_process["tags"]

# assert that we don't get the short-lived python processes
short_lived_process_match = re.compile("python -c import time; time.sleep(.*);")
Expand Down