Commit d35f9f7e by Zoltán Bedi Committed by GitHub

Zipkin: Remove browser access mode (#30360)

* Zipkin: Remove browser access mode

* Update zipkin.md
parent 87f39f60
...@@ -15,15 +15,14 @@ Just add it as a data source and you are ready to query your traces in [Explore] ...@@ -15,15 +15,14 @@ Just add it as a data source and you are ready to query your traces in [Explore]
To access Zipkin settings, click the **Configuration** (gear) icon, then click **Data Sources** > **Zipkin**. To access Zipkin settings, click the **Configuration** (gear) icon, then click **Data Sources** > **Zipkin**.
| Name | Description | | Name | Description |
| ------------ | ------------------------------------------------------------------------------------------------------------------------------------- | | ------------ | --------------------------------------------------------------------- |
| `Name` | The data source name. This is how you refer to the data source in panels, queries, and Explore. | | `Name` | The data source name in panels, queries, and Explore. |
| `Default` | Data source will be pre-selected for new panels. | | `Default` | The pre-selected data source for a new panel. |
| `URL` | The URL of the Zipkin instance, e.g., `http://localhost:9411`. | | `URL` | The URL of the Zipkin instance. For example, `http://localhost:9411`. |
| `Access` | Server (default) = URL needs to be accessible from the Grafana backend/server. Browser = URL needs to be accessible from the browser. | | `Basic Auth` | Enable basic authentication for the Zipkin data source. |
| `Basic Auth` | Enable basic authentication to the Zipkin data source. | | `User` | Specify a user name for basic authentication. |
| `User` | User name for basic authentication. | | `Password` | Specify a password for basic authentication. |
| `Password` | Password for basic authentication. |
### Trace to logs ### Trace to logs
......
...@@ -11,7 +11,7 @@ export const ConfigEditor: React.FC<Props> = ({ options, onOptionsChange }) => { ...@@ -11,7 +11,7 @@ export const ConfigEditor: React.FC<Props> = ({ options, onOptionsChange }) => {
<DataSourceHttpSettings <DataSourceHttpSettings
defaultUrl="http://localhost:9411" defaultUrl="http://localhost:9411"
dataSourceConfig={options} dataSourceConfig={options}
showAccessOptions={true} showAccessOptions={false}
onChange={onOptionsChange} onChange={onOptionsChange}
/> />
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment