Note
All URIs are relative to https://api.fastly.com
Method | HTTP request | Description |
---|---|---|
get_stats_last120_seconds | GET /v1/channel/{service_id}/ts/h | Get real-time data for the last 120 seconds |
get_stats_last120_seconds_limit_entries | GET /v1/channel/{service_id}/ts/h/limit/{max_entries} | Get a limited number of real-time data entries |
get_stats_last_second | GET /v1/channel/{service_id}/ts/{timestamp_in_seconds} | Get real-time data from specified time |
Realtime get_stats_last120_seconds(service_id)
Get real-time data for the last 120 seconds
Get data for the 120 seconds preceding the latest timestamp available for a service.
- Api Key Authentication (token):
import time
import fastly
from fastly.api import realtime_api
from fastly.model.realtime import Realtime
from pprint import pprint
# Defining the host is optional and defaults to https://api.fastly.com
# See configuration.py for a list of all supported configuration parameters.
configuration = fastly.Configuration(
host = "https://api.fastly.com"
)
# The client must configure the authentication and authorization parameters
# in accordance with the API server security policy.
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.
# Configure API key authorization: token
configuration.api_key['token'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['token'] = 'Bearer'
# Enter a context with an instance of the API client
with fastly.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = realtime_api.RealtimeApi(api_client)
service_id = "SU1Z0isxPaozGVKXdv0eY" # str | Alphanumeric string identifying the service.
# example passing only required values which don't have defaults set
try:
# Get real-time data for the last 120 seconds
api_response = api_instance.get_stats_last120_seconds(service_id)
pprint(api_response)
except fastly.ApiException as e:
print("Exception when calling RealtimeApi->get_stats_last120_seconds: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
service_id | str | Alphanumeric string identifying the service. |
- Content-Type: Not defined
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
200 | OK | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
Realtime get_stats_last120_seconds_limit_entries(service_id, max_entries)
Get a limited number of real-time data entries
Get data for the 120 seconds preceding the latest timestamp available for a service, up to a maximum of max_entries
entries.
- Api Key Authentication (token):
import time
import fastly
from fastly.api import realtime_api
from fastly.model.realtime import Realtime
from pprint import pprint
# Defining the host is optional and defaults to https://api.fastly.com
# See configuration.py for a list of all supported configuration parameters.
configuration = fastly.Configuration(
host = "https://api.fastly.com"
)
# The client must configure the authentication and authorization parameters
# in accordance with the API server security policy.
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.
# Configure API key authorization: token
configuration.api_key['token'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['token'] = 'Bearer'
# Enter a context with an instance of the API client
with fastly.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = realtime_api.RealtimeApi(api_client)
service_id = "SU1Z0isxPaozGVKXdv0eY" # str | Alphanumeric string identifying the service.
max_entries = 1 # int | Maximum number of results to show.
# example passing only required values which don't have defaults set
try:
# Get a limited number of real-time data entries
api_response = api_instance.get_stats_last120_seconds_limit_entries(service_id, max_entries)
pprint(api_response)
except fastly.ApiException as e:
print("Exception when calling RealtimeApi->get_stats_last120_seconds_limit_entries: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
service_id | str | Alphanumeric string identifying the service. | |
max_entries | int | Maximum number of results to show. |
- Content-Type: Not defined
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
200 | OK | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
Realtime get_stats_last_second(service_id, timestamp_in_seconds)
Get real-time data from specified time
Get real-time data for the specified reporting period. Specify 0
to get a single entry for the last complete second. The Timestamp
field included in the response provides the time index of the latest entry in the dataset and can be provided as the start_timestamp
of the next request for a seamless continuation of the dataset from one request to the next.
- Api Key Authentication (token):
import time
import fastly
from fastly.api import realtime_api
from fastly.model.realtime import Realtime
from pprint import pprint
# Defining the host is optional and defaults to https://api.fastly.com
# See configuration.py for a list of all supported configuration parameters.
configuration = fastly.Configuration(
host = "https://api.fastly.com"
)
# The client must configure the authentication and authorization parameters
# in accordance with the API server security policy.
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.
# Configure API key authorization: token
configuration.api_key['token'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['token'] = 'Bearer'
# Enter a context with an instance of the API client
with fastly.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = realtime_api.RealtimeApi(api_client)
service_id = "SU1Z0isxPaozGVKXdv0eY" # str | Alphanumeric string identifying the service.
timestamp_in_seconds = 1608560817 # int | Timestamp in seconds (Unix epoch time).
# example passing only required values which don't have defaults set
try:
# Get real-time data from specified time
api_response = api_instance.get_stats_last_second(service_id, timestamp_in_seconds)
pprint(api_response)
except fastly.ApiException as e:
print("Exception when calling RealtimeApi->get_stats_last_second: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
service_id | str | Alphanumeric string identifying the service. | |
timestamp_in_seconds | int | Timestamp in seconds (Unix epoch time). |
- Content-Type: Not defined
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
200 | OK | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]