|
16 | 16 | | `document` | string | true | | |
|
17 | 17 | | `signature` | string | true | | |
|
18 | 18 |
|
| 19 | +## agentsdk.AgentMetric |
| 20 | + |
| 21 | +```json |
| 22 | +{ |
| 23 | + "name": "string", |
| 24 | + "type": "string", |
| 25 | + "value": 0 |
| 26 | +} |
| 27 | +``` |
| 28 | + |
| 29 | +### Properties |
| 30 | + |
| 31 | +| Name | Type | Required | Restrictions | Description | |
| 32 | +| ------- | ------ | -------- | ------------ | ----------- | |
| 33 | +| `name` | string | false | | | |
| 34 | +| `type` | string | false | | | |
| 35 | +| `value` | number | false | | | |
| 36 | + |
19 | 37 | ## agentsdk.AuthenticateResponse
|
20 | 38 |
|
21 | 39 | ```json
|
|
326 | 344 | "property1": 0,
|
327 | 345 | "property2": 0
|
328 | 346 | },
|
| 347 | + "metrics": [ |
| 348 | + { |
| 349 | + "name": "string", |
| 350 | + "type": "string", |
| 351 | + "value": 0 |
| 352 | + } |
| 353 | + ], |
329 | 354 | "rx_bytes": 0,
|
330 | 355 | "rx_packets": 0,
|
331 | 356 | "session_count_jetbrains": 0,
|
|
339 | 364 |
|
340 | 365 | ### Properties
|
341 | 366 |
|
342 |
| -| Name | Type | Required | Restrictions | Description | |
343 |
| -| -------------------------------- | ------- | -------- | ------------ | ----------------------------------------------------------------------------------------------------------------------------- | |
344 |
| -| `connection_count` | integer | false | | Connection count is the number of connections received by an agent. | |
345 |
| -| `connection_median_latency_ms` | number | false | | Connection median latency ms is the median latency of all connections in milliseconds. | |
346 |
| -| `connections_by_proto` | object | false | | Connections by proto is a count of connections by protocol. | |
347 |
| -| » `[any property]` | integer | false | | | |
348 |
| -| `rx_bytes` | integer | false | | Rx bytes is the number of received bytes. | |
349 |
| -| `rx_packets` | integer | false | | Rx packets is the number of received packets. | |
350 |
| -| `session_count_jetbrains` | integer | false | | Session count jetbrains is the number of connections received by an agent that are from our JetBrains extension. | |
351 |
| -| `session_count_reconnecting_pty` | integer | false | | Session count reconnecting pty is the number of connections received by an agent that are from the reconnecting web terminal. | |
352 |
| -| `session_count_ssh` | integer | false | | Session count ssh is the number of connections received by an agent that are normal, non-tagged SSH sessions. | |
353 |
| -| `session_count_vscode` | integer | false | | Session count vscode is the number of connections received by an agent that are from our VS Code extension. | |
354 |
| -| `tx_bytes` | integer | false | | Tx bytes is the number of transmitted bytes. | |
355 |
| -| `tx_packets` | integer | false | | Tx packets is the number of transmitted bytes. | |
| 367 | +| Name | Type | Required | Restrictions | Description | |
| 368 | +| -------------------------------- | ----------------------------------------------------- | -------- | ------------ | ----------------------------------------------------------------------------------------------------------------------------- | |
| 369 | +| `connection_count` | integer | false | | Connection count is the number of connections received by an agent. | |
| 370 | +| `connection_median_latency_ms` | number | false | | Connection median latency ms is the median latency of all connections in milliseconds. | |
| 371 | +| `connections_by_proto` | object | false | | Connections by proto is a count of connections by protocol. | |
| 372 | +| » `[any property]` | integer | false | | | |
| 373 | +| `metrics` | array of [agentsdk.AgentMetric](#agentsdkagentmetric) | false | | Metrics collected by the agent | |
| 374 | +| `rx_bytes` | integer | false | | Rx bytes is the number of received bytes. | |
| 375 | +| `rx_packets` | integer | false | | Rx packets is the number of received packets. | |
| 376 | +| `session_count_jetbrains` | integer | false | | Session count jetbrains is the number of connections received by an agent that are from our JetBrains extension. | |
| 377 | +| `session_count_reconnecting_pty` | integer | false | | Session count reconnecting pty is the number of connections received by an agent that are from the reconnecting web terminal. | |
| 378 | +| `session_count_ssh` | integer | false | | Session count ssh is the number of connections received by an agent that are normal, non-tagged SSH sessions. | |
| 379 | +| `session_count_vscode` | integer | false | | Session count vscode is the number of connections received by an agent that are from our VS Code extension. | |
| 380 | +| `tx_bytes` | integer | false | | Tx bytes is the number of transmitted bytes. | |
| 381 | +| `tx_packets` | integer | false | | Tx packets is the number of transmitted bytes. | |
356 | 382 |
|
357 | 383 | ## agentsdk.StatsResponse
|
358 | 384 |
|
|
0 commit comments