Skip to content

Latest commit

 

History

History
50 lines (32 loc) · 1.16 KB

LogExplorerApi.md

File metadata and controls

50 lines (32 loc) · 1.16 KB

LogExplorerApi

Note

All URIs are relative to https://api.fastly.com

Method HTTP request Description
get_log_records GET /observability/log-explorer Retrieve log records

get_log_records

Retrieves log records.

let cfg = &Configuration::default();
let params = GetLogRecordsParams {
    // parameters
};
get_log_records(cfg, params)

Parameters

Name Type Description Required Notes
service_id String [required]
start String [required]
end String [required]
limit Option<f32>
next_cursor Option<String>
filter Option<String>

Return type

crate::models::GetLogRecordsResponse

Authorization

token

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to README]