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

Update README.md #10622

Closed
Closed
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
44 changes: 44 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@
* [Logger MDC auto-instrumentation](#logger-mdc-mapped-diagnostic-context-auto-instrumentation)
* [Troubleshooting](#troubleshooting)
* [Contributing](#contributing)
* [OSHI Jar Setup with Special Configuration](#OSHI Jar Setup with Special Configuration)

## About

Expand Down Expand Up @@ -182,3 +183,46 @@ Thanks to all the people who already contributed!
[manual]: https://opentelemetry.io/docs/instrumentation/java/manual/

[suppress]: https://opentelemetry.io/docs/instrumentation/java/automatic/agent-config/#suppressing-specific-auto-instrumentation

## OSHI Jar Setup with Special Configuration

Introduction: OSHI (Operating System Hardware Information) is a Java library that provides cross-platform access to information about system hardware, operating system, and JVM. Sometimes, you may need to manually download the OSHI jar file and add it to the system classpath, especially in environments where dependency management tools like Maven or Gradle are not available or suitable.

Step1:
download oshi-core jar
from https://search.maven.org/search?q=g:com.github.oshi%20AND%20a:oshi-core



Step2: Adding OSHI Jar to Classpath:

Once you've downloaded the OSHI jar file, you need to add it to the classpath of your Java application.

1. Command Line: You can add the OSHI jar to the classpath using the -cp or -classpath option when running the java command.

Cmd:
java -cp /path/to/oshi-core-v1.jar MainClass

Note: In above cmd, v1 denotes the version for the .jar

Replace /path/to/oshi-core-v1.jar with the actual path to the downloaded jar file and MainClass with the main class of your Java application.

2. Environment Variable: Set the CLASSPATH environment variable to include the path to the OSHI jar file.

Cmd:
export CLASSPATH=/path/to/oshi-core-v1.jar:$CLASSPATH


Note: In above cmd, v1 denotes the version for the .jar

Replace /path/to/oshi-core-v1.jar with the actual path to the downloaded jar file.

3. IDE Setup: If you are using an Integrated Development Environment (IDE) like Eclipse or IntelliJ IDEA, you can add the OSHI jar to your project's build path through the IDE's project settings.
• In Eclipse: Right-click on your project, select "Properties" > "Java Build Path" > "Libraries" > "Add External JARs", then select the downloaded OSHI jar.
• In IntelliJ IDEA: Right-click on your project, select "Open Module Settings" > "Dependencies" tab, click on the "+" icon, and select "JARs or directories" to add the OSHI jar.

Conclusion: By following the steps mentioned above, you can manually download the OSHI jar file and add it to the system classpath for your Java applications, enabling access to system hardware information and monitoring capabilities provided by OSHI.




Loading