Query
query TailscaleServeOverview {
tailscaleServeOverview {
agents {
agent {
id
name
hostname
version
osVersion
architecture
}
supported
dnsHostname
ipv4
ipv6
backendState
}
templates {
id
name
route {
protocol
listenPort
mountPath
destination {
__typename
}
funnel
appCapabilities
}
fingerprint
revision
lifecycle
}
updatedAt
}
}Response
{
"data": {
"tailscaleServeOverview": {
"agents": [
{
"agent": {
"id": "id",
"name": "string",
"hostname": "string",
"version": "string",
"osVersion": "string",
"architecture": "string"
},
"supported": true,
"dnsHostname": "string",
"ipv4": [
"string"
],
"ipv6": [
"string"
],
"backendState": "string"
}
],
"templates": [
{
"id": "id",
"name": "string",
"route": {
"protocol": "HTTP",
"listenPort": 1,
"mountPath": "string",
"destination": {
"__typename": "TailscaleServeDestination"
},
"funnel": true,
"appCapabilities": [
"string"
]
},
"fingerprint": "string",
"revision": 1,
"lifecycle": "ACTIVE"
}
],
"updatedAt": "string"
}
}
}Queries
tailscaleServeOverview
Returns fleet templates, agent identities, and observed configuration.
QUERY
tailscaleServeOverview: TailscaleServeOverview!Returns
agents
Control agents and their Tailscale state.
templates
Shared fleet templates.
updatedAt
String!
Snapshot time in ISO 8601 format.
Query
query TailscaleServeOverview {
tailscaleServeOverview {
agents {
agent {
id
name
hostname
version
osVersion
architecture
}
supported
dnsHostname
ipv4
ipv6
backendState
}
templates {
id
name
route {
protocol
listenPort
mountPath
destination {
__typename
}
funnel
appCapabilities
}
fingerprint
revision
lifecycle
}
updatedAt
}
}Response
{
"data": {
"tailscaleServeOverview": {
"agents": [
{
"agent": {
"id": "id",
"name": "string",
"hostname": "string",
"version": "string",
"osVersion": "string",
"architecture": "string"
},
"supported": true,
"dnsHostname": "string",
"ipv4": [
"string"
],
"ipv6": [
"string"
],
"backendState": "string"
}
],
"templates": [
{
"id": "id",
"name": "string",
"route": {
"protocol": "HTTP",
"listenPort": 1,
"mountPath": "string",
"destination": {
"__typename": "TailscaleServeDestination"
},
"funnel": true,
"appCapabilities": [
"string"
]
},
"fingerprint": "string",
"revision": 1,
"lifecycle": "ACTIVE"
}
],
"updatedAt": "string"
}
}
}