Note
All URIs are relative to https://api.fastly.com
Method | HTTP request | Description |
---|---|---|
GetDomainInspectorLast120Seconds | GET /v1/domains/{service_id}/ts/h |
Get real-time domain data for the last 120 seconds |
GetDomainInspectorLastMaxEntries | GET /v1/domains/{service_id}/ts/h/limit/{max_entries} |
Get a limited number of real-time domain data entries |
GetDomainInspectorLastSecond | GET /v1/domains/{service_id}/ts/{start_timestamp} |
Get real-time domain data from a specified time |
Get real-time domain data for the last 120 seconds
package main
import (
"context"
"fmt"
"os"
"github.com/fastly/fastly-go/fastly"
)
func main() {
serviceID := "serviceId_example" // string | Alphanumeric string identifying the service.
cfg := fastly.NewConfiguration()
apiClient := fastly.NewAPIClient(cfg)
ctx := fastly.NewAPIKeyContextFromEnv("FASTLY_API_TOKEN")
resp, r, err := apiClient.DomainInspectorRealtimeAPI.GetDomainInspectorLast120Seconds(ctx, serviceID).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `DomainInspectorRealtimeAPI.GetDomainInspectorLast120Seconds`: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `GetDomainInspectorLast120Seconds`: DomainInspector
fmt.Fprintf(os.Stdout, "Response from `DomainInspectorRealtimeAPI.GetDomainInspectorLast120Seconds`: %v\n", resp)
}
Name | Type | Description | Notes |
---|---|---|---|
ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
serviceID | string | Alphanumeric string identifying the service. |
Other parameters are passed through a pointer to a apiGetDomainInspectorLast120SecondsRequest struct via the builder pattern
Name | Type | Description | Notes |
---|
- Content-Type: Not defined
- Accept: application/json
Back to top | Back to API list | Back to README
Get a limited number of real-time domain data entries
package main
import (
"context"
"fmt"
"os"
"github.com/fastly/fastly-go/fastly"
)
func main() {
serviceID := "serviceId_example" // string | Alphanumeric string identifying the service.
maxEntries := int32(1) // int32 | Maximum number of results to show.
cfg := fastly.NewConfiguration()
apiClient := fastly.NewAPIClient(cfg)
ctx := fastly.NewAPIKeyContextFromEnv("FASTLY_API_TOKEN")
resp, r, err := apiClient.DomainInspectorRealtimeAPI.GetDomainInspectorLastMaxEntries(ctx, serviceID, maxEntries).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `DomainInspectorRealtimeAPI.GetDomainInspectorLastMaxEntries`: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `GetDomainInspectorLastMaxEntries`: DomainInspector
fmt.Fprintf(os.Stdout, "Response from `DomainInspectorRealtimeAPI.GetDomainInspectorLastMaxEntries`: %v\n", resp)
}
Name | Type | Description | Notes |
---|---|---|---|
ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
serviceID | string | Alphanumeric string identifying the service. | |
maxEntries | int32 | Maximum number of results to show. |
Other parameters are passed through a pointer to a apiGetDomainInspectorLastMaxEntriesRequest struct via the builder pattern
Name | Type | Description | Notes |
---|
- Content-Type: Not defined
- Accept: application/json
Back to top | Back to API list | Back to README
Get real-time domain data from a specified time
package main
import (
"context"
"fmt"
"os"
"github.com/fastly/fastly-go/fastly"
)
func main() {
serviceID := "serviceId_example" // string | Alphanumeric string identifying the service.
startTimestamp := int32(56) // int32 | Timestamp in seconds (Unix epoch time).
cfg := fastly.NewConfiguration()
apiClient := fastly.NewAPIClient(cfg)
ctx := fastly.NewAPIKeyContextFromEnv("FASTLY_API_TOKEN")
resp, r, err := apiClient.DomainInspectorRealtimeAPI.GetDomainInspectorLastSecond(ctx, serviceID, startTimestamp).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `DomainInspectorRealtimeAPI.GetDomainInspectorLastSecond`: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `GetDomainInspectorLastSecond`: DomainInspector
fmt.Fprintf(os.Stdout, "Response from `DomainInspectorRealtimeAPI.GetDomainInspectorLastSecond`: %v\n", resp)
}
Name | Type | Description | Notes |
---|---|---|---|
ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
serviceID | string | Alphanumeric string identifying the service. | |
startTimestamp | int32 | Timestamp in seconds (Unix epoch time). |
Other parameters are passed through a pointer to a apiGetDomainInspectorLastSecondRequest struct via the builder pattern
Name | Type | Description | Notes |
---|
- Content-Type: Not defined
- Accept: application/json