forked from NVIDIA-AI-Blueprints/vulnerability-analysis
-
Notifications
You must be signed in to change notification settings - Fork 11
Java fixes + confusion matrix support #208
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
Merged
tmihalac
merged 21 commits into
RHEcosystemAppEng:new-agent
from
tmihalac:java-fixes-and-confustion-matrix
Apr 14, 2026
Merged
Changes from all commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
dfd2ef4
Java fixes + confusion matrix support
tmihalac da06e77
bug fixes and performance improvements
tmihalac 83add0e
Java fixes + confusion matrix support + fixed concurrency issues
tmihalac 52be35c
Removed failing python test
tmihalac fd52c4f
Removed failing python test
tmihalac 71ca244
retrigger CI checks
f0356fe
Refactored concurrency code to improve memory usage
tmihalac cbfb7ae
- Performance fix for document filtering
tmihalac 675380d
Performance improvments
tmihalac f614371
Performance improvements + memory
tmihalac deedb21
Fix to fatal: detected dubious ownership in repository at '/workspace…
tmihalac 60a14f9
Trying to reduce the memory footprint
tmihalac 3abbfa1
Trying to reduce the memory footprint by reducing the transitive sear…
tmihalac 754bd33
Trying to reduce the memory footprint by reducing the lru cache size
tmihalac bf699f1
Trying to reduce the memory footprint for java
tmihalac b100c06
Increased searcher cache size to 6
tmihalac da5247b
Fixed opentelemetry-collector-contrib to specific version
tmihalac f9f1e4d
Fixed logging text
tmihalac af855c2
Fixed kafka exporter config for opentelemetry-collector-contrib 0.148.0+
tmihalac 3dba64d
Fixed ecosystem not detected correctly in some of the functions
tmihalac 09b2619
Fixed following review
tmihalac File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,62 @@ | ||
| <?xml version="1.0" encoding="UTF-8"?> | ||
| <settings xmlns="http://maven.apache.org/SETTINGS/1.2.0" | ||
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
| xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.2.0 | ||
| https://maven.apache.org/xsd/settings-1.2.0.xsd"> | ||
| <profiles> | ||
| <profile> | ||
| <id>red-hat</id> | ||
| <repositories> | ||
| <repository> | ||
| <id>red-hat-ga</id> | ||
| <url>https://maven.repository.redhat.com/ga</url> | ||
| </repository> | ||
| <repository> | ||
| <id>jboss-public-repository-group</id> | ||
| <name>JBoss Public Maven Repository Group</name> | ||
| <url>https://repository.jboss.org/nexus/content/groups/public/</url> | ||
| <layout>default</layout> | ||
| <releases> | ||
| <enabled>true</enabled> | ||
| <updatePolicy>never</updatePolicy> | ||
| </releases> | ||
| <snapshots> | ||
| <enabled>true</enabled> | ||
| <updatePolicy>never</updatePolicy> | ||
| </snapshots> | ||
| </repository> | ||
| </repositories> | ||
| <pluginRepositories> | ||
| <pluginRepository> | ||
| <id>red-hat-ga</id> | ||
| <url>https://maven.repository.redhat.com/ga</url> | ||
| <releases> | ||
| <enabled>true</enabled> | ||
| </releases> | ||
| <snapshots> | ||
| <enabled>false</enabled> | ||
| </snapshots> | ||
| </pluginRepository> | ||
| </pluginRepositories> | ||
| </profile> | ||
| </profiles> | ||
| <activeProfiles> | ||
| <activeProfile>red-hat</activeProfile> | ||
| </activeProfiles> | ||
|
|
||
| <mirrors> | ||
| <!-- Override Maven's built-in "maven-default-http-blocker" by reusing the same id, | ||
| but making it not match external:http:* anymore. --> | ||
| <mirror> | ||
| <id>maven-default-http-blocker</id> | ||
| <name>Disabled default HTTP blocker</name> | ||
|
|
||
| <!-- Make this mirror effectively never apply --> | ||
| <mirrorOf>__no_such_repo_id__</mirrorOf> | ||
|
|
||
| <!-- URL is irrelevant if mirrorOf never matches, but must be present --> | ||
| <url>https://repo1.maven.org/maven2</url> | ||
| </mirror> | ||
| </mirrors> | ||
|
|
||
| </settings> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@tmihalac Hi did you had any issue with the latest version of opentelemetry-collector-contrib ?
or the reason is to tie it to a specific version
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi @RedTanny,
Yes there was a breaking change in the latest version of it, so we fixed the breaking change, and switched from a mutable
latestto an explicit immutable semver tag in order not to get in the future more breaking changes