|
|
||
|---|---|---|
| README.md | ||
| install.sh | ||
| simple-otel.php | ||
README.md
Certainly! Here's the updated README.md for the Simple Otel plugin:
Simple Otel Plugin Installation
Installation
To install or update the Simple Otel plugin, run the following command from the root of your WordPress HTML directory:
curl -sSL https://git.nixc.us/colin/SimpleOtel/raw/branch/main/install.sh | bash
Enabling the Plugin
After running the install script, you need to activate the plugin. You can do this via the WordPress admin dashboard:
- Log in to your WordPress admin dashboard.
- Navigate to
Plugins > Installed Plugins. - Find
Simple Otelin the list and clickActivate.
Alternatively, you can activate the plugin using WP-CLI:
wp plugin activate simple-otel --allow-root
What install.sh Does
The install.sh script performs the following actions:
- Defines the URL for downloading the
simple-otel.phpfile. - Creates the target directory (
wp-content/plugins/simple-otel) if it doesn't exist. - Downloads the
simple-otel.phpfile into the target directory. - Downloads and unzips the
vendordirectory containing pre-installed dependencies. - Creates a blank
config.phpfile if it doesn't already exist and provides a template for configuration. - Sets the correct permissions for the
simple-otel.phpandconfig.phpfiles. - Prints a message indicating that the Simple Otel plugin has been installed or updated successfully.
Configuration
After installing the plugin, you can customize its behavior by editing the config.php file located in wp-content/plugins/simple-otel/.
Example config.php
Here is an example configuration for the config.php file:
<?php
// Configuration for Simple Otel plugin
// Add your configurations here
// Set default values using environment variables or fallback to manual configuration
$otel_service_name = getenv('OTEL_SERVICE_NAME') ?: 'default-service-name';
$otel_exporter_otlp_endpoint = getenv('OTEL_EXPORTER_OTLP_ENDPOINT') ?: 'http://localhost:4317';
// Apply configurations
if (isset($GLOBALS['tracer'])) {
$GLOBALS['tracer']->setAttribute('service.name', $otel_service_name);
$GLOBALS['tracer']->setAttribute('otel.exporter.otlp.endpoint', $otel_exporter_otlp_endpoint);
}
?>
Explanation
- Service Name: Set the name of the service as it will appear in your observability platform. It uses the
OTEL_SERVICE_NAMEenvironment variable if set; otherwise, it defaults todefault-service-name. - OTLP Endpoint: Specify the endpoint where SigNoz is running. It uses the
OTEL_EXPORTER_OTLP_ENDPOINTenvironment variable if set; otherwise, it defaults tohttp://localhost:4317.
You can add more configuration options as needed. The plugin will include this file and apply the configurations when it initializes.
Additional Information
For more information on how to use and configure the Simple Otel plugin, please refer to the documentation or visit the OpenTelemetry PHP documentation.
By following these instructions, you can set up the Simple Otel plugin with pre-installed dependencies, making it easier for end-users to install and activate the plugin without needing to run Composer themselves.