Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade psutil to fix performance #18688

Merged
merged 2 commits into from
Sep 27, 2024
Merged

Conversation

Kyle-Neale
Copy link
Contributor

What does this PR do?

Motivation

Additional Notes

Review checklist (to be filled by reviewers)

  • Feature or bugfix MUST have appropriate tests (unit, integration, e2e)
  • Changelog entries must be created for modifications to shipped code
  • Add the qa/skip-qa label if the PR doesn't need to be tested during QA.
  • If you need to backport this PR to another branch, you can add the backport/<branch-name> label to the PR and it will automatically open a backport PR once this one is merged

Copy link

codecov bot commented Sep 27, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 89.98%. Comparing base (b0834e7) to head (6fc8226).
Report is 24 commits behind head on master.

Additional details and impacted files
Flag Coverage Δ
btrfs 82.69% <ø> (ø)
cassandra ?
disk 90.74% <ø> (+1.42%) ⬆️
gunicorn 92.91% <ø> (ø)
hivemq ?
ibm_mq 91.31% <ø> (+43.76%) ⬆️
jboss_wildfly ?
mongo 93.26% <ø> (-0.26%) ⬇️
network 93.47% <ø> (+31.94%) ⬆️
process 85.57% <ø> (ø)
system_core 92.52% <ø> (ø)
system_swap 98.30% <ø> (ø)

Flags with carried forward coverage won't be shown. Click here to find out more.

@Kyle-Neale Kyle-Neale merged commit c14b128 into master Sep 27, 2024
104 of 106 checks passed
@Kyle-Neale Kyle-Neale deleted the kyleneale/bump_psutil_to_6.0.x branch September 27, 2024 12:04
@datadog-agent-integrations-bot
Copy link
Contributor

The backport to 7.58.x failed:

The process '/usr/bin/git' failed with exit code 1

To backport manually, run these commands in your terminal:

# Fetch latest updates from GitHub
git fetch
# Create a new working tree
git worktree add .worktrees/backport-7.58.x 7.58.x
# Navigate to the new working tree
cd .worktrees/backport-7.58.x
# Create a new branch
git switch --create backport-18688-to-7.58.x
# Cherry-pick the merged commit of this pull request and resolve the conflicts
git cherry-pick -x --mainline 1 c14b128c8390501e05b78563e8a182d12246f87f
# Push it to GitHub
git push --set-upstream origin backport-18688-to-7.58.x
# Go back to the original working tree
cd ../..
# Delete the working tree
git worktree remove .worktrees/backport-7.58.x

Then, create a pull request where the base branch is 7.58.x and the compare/head branch is backport-18688-to-7.58.x.

Kyle-Neale added a commit that referenced this pull request Sep 30, 2024
* Upgrade psutil to fix performance

* Add changelog

(cherry picked from commit c14b128)
Kyle-Neale added a commit that referenced this pull request Oct 1, 2024
* Upgrade psutil to fix performance

* Add changelog

(cherry picked from commit c14b128)
@datadog-agent-integrations-bot
Copy link
Contributor

The backport to master failed:

The process '/usr/bin/git' failed with exit code 1

To backport manually, run these commands in your terminal:

# Fetch latest updates from GitHub
git fetch
# Create a new working tree
git worktree add .worktrees/backport-master master
# Navigate to the new working tree
cd .worktrees/backport-master
# Create a new branch
git switch --create backport-18688-to-master
# Cherry-pick the merged commit of this pull request and resolve the conflicts
git cherry-pick -x --mainline 1 c14b128c8390501e05b78563e8a182d12246f87f
# Push it to GitHub
git push --set-upstream origin backport-18688-to-master
# Go back to the original working tree
cd ../..
# Delete the working tree
git worktree remove .worktrees/backport-master

Then, create a pull request where the base branch is master and the compare/head branch is backport-18688-to-master.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment