Update opentelemetry-collector dependencies to v0.119.0. #243
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Updating
opentelemetry-collector
andopentelemetry-collector-contrib
dependencies to versionv0.119.0
. Some changes to the code had to done to accommodate to the new version. Some details :scraper
package was moved from/receiver/scraper*
files to/scraper/scraper*
(see commit).scraper
package functions likeNewScraper
andNewScraperControllerReceiver
were deprecated and had to be substituted withNewMetrics
andNewMetricsController
, respectively.hostmetrics
receiver (see Proposal: Manage error spam in the hostmetrics process scraper open-telemetry/opentelemetry-collector-contrib#34988), we have to update the path (see commit ) which generated error spam log and redirect them asdebug
logs.b/354756009