get_datasource_by_name
Retrieve detailed information about a specific Grafana datasource by providing its name to access configuration and connection details.
Instructions
Retrieves detailed information about a specific datasource using its name.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | The name of the datasource |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"description": "The name of the datasource",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}