get_datasource_by_uid
Retrieve detailed information about a specific Grafana datasource using its unique identifier (UID) to streamline data access and management.
Instructions
Retrieves detailed information about a specific datasource using its UID.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
uid | Yes | The uid of the datasource |
Input Schema (JSON Schema)
{
"properties": {
"uid": {
"description": "The uid of the datasource",
"type": "string"
}
},
"required": [
"uid"
],
"type": "object"
}