Transactions
Access transactions metrics.
Transactions metrics are always related to an App. This means that all endpoints have the same root so it could be helpful to wrap your api call under the same base URI:
https://app.inspector.dev
/api/apps/:id
Transactions List
POST
/api/apps/:id/transactions
Get the list of transactions in the given interval.
Path Parameters
id*
Integer
App's identifier
Headers
Content-Type
application/json
Authorization
Bearer <token>
Request Body
filter.start*
String
ISO-8601 date format
filter.end
String
ISO-8601 date format
filter.hosts
Array
Filter the transactions list by servers
filter.query_string
String
Filter by transaction's name
Transaction occurrences
POST
/api/apps/:id/transactions/:group_hash/occurrences
Get the last occurrences of a specific transaction.
Path Parameters
id*
Integer
Project's Identifier
group_hash*
String
The transaction group's identifier
Query Parameters
filter.start*
Date
ISO-8601 date format
filter.end
Date
ISO-8601 date format
filter.from
Integer
The results are paginated 25 elements at a time. Use from to advance the starting point of the list.
Headers
Authentication*
String
API key
Performance Distribution
POST
/api/apps/:id/transactions/:group_hash/time-distribution
Performance distribution of a specific transaction.
Path Parameters
id*
integer
Project's identifier
group_hash*
String
Transaction group's identifier
Headers
Authentication*
string
API key
Request Body
filter.start*
Date
ISO-8601 date format
filter.end
Date
ISO-8601 date format
You can get the group_hash value of a specific transaction in the address bar of your browser navigating the detail page of the transaction of your interest.
Last updated