Skip to content

Commit

Permalink
Docs update (#1532)
Browse files Browse the repository at this point in the history
Co-authored-by: Amir Blum <[email protected]>
  • Loading branch information
dovzhikova and blumamir authored Sep 25, 2024
1 parent 887d102 commit 06f8b3f
Show file tree
Hide file tree
Showing 5 changed files with 113 additions and 8 deletions.
4 changes: 4 additions & 0 deletions docs/instrumentations/golang/golang.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ Odigos uses the official [opentelemetry-go-instrumentation](https://github.com/o

- Go runtime versions **1.17** and above are supported.

<Info>
Odigos enterprise data collection is done using eBPF, so Odigos requires, at minimum, platforms that have underlying Linux kernel versions of 5.4.0.
</Info>

## Traces

Odigos will automatically instrument your golang services to record and collect spans for distributed tracing, by utilizing the OpenTelemetry go official auto Instrumentation Libraries.
Expand Down
4 changes: 4 additions & 0 deletions docs/instrumentations/java/ebpf.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ The following JVM runtimes are continuously tested and verified:
| Azul Zulu | 11 |
| Azul Zulu | 17 |

<Info>
Odigos enterprise data collection is done using eBPF, so Odigos requires, at minimum, platforms that have underlying Linux kernel versions of 5.4.0.
</Info>

## Instrumentation Libraries

The following packages will be auto instrumented by Odigos:
Expand Down
34 changes: 32 additions & 2 deletions docs/quickstart/installation.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,38 @@ is a single binary that can be installed on any Linux, MacOS or Windows machine.
```
</Tab>
<Tab title="GitHub Releases">
Download the latest release from the [GitHub Releases](https://github.com/odigos-io/odigos/releases)
page and extract the binary to a directory in your `PATH`.
1. Download the Latest Version: Head over to the [Odigos GitHub Releases](https://github.com/odigos-io/odigos/releases) page and click on the latest version available. You’ll see a list of files—choose the one that matches your operating system (Windows, macOS, or Linux).

2. Extract the Downloaded File: Once the file is downloaded, it will likely be in a compressed format like `.zip` or `.tar.gz`. To use the program, you’ll first need to extract (or unzip) it. Right-click on the file and select "Extract Here" or use a similar option, depending on your operating system.
3. Move the File to a Folder in Your `PATH`. You’ll need to move this file to a folder where your computer looks for programs, known as your "PATH".
- For Windows: Move the extracted file to a folder like `C:\Windows\System32` or any folder listed in your system’s PATH. You can find out where by typing echo `%PATH%` in Command Prompt.
- For macOS/Linux: Move the file to a folder like `/usr/local/bin/` or `/usr/bin/`, both of which are common folders included in the PATH. You can check your PATH by opening the terminal and typing `echo $PATH`.
4. Verify It’s Working: Once the file is in the correct folder, open a terminal or command prompt and type the name of the program (e.g., odigos). If it runs, you’ve successfully installed it! If not, double-check that you moved the file to a folder included in your PATH.
</Tab>
<Tab title="Windows">
1. Download the Latest Version: Go to the [Odigos GitHub Releases](https://github.com/odigos-io/odigos/releases) page. Look for the latest version and download the file that matches your system (typically, this will be a `.zip` file for Windows).
2. Extract the Downloaded File: Once the download is complete, locate the `.zip` file in your Downloads folder. Right-click on it and choose "Extract All." Select a location on your computer where you'd like to save the extracted files.
3. Move the Binary to a Folder in Your PATH: Windows has specific folders where it looks for programs to run, called the "PATH". To make Odigos work from anywhere on your system, you’ll need to move the program (binary) into one of these folders. Here’s how:
- **Option 1**:
Move the file to a folder already in the PATH, such as `C:\Windows\System32`. Simply drag the extracted file (often named something like `odigos.exe`) into that folder.
- **Option 2**:
Add the folder containing the extracted binary to your PATH manually:
1. Right-click the **Start** button and select **System**.
2. Click **Advanced system settings** on the left.
3. In the **System Properties** window, click **Environment Variables** at the bottom.
4. In the **System Variables** section, scroll down and find the variable named `Path`. Select it and click **Edit**.
5. In the **Edit Environment Variables** window, click **New**, and then add the folder where you saved the extracted file.
6. Click **OK** to close all windows.
4. Verify Installation: Open the **Command Prompt** by searching for `cmd` in the Start menu. Type the name of the program, like `odigos.exe`, and press Enter. If the program runs, then you’ve successfully installed it. If it doesn’t, double-check that you either moved the file to a folder in your PATH or correctly added the folder where the file is located.
</Tab>
</Tabs>
Expand Down
38 changes: 36 additions & 2 deletions docs/setup/installation.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ There are 2 ways to install odigos in your kubernetes cluster:
Both install methods will deploy and configure resources in the active Kubernetes cluster as per the current context.
Before proceeding with the installation, ensure that you are targeting the correct cluster with `kubectl config current-context`.

<Info>
Odigos enterprise data collection is done using eBPF, so Odigos requires, at minimum, platforms that have underlying Linux kernel versions of 5.4.0.
</Info>

## Odigos CLI

### Install the CLI
Expand All @@ -29,8 +33,38 @@ Before proceeding with the installation, ensure that you are targeting the corre
```
</Tab>
<Tab title="GitHub Releases">
Download the latest release from the [GitHub Releases](https://github.com/odigos-io/odigos/releases)
page and extract the binary to a directory in your `PATH`.
1. Download the Latest Version: Head over to the [Odigos GitHub Releases](https://github.com/odigos-io/odigos/releases) page and click on the latest version available. You’ll see a list of files—choose the one that matches your operating system (Windows, macOS, or Linux).

2. Extract the Downloaded File: Once the file is downloaded, it will likely be in a compressed format like `.zip` or `.tar.gz`. To use the program, you’ll first need to extract (or unzip) it. Right-click on the file and select "Extract Here" or use a similar option, depending on your operating system.
3. Move the File to a Folder in Your `PATH`. You’ll need to move this file to a folder where your computer looks for programs, known as your "PATH".
- For Windows: Move the extracted file to a folder like `C:\Windows\System32` or any folder listed in your system’s PATH. You can find out where by typing echo `%PATH%` in Command Prompt.
- For macOS/Linux: Move the file to a folder like `/usr/local/bin/` or `/usr/bin/`, both of which are common folders included in the PATH. You can check your PATH by opening the terminal and typing `echo $PATH`.
4. Verify It’s Working: Once the file is in the correct folder, open a terminal or command prompt and type the name of the program (e.g., odigos). If it runs, you’ve successfully installed it! If not, double-check that you moved the file to a folder included in your PATH.
</Tab>
<Tab title="Windows">
1. Download the Latest Version: Go to the [Odigos GitHub Releases](https://github.com/odigos-io/odigos/releases) page. Look for the latest version and download the file that matches your system (typically, this will be a `.zip` file for Windows).
2. Extract the Downloaded File: Once the download is complete, locate the `.zip` file in your Downloads folder. Right-click on it and choose "Extract All." Select a location on your computer where you'd like to save the extracted files.
3. Move the Binary to a Folder in Your PATH: Windows has specific folders where it looks for programs to run, called the "PATH". To make Odigos work from anywhere on your system, you’ll need to move the program (binary) into one of these folders. Here’s how:
- **Option 1**:
Move the file to a folder already in the PATH, such as `C:\Windows\System32`. Simply drag the extracted file (often named something like `odigos.exe`) into that folder.
- **Option 2**:
Add the folder containing the extracted binary to your PATH manually:
1. Right-click the **Start** button and select **System**.
2. Click **Advanced system settings** on the left.
3. In the **System Properties** window, click **Environment Variables** at the bottom.
4. In the **System Variables** section, scroll down and find the variable named `Path`. Select it and click **Edit**.
5. In the **Edit Environment Variables** window, click **New**, and then add the folder where you saved the extracted file.
6. Click **OK** to close all windows.
4. Verify Installation: Open the **Command Prompt** by searching for `cmd` in the Start menu. Type the name of the program, like `odigos.exe`, and press Enter. If the program runs, then you’ve successfully installed it. If it doesn’t, double-check that you either moved the file to a folder in your PATH or correctly added the folder where the file is located.
</Tab>
</Tabs>
Expand Down
41 changes: 37 additions & 4 deletions docs/setup/upgrade.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,46 @@ First, upgrade the CLI tool to latest version:

<Tabs>
<Tab title="Homebrew">
```shell
brew update && brew install odigos-io/homebrew-odigos-cli/odigos
If you are on MacOS, you can install Odigos CLI using Homebrew:

```bash
brew install odigos-io/homebrew-odigos-cli/odigos
```
</Tab>
<Tab title="GitHub Releases">
Download the latest release from the [GitHub Releases](https://github.com/odigos-io/odigos/releases)
page and extract the binary to a directory in your `PATH`.
1. Download the Latest Version: Head over to the [Odigos GitHub Releases](https://github.com/odigos-io/odigos/releases) page and click on the latest version available. You’ll see a list of files—choose the one that matches your operating system (Windows, macOS, or Linux).

2. Extract the Downloaded File: Once the file is downloaded, it will likely be in a compressed format like `.zip` or `.tar.gz`. To use the program, you’ll first need to extract (or unzip) it. Right-click on the file and select "Extract Here" or use a similar option, depending on your operating system.
3. Move the File to a Folder in Your `PATH`. You’ll need to move this file to a folder where your computer looks for programs, known as your "PATH".
- For Windows: Move the extracted file to a folder like `C:\Windows\System32` or any folder listed in your system’s PATH. You can find out where by typing echo `%PATH%` in Command Prompt.
- For macOS/Linux: Move the file to a folder like `/usr/local/bin/` or `/usr/bin/`, both of which are common folders included in the PATH. You can check your PATH by opening the terminal and typing `echo $PATH`.
4. Verify It’s Working: Once the file is in the correct folder, open a terminal or command prompt and type the name of the program (e.g., odigos). If it runs, you’ve successfully installed it! If not, double-check that you moved the file to a folder included in your PATH.
</Tab>
<Tab title="Windows">
1. Download the Latest Version: Go to the [Odigos GitHub Releases](https://github.com/odigos-io/odigos/releases) page. Look for the latest version and download the file that matches your system (typically, this will be a `.zip` file for Windows).
2. Extract the Downloaded File: Once the download is complete, locate the `.zip` file in your Downloads folder. Right-click on it and choose "Extract All." Select a location on your computer where you'd like to save the extracted files.
3. Move the Binary to a Folder in Your PATH: Windows has specific folders where it looks for programs to run, called the "PATH". To make Odigos work from anywhere on your system, you’ll need to move the program (binary) into one of these folders. Here’s how:
- **Option 1**:
Move the file to a folder already in the PATH, such as `C:\Windows\System32`. Simply drag the extracted file (often named something like `odigos.exe`) into that folder.
- **Option 2**:
Add the folder containing the extracted binary to your PATH manually:
1. Right-click the **Start** button and select **System**.
2. Click **Advanced system settings** on the left.
3. In the **System Properties** window, click **Environment Variables** at the bottom.
4. In the **System Variables** section, scroll down and find the variable named `Path`. Select it and click **Edit**.
5. In the **Edit Environment Variables** window, click **New**, and then add the folder where you saved the extracted file.
6. Click **OK** to close all windows.
4. Verify Installation: Open the **Command Prompt** by searching for `cmd` in the Start menu. Type the name of the program, like `odigos.exe`, and press Enter. If the program runs, then you’ve successfully installed it. If it doesn’t, double-check that you either moved the file to a folder in your PATH or correctly added the folder where the file is located.
</Tab>
</Tabs>
Expand Down

0 comments on commit 06f8b3f

Please sign in to comment.