mirror of
https://github.com/grafana/grafana.git
synced 2024-11-22 08:56:43 -06:00
Jaeger: Remove browser access mode (#30349)
* Jaeger: Remove browser access mode * Apply suggestions from code review Co-authored-by: Ursula Kallio <73951760+osg-grafana@users.noreply.github.com> * Update docs/sources/datasources/jaeger.md Co-authored-by: Ursula Kallio <73951760+osg-grafana@users.noreply.github.com> Co-authored-by: Ursula Kallio <73951760+osg-grafana@users.noreply.github.com>
This commit is contained in:
parent
3279a032c6
commit
87f39f60c1
@ -16,14 +16,13 @@ Just add it as a data source and you are ready to query your traces in [Explore]
|
||||
To access Jaeger settings, click the **Configuration** (gear) icon, then click **Data Sources** > **Jaeger**.
|
||||
|
||||
| Name | Description |
|
||||
| ------------ | ------------------------------------------------------------------------------------------------------------------------------------- |
|
||||
| `Name` | The data source name. This is how you refer to the data source in panels, queries, and Explore. |
|
||||
| `Default` | Data source will be pre-selected for new panels. |
|
||||
| `URL` | The URL of the Jaeger instance, for example, `http://localhost:16686` |
|
||||
| `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 to the Jaeger data source. |
|
||||
| `User` | User name for basic authentication. |
|
||||
| `Password` | Password for basic authentication. |
|
||||
| ------------ | ---------------------------------------------------------------------- |
|
||||
| `Name` | The data source name in panels, queries, and Explore. |
|
||||
| `Default` | The pre-selected data source for a new panel. |
|
||||
| `URL` | The URL of the Jaeger instance. For example, `http://localhost:16686`. |
|
||||
| `Basic Auth` | Enable basic authentication for the Jaeger data source. |
|
||||
| `User` | Specify a user name for basic authentication. |
|
||||
| `Password` | Specify a password for basic authentication. |
|
||||
|
||||
### Trace to logs
|
||||
|
||||
|
@ -11,7 +11,7 @@ export const ConfigEditor: React.FC<Props> = ({ options, onOptionsChange }) => {
|
||||
<DataSourceHttpSettings
|
||||
defaultUrl="http://localhost:16686"
|
||||
dataSourceConfig={options}
|
||||
showAccessOptions={true}
|
||||
showAccessOptions={false}
|
||||
onChange={onOptionsChange}
|
||||
/>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user