Skip to content

Latest commit

 

History

History
80 lines (59 loc) · 2.5 KB

InsightsApi.md

File metadata and controls

80 lines (59 loc) · 2.5 KB

WebService::Fastly::InsightsApi

Load the API package

use WebService::Fastly::Object::InsightsApi;

Note

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

Method HTTP request Description
get_log_insights GET /observability/log-insights Retrieve log insights

get_log_insights

GetLogInsightsResponse get_log_insights(visualization => $visualization, service_id => $service_id, start => $start, end => $end, pops => $pops, domain => $domain, domain_exact_match => $domain_exact_match, limit => $limit)

Retrieve log insights

Retrieves statistics from sampled log records.

Example

use Data::Dumper;
use WebService::Fastly::InsightsApi;
my $api_instance = WebService::Fastly::InsightsApi->new(

    # Configure API key authorization: token
    api_key => {'Fastly-Key' => 'YOUR_API_KEY'},
    # uncomment below to setup prefix (e.g. Bearer) for API key, if needed
    #api_key_prefix => {'Fastly-Key' => 'Bearer'},
);

my $visualization = "visualization_example"; # string | 
my $service_id = "service_id_example"; # string | 
my $start = "start_example"; # string | 
my $end = "end_example"; # string | 
my $pops = "pops_example"; # string | 
my $domain = "domain_example"; # string | 
my $domain_exact_match = null; # boolean | 
my $limit = 3.4; # double | 

eval {
    my $result = $api_instance->get_log_insights(visualization => $visualization, service_id => $service_id, start => $start, end => $end, pops => $pops, domain => $domain, domain_exact_match => $domain_exact_match, limit => $limit);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling InsightsApi->get_log_insights: $@\n";
}

Parameters

Name Type Description Notes
visualization string
service_id string
start string
end string
pops string [optional]
domain string [optional]
domain_exact_match boolean [optional]
limit double [optional]

Return type

GetLogInsightsResponse

Authorization

token

HTTP request headers

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

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