Example Use-Cases
Configuration Collection
The following example shows how to collect configuration data that is not exposed through an API from a SaaS service (Grafana) configuration page.
Was this page helpful?
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
const result = await agentTask(
'Collect the node names and their CPU average %, return in JSON array',
{
taskOptions: {
url: 'https://play.grafana.org/a/grafana-k8s-app/navigation/nodes',
}
}
)
console.log(result);
result = anchor_client.agent.task(
'Collect the node names and their CPU average %, return in JSON array',
task_options={
'url': 'https://play.grafana.org/a/grafana-k8s-app/navigation/nodes',
}
)
print(result)
Was this page helpful?
