All URIs are relative to /dataservice
Method | HTTP request | Description |
---|---|---|
create_events_query_config | GET /event/query/input | |
enable_events_from_file | GET /event/enable/fileprocess | |
find_events | GET /event/severity | |
get_aggregation_data_by_query25 | GET /event/aggregation | |
get_components_as_key_value | GET /event/component/keyvalue | |
get_count27 | GET /event/doccount | |
get_count_post27 | POST /event/doccount | |
get_event_types_as_key_value | GET /event/types/keyvalue | |
get_events_by_component | GET /event/getEventsByComponent | |
get_listeners_info | GET /event/listeners | |
get_post_aggregation_app_data_by_query24 | POST /event/app-agg/aggregation | |
get_post_aggregation_data_by_query24 | POST /event/aggregation | |
get_post_stat_bulk_raw_data25 | POST /event/page | |
get_severity_histogram | GET /event/severity/summary | |
get_stat_bulk_raw_data25 | GET /event/page | |
get_stat_data_fields27 | GET /event/fields | |
get_stat_data_raw_data24 | GET /event | |
get_stat_data_raw_data_as_csv25 | GET /event/csv | |
get_stat_query_fields27 | GET /event/query/fields | |
get_stats_raw_data25 | POST /event |
{str: (bool, date, datetime, dict, float, int, list, str, none_type)} create_events_query_config()
Create query configuration
import time
import openapi_client
from openapi_client.api import monitoring_events_api
from pprint import pprint
# Defining the host is optional and defaults to /dataservice
# See configuration.py for a list of all supported configuration parameters.
configuration = openapi_client.Configuration(
host = "/dataservice"
)
# Enter a context with an instance of the API client
with openapi_client.ApiClient() as api_client:
# Create an instance of the API class
api_instance = monitoring_events_api.MonitoringEventsApi(api_client)
# example, this endpoint has no required or optional parameters
try:
api_response = api_instance.create_events_query_config()
pprint(api_response)
except openapi_client.ApiException as e:
print("Exception when calling MonitoringEventsApi->create_events_query_config: %s\n" % e)
This endpoint does not need any parameter.
{str: (bool, date, datetime, dict, float, int, list, str, none_type)}
No authorization required
- Content-Type: Not defined
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
200 | Success | - |
400 | Bad Request | - |
403 | Forbidden | - |
500 | Internal Server Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
{str: (bool, date, datetime, dict, float, int, list, str, none_type)} enable_events_from_file()
Set enable events from file flag
import time
import openapi_client
from openapi_client.api import monitoring_events_api
from pprint import pprint
# Defining the host is optional and defaults to /dataservice
# See configuration.py for a list of all supported configuration parameters.
configuration = openapi_client.Configuration(
host = "/dataservice"
)
# Enter a context with an instance of the API client
with openapi_client.ApiClient() as api_client:
# Create an instance of the API class
api_instance = monitoring_events_api.MonitoringEventsApi(api_client)
# example, this endpoint has no required or optional parameters
try:
api_response = api_instance.enable_events_from_file()
pprint(api_response)
except openapi_client.ApiException as e:
print("Exception when calling MonitoringEventsApi->enable_events_from_file: %s\n" % e)
This endpoint does not need any parameter.
{str: (bool, date, datetime, dict, float, int, list, str, none_type)}
No authorization required
- Content-Type: Not defined
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
200 | Success | - |
400 | Bad Request | - |
403 | Forbidden | - |
500 | Internal Server Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
{str: (bool, date, datetime, dict, float, int, list, str, none_type)} find_events(severity_level)
Retrieve events
import time
import openapi_client
from openapi_client.api import monitoring_events_api
from pprint import pprint
# Defining the host is optional and defaults to /dataservice
# See configuration.py for a list of all supported configuration parameters.
configuration = openapi_client.Configuration(
host = "/dataservice"
)
# Enter a context with an instance of the API client
with openapi_client.ApiClient() as api_client:
# Create an instance of the API class
api_instance = monitoring_events_api.MonitoringEventsApi(api_client)
severity_level = [
"critical",
] # [str] | Severity level
device_id = "00r252U250?250" # str | Device IP (optional)
query = "query_example" # str | Query filter (optional)
# example passing only required values which don't have defaults set
try:
api_response = api_instance.find_events(severity_level)
pprint(api_response)
except openapi_client.ApiException as e:
print("Exception when calling MonitoringEventsApi->find_events: %s\n" % e)
# example passing only required values which don't have defaults set
# and optional values
try:
api_response = api_instance.find_events(severity_level, device_id=device_id, query=query)
pprint(api_response)
except openapi_client.ApiException as e:
print("Exception when calling MonitoringEventsApi->find_events: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
severity_level | [str] | Severity level | |
device_id | str | Device IP | [optional] |
query | str | Query filter | [optional] |
{str: (bool, date, datetime, dict, float, int, list, str, none_type)}
No authorization required
- Content-Type: Not defined
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
200 | Success | - |
400 | Bad Request | - |
403 | Forbidden | - |
500 | Internal Server Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
{str: (bool, date, datetime, dict, float, int, list, str, none_type)} get_aggregation_data_by_query25()
Get aggregated data based on input query and filters. The data can be filtered on time and other unique parameters based upon necessity and intended usage
import time
import openapi_client
from openapi_client.api import monitoring_events_api
from pprint import pprint
# Defining the host is optional and defaults to /dataservice
# See configuration.py for a list of all supported configuration parameters.
configuration = openapi_client.Configuration(
host = "/dataservice"
)
# Enter a context with an instance of the API client
with openapi_client.ApiClient() as api_client:
# Create an instance of the API class
api_instance = monitoring_events_api.MonitoringEventsApi(api_client)
query = "query_example" # str | Query filter (optional)
# example passing only required values which don't have defaults set
# and optional values
try:
api_response = api_instance.get_aggregation_data_by_query25(query=query)
pprint(api_response)
except openapi_client.ApiException as e:
print("Exception when calling MonitoringEventsApi->get_aggregation_data_by_query25: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
query | str | Query filter | [optional] |
{str: (bool, date, datetime, dict, float, int, list, str, none_type)}
No authorization required
- Content-Type: Not defined
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
200 | Success | - |
400 | Bad Request | - |
403 | Forbidden | - |
500 | Internal Server Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
[{str: (bool, date, datetime, dict, float, int, list, str, none_type)}] get_components_as_key_value()
Retrieve components as key/value pairs
import time
import openapi_client
from openapi_client.api import monitoring_events_api
from pprint import pprint
# Defining the host is optional and defaults to /dataservice
# See configuration.py for a list of all supported configuration parameters.
configuration = openapi_client.Configuration(
host = "/dataservice"
)
# Enter a context with an instance of the API client
with openapi_client.ApiClient() as api_client:
# Create an instance of the API class
api_instance = monitoring_events_api.MonitoringEventsApi(api_client)
# example, this endpoint has no required or optional parameters
try:
api_response = api_instance.get_components_as_key_value()
pprint(api_response)
except openapi_client.ApiException as e:
print("Exception when calling MonitoringEventsApi->get_components_as_key_value: %s\n" % e)
This endpoint does not need any parameter.
[{str: (bool, date, datetime, dict, float, int, list, str, none_type)}]
No authorization required
- Content-Type: Not defined
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
200 | Success | - |
400 | Bad Request | - |
403 | Forbidden | - |
500 | Internal Server Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
{str: (bool, date, datetime, dict, float, int, list, str, none_type)} get_count27(query)
Get response count of a query
import time
import openapi_client
from openapi_client.api import monitoring_events_api
from pprint import pprint
# Defining the host is optional and defaults to /dataservice
# See configuration.py for a list of all supported configuration parameters.
configuration = openapi_client.Configuration(
host = "/dataservice"
)
# Enter a context with an instance of the API client
with openapi_client.ApiClient() as api_client:
# Create an instance of the API class
api_instance = monitoring_events_api.MonitoringEventsApi(api_client)
query = "{"query":{"condition":"AND","rules":[{"value":["2021-05-10T01:00:00 UTC","2021-11-30T01:30:00 UTC"],"field":"entry_time","type":"date","operator":"between"}]},"aggregation":{"metrics":[{"property":"latency","type":"avg"}]}}" # str | Query
# example passing only required values which don't have defaults set
try:
api_response = api_instance.get_count27(query)
pprint(api_response)
except openapi_client.ApiException as e:
print("Exception when calling MonitoringEventsApi->get_count27: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
query | str | Query |
{str: (bool, date, datetime, dict, float, int, list, str, none_type)}
No authorization required
- Content-Type: Not defined
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
200 | Success | - |
400 | Bad Request | - |
403 | Forbidden | - |
500 | Internal Server Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
{str: (bool, date, datetime, dict, float, int, list, str, none_type)} get_count_post27()
Get response count of a query
import time
import openapi_client
from openapi_client.api import monitoring_events_api
from pprint import pprint
# Defining the host is optional and defaults to /dataservice
# See configuration.py for a list of all supported configuration parameters.
configuration = openapi_client.Configuration(
host = "/dataservice"
)
# Enter a context with an instance of the API client
with openapi_client.ApiClient() as api_client:
# Create an instance of the API class
api_instance = monitoring_events_api.MonitoringEventsApi(api_client)
body = {} # {str: (bool, date, datetime, dict, float, int, list, str, none_type)} | Query (optional)
# example passing only required values which don't have defaults set
# and optional values
try:
api_response = api_instance.get_count_post27(body=body)
pprint(api_response)
except openapi_client.ApiException as e:
print("Exception when calling MonitoringEventsApi->get_count_post27: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
body | {str: (bool, date, datetime, dict, float, int, list, str, none_type)} | Query | [optional] |
{str: (bool, date, datetime, dict, float, int, list, str, none_type)}
No authorization required
- Content-Type: application/json
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
200 | Success | - |
400 | Bad Request | - |
403 | Forbidden | - |
500 | Internal Server Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
[{str: (bool, date, datetime, dict, float, int, list, str, none_type)}] get_event_types_as_key_value()
Retrieve event types as key/value pairs
import time
import openapi_client
from openapi_client.api import monitoring_events_api
from pprint import pprint
# Defining the host is optional and defaults to /dataservice
# See configuration.py for a list of all supported configuration parameters.
configuration = openapi_client.Configuration(
host = "/dataservice"
)
# Enter a context with an instance of the API client
with openapi_client.ApiClient() as api_client:
# Create an instance of the API class
api_instance = monitoring_events_api.MonitoringEventsApi(api_client)
# example, this endpoint has no required or optional parameters
try:
api_response = api_instance.get_event_types_as_key_value()
pprint(api_response)
except openapi_client.ApiException as e:
print("Exception when calling MonitoringEventsApi->get_event_types_as_key_value: %s\n" % e)
This endpoint does not need any parameter.
[{str: (bool, date, datetime, dict, float, int, list, str, none_type)}]
No authorization required
- Content-Type: Not defined
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
200 | Success | - |
400 | Bad Request | - |
403 | Forbidden | - |
500 | Internal Server Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
[{str: (bool, date, datetime, dict, float, int, list, str, none_type)}] get_events_by_component()
Retrieve components as key/value pairs
import time
import openapi_client
from openapi_client.api import monitoring_events_api
from pprint import pprint
# Defining the host is optional and defaults to /dataservice
# See configuration.py for a list of all supported configuration parameters.
configuration = openapi_client.Configuration(
host = "/dataservice"
)
# Enter a context with an instance of the API client
with openapi_client.ApiClient() as api_client:
# Create an instance of the API class
api_instance = monitoring_events_api.MonitoringEventsApi(api_client)
query = "query_example" # str | Query filter (optional)
# example passing only required values which don't have defaults set
# and optional values
try:
api_response = api_instance.get_events_by_component(query=query)
pprint(api_response)
except openapi_client.ApiException as e:
print("Exception when calling MonitoringEventsApi->get_events_by_component: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
query | str | Query filter | [optional] |
[{str: (bool, date, datetime, dict, float, int, list, str, none_type)}]
No authorization required
- Content-Type: Not defined
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
200 | Success | - |
400 | Bad Request | - |
403 | Forbidden | - |
500 | Internal Server Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
{str: (bool, date, datetime, dict, float, int, list, str, none_type)} get_listeners_info()
Retrieve listener information
import time
import openapi_client
from openapi_client.api import monitoring_events_api
from pprint import pprint
# Defining the host is optional and defaults to /dataservice
# See configuration.py for a list of all supported configuration parameters.
configuration = openapi_client.Configuration(
host = "/dataservice"
)
# Enter a context with an instance of the API client
with openapi_client.ApiClient() as api_client:
# Create an instance of the API class
api_instance = monitoring_events_api.MonitoringEventsApi(api_client)
# example, this endpoint has no required or optional parameters
try:
api_response = api_instance.get_listeners_info()
pprint(api_response)
except openapi_client.ApiException as e:
print("Exception when calling MonitoringEventsApi->get_listeners_info: %s\n" % e)
This endpoint does not need any parameter.
{str: (bool, date, datetime, dict, float, int, list, str, none_type)}
No authorization required
- Content-Type: Not defined
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
200 | Success | - |
400 | Bad Request | - |
403 | Forbidden | - |
500 | Internal Server Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
{str: (bool, date, datetime, dict, float, int, list, str, none_type)} get_post_aggregation_app_data_by_query24()
Get aggregated data based on input query and filters. The data can be filtered on time and other unique parameters based upon necessity and intended usage
import time
import openapi_client
from openapi_client.api import monitoring_events_api
from pprint import pprint
# Defining the host is optional and defaults to /dataservice
# See configuration.py for a list of all supported configuration parameters.
configuration = openapi_client.Configuration(
host = "/dataservice"
)
# Enter a context with an instance of the API client
with openapi_client.ApiClient() as api_client:
# Create an instance of the API class
api_instance = monitoring_events_api.MonitoringEventsApi(api_client)
body = {} # {str: (bool, date, datetime, dict, float, int, list, str, none_type)} | Stats query string (optional)
# example passing only required values which don't have defaults set
# and optional values
try:
api_response = api_instance.get_post_aggregation_app_data_by_query24(body=body)
pprint(api_response)
except openapi_client.ApiException as e:
print("Exception when calling MonitoringEventsApi->get_post_aggregation_app_data_by_query24: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
body | {str: (bool, date, datetime, dict, float, int, list, str, none_type)} | Stats query string | [optional] |
{str: (bool, date, datetime, dict, float, int, list, str, none_type)}
No authorization required
- Content-Type: application/json
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
200 | Success | - |
400 | Bad Request | - |
403 | Forbidden | - |
500 | Internal Server Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
{str: (bool, date, datetime, dict, float, int, list, str, none_type)} get_post_aggregation_data_by_query24()
Get aggregated data based on input query and filters. The data can be filtered on time and other unique parameters based upon necessity and intended usage
import time
import openapi_client
from openapi_client.api import monitoring_events_api
from pprint import pprint
# Defining the host is optional and defaults to /dataservice
# See configuration.py for a list of all supported configuration parameters.
configuration = openapi_client.Configuration(
host = "/dataservice"
)
# Enter a context with an instance of the API client
with openapi_client.ApiClient() as api_client:
# Create an instance of the API class
api_instance = monitoring_events_api.MonitoringEventsApi(api_client)
body = {} # {str: (bool, date, datetime, dict, float, int, list, str, none_type)} | Stats query string (optional)
# example passing only required values which don't have defaults set
# and optional values
try:
api_response = api_instance.get_post_aggregation_data_by_query24(body=body)
pprint(api_response)
except openapi_client.ApiException as e:
print("Exception when calling MonitoringEventsApi->get_post_aggregation_data_by_query24: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
body | {str: (bool, date, datetime, dict, float, int, list, str, none_type)} | Stats query string | [optional] |
{str: (bool, date, datetime, dict, float, int, list, str, none_type)}
No authorization required
- Content-Type: application/json
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
200 | Success | - |
400 | Bad Request | - |
403 | Forbidden | - |
500 | Internal Server Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
{str: (bool, date, datetime, dict, float, int, list, str, none_type)} get_post_stat_bulk_raw_data25()
Get stats raw data
import time
import openapi_client
from openapi_client.api import monitoring_events_api
from pprint import pprint
# Defining the host is optional and defaults to /dataservice
# See configuration.py for a list of all supported configuration parameters.
configuration = openapi_client.Configuration(
host = "/dataservice"
)
# Enter a context with an instance of the API client
with openapi_client.ApiClient() as api_client:
# Create an instance of the API class
api_instance = monitoring_events_api.MonitoringEventsApi(api_client)
scroll_id = "DXF1ZXJ5QW5kRmV0Y2gBAAAAAAAAAOIWZ1NQbXpvQ29Uc0stNzZ2UzlwTEREUQ==" # str | ES scroll Id (optional)
count = "10" # str | Result size (optional)
body = {} # {str: (bool, date, datetime, dict, float, int, list, str, none_type)} | Stats query string (optional)
# example passing only required values which don't have defaults set
# and optional values
try:
api_response = api_instance.get_post_stat_bulk_raw_data25(scroll_id=scroll_id, count=count, body=body)
pprint(api_response)
except openapi_client.ApiException as e:
print("Exception when calling MonitoringEventsApi->get_post_stat_bulk_raw_data25: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
scroll_id | str | ES scroll Id | [optional] |
count | str | Result size | [optional] |
body | {str: (bool, date, datetime, dict, float, int, list, str, none_type)} | Stats query string | [optional] |
{str: (bool, date, datetime, dict, float, int, list, str, none_type)}
No authorization required
- Content-Type: application/json
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
200 | Success | - |
400 | Bad Request | - |
403 | Forbidden | - |
500 | Internal Server Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
{str: (bool, date, datetime, dict, float, int, list, str, none_type)} get_severity_histogram(device_id)
Retrieve severity histogram
import time
import openapi_client
from openapi_client.api import monitoring_events_api
from pprint import pprint
# Defining the host is optional and defaults to /dataservice
# See configuration.py for a list of all supported configuration parameters.
configuration = openapi_client.Configuration(
host = "/dataservice"
)
# Enter a context with an instance of the API client
with openapi_client.ApiClient() as api_client:
# Create an instance of the API class
api_instance = monitoring_events_api.MonitoringEventsApi(api_client)
device_id = "deviceId_example" # str | Device IP
query = "00r252U250?250" # str | Query filter (optional)
# example passing only required values which don't have defaults set
try:
api_response = api_instance.get_severity_histogram(device_id)
pprint(api_response)
except openapi_client.ApiException as e:
print("Exception when calling MonitoringEventsApi->get_severity_histogram: %s\n" % e)
# example passing only required values which don't have defaults set
# and optional values
try:
api_response = api_instance.get_severity_histogram(device_id, query=query)
pprint(api_response)
except openapi_client.ApiException as e:
print("Exception when calling MonitoringEventsApi->get_severity_histogram: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
device_id | str | Device IP | |
query | str | Query filter | [optional] |
{str: (bool, date, datetime, dict, float, int, list, str, none_type)}
No authorization required
- Content-Type: Not defined
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
200 | Success | - |
400 | Bad Request | - |
403 | Forbidden | - |
500 | Internal Server Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
{str: (bool, date, datetime, dict, float, int, list, str, none_type)} get_stat_bulk_raw_data25()
Get stats raw data
import time
import openapi_client
from openapi_client.api import monitoring_events_api
from pprint import pprint
# Defining the host is optional and defaults to /dataservice
# See configuration.py for a list of all supported configuration parameters.
configuration = openapi_client.Configuration(
host = "/dataservice"
)
# Enter a context with an instance of the API client
with openapi_client.ApiClient() as api_client:
# Create an instance of the API class
api_instance = monitoring_events_api.MonitoringEventsApi(api_client)
query = "{"query":{"field":"latency","type":"long","value":["100"],"operator":"greater"},"size":1,"sort":[{"field":"latency","type":"long","order":"asc"}],"fields":["latency"]}" # str | Query string (optional)
scroll_id = "DXF1ZXJ5QW5kRmV0Y2gBAAAAAAAAAOIWZ1NQbXpvQ29Uc0stNzZ2UzlwTEREUQ==" # str | ES scroll Id (optional)
count = "10" # str | Result size (optional)
# example passing only required values which don't have defaults set
# and optional values
try:
api_response = api_instance.get_stat_bulk_raw_data25(query=query, scroll_id=scroll_id, count=count)
pprint(api_response)
except openapi_client.ApiException as e:
print("Exception when calling MonitoringEventsApi->get_stat_bulk_raw_data25: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
query | str | Query string | [optional] |
scroll_id | str | ES scroll Id | [optional] |
count | str | Result size | [optional] |
{str: (bool, date, datetime, dict, float, int, list, str, none_type)}
No authorization required
- Content-Type: Not defined
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
200 | Success | - |
400 | Bad Request | - |
403 | Forbidden | - |
500 | Internal Server Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
{str: (bool, date, datetime, dict, float, int, list, str, none_type)} get_stat_data_fields27()
Get fields and type
import time
import openapi_client
from openapi_client.api import monitoring_events_api
from pprint import pprint
# Defining the host is optional and defaults to /dataservice
# See configuration.py for a list of all supported configuration parameters.
configuration = openapi_client.Configuration(
host = "/dataservice"
)
# Enter a context with an instance of the API client
with openapi_client.ApiClient() as api_client:
# Create an instance of the API class
api_instance = monitoring_events_api.MonitoringEventsApi(api_client)
# example, this endpoint has no required or optional parameters
try:
api_response = api_instance.get_stat_data_fields27()
pprint(api_response)
except openapi_client.ApiException as e:
print("Exception when calling MonitoringEventsApi->get_stat_data_fields27: %s\n" % e)
This endpoint does not need any parameter.
{str: (bool, date, datetime, dict, float, int, list, str, none_type)}
No authorization required
- Content-Type: Not defined
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
200 | Success | - |
400 | Bad Request | - |
403 | Forbidden | - |
500 | Internal Server Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
{str: (bool, date, datetime, dict, float, int, list, str, none_type)} get_stat_data_raw_data24()
Get stats raw data
import time
import openapi_client
from openapi_client.api import monitoring_events_api
from pprint import pprint
# Defining the host is optional and defaults to /dataservice
# See configuration.py for a list of all supported configuration parameters.
configuration = openapi_client.Configuration(
host = "/dataservice"
)
# Enter a context with an instance of the API client
with openapi_client.ApiClient() as api_client:
# Create an instance of the API class
api_instance = monitoring_events_api.MonitoringEventsApi(api_client)
query = "{"query":{"condition":"AND","rules":[{"value":["2020-05-10T01:00:00 UTC","2020-05-10T01:30:00 UTC"],"field":"entry_time","type":"date","operator":"between"}]},"aggregation":{"metrics":[{"property":"latency","type":"avg"}]}}" # str | Query string (optional)
page = 1 # int | page number (optional)
page_size = 1 # int | page size (optional)
sort_by = "sortBy_example" # str | sort by(emp:entry_time) (optional)
sort_order = "sortOrder_example" # str | sort order(emp:asc、ASC、Asc、desc、Desc、DESC) (optional)
# example passing only required values which don't have defaults set
# and optional values
try:
api_response = api_instance.get_stat_data_raw_data24(query=query, page=page, page_size=page_size, sort_by=sort_by, sort_order=sort_order)
pprint(api_response)
except openapi_client.ApiException as e:
print("Exception when calling MonitoringEventsApi->get_stat_data_raw_data24: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
query | str | Query string | [optional] |
page | int | page number | [optional] |
page_size | int | page size | [optional] |
sort_by | str | sort by(emp:entry_time) | [optional] |
sort_order | str | sort order(emp:asc、ASC、Asc、desc、Desc、DESC) | [optional] |
{str: (bool, date, datetime, dict, float, int, list, str, none_type)}
No authorization required
- Content-Type: Not defined
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
200 | Success | - |
400 | Bad Request | - |
403 | Forbidden | - |
500 | Internal Server Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
str get_stat_data_raw_data_as_csv25()
Get raw data with optional query as CSV
import time
import openapi_client
from openapi_client.api import monitoring_events_api
from pprint import pprint
# Defining the host is optional and defaults to /dataservice
# See configuration.py for a list of all supported configuration parameters.
configuration = openapi_client.Configuration(
host = "/dataservice"
)
# Enter a context with an instance of the API client
with openapi_client.ApiClient() as api_client:
# Create an instance of the API class
api_instance = monitoring_events_api.MonitoringEventsApi(api_client)
query = "{"query":{"field":"latency","type":"long","value":["100"],"operator":"greater"},"size":1000,"sort":[{"field":"latency","type":"long","order":"asc"}],"fields":["latency"],"aggregation":{"metrics":[{"property":"latency","type":"avg"}]}}" # str | Query string (optional)
# example passing only required values which don't have defaults set
# and optional values
try:
api_response = api_instance.get_stat_data_raw_data_as_csv25(query=query)
pprint(api_response)
except openapi_client.ApiException as e:
print("Exception when calling MonitoringEventsApi->get_stat_data_raw_data_as_csv25: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
query | str | Query string | [optional] |
str
No authorization required
- Content-Type: Not defined
- Accept: text/csv
Status code | Description | Response headers |
---|---|---|
200 | Success | - |
400 | Bad Request | - |
403 | Forbidden | - |
500 | Internal Server Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
{str: (bool, date, datetime, dict, float, int, list, str, none_type)} get_stat_query_fields27()
Get query fields
import time
import openapi_client
from openapi_client.api import monitoring_events_api
from pprint import pprint
# Defining the host is optional and defaults to /dataservice
# See configuration.py for a list of all supported configuration parameters.
configuration = openapi_client.Configuration(
host = "/dataservice"
)
# Enter a context with an instance of the API client
with openapi_client.ApiClient() as api_client:
# Create an instance of the API class
api_instance = monitoring_events_api.MonitoringEventsApi(api_client)
# example, this endpoint has no required or optional parameters
try:
api_response = api_instance.get_stat_query_fields27()
pprint(api_response)
except openapi_client.ApiException as e:
print("Exception when calling MonitoringEventsApi->get_stat_query_fields27: %s\n" % e)
This endpoint does not need any parameter.
{str: (bool, date, datetime, dict, float, int, list, str, none_type)}
No authorization required
- Content-Type: Not defined
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
200 | Success | - |
400 | Bad Request | - |
403 | Forbidden | - |
500 | Internal Server Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
{str: (bool, date, datetime, dict, float, int, list, str, none_type)} get_stats_raw_data25()
Get stats raw data
import time
import openapi_client
from openapi_client.api import monitoring_events_api
from pprint import pprint
# Defining the host is optional and defaults to /dataservice
# See configuration.py for a list of all supported configuration parameters.
configuration = openapi_client.Configuration(
host = "/dataservice"
)
# Enter a context with an instance of the API client
with openapi_client.ApiClient() as api_client:
# Create an instance of the API class
api_instance = monitoring_events_api.MonitoringEventsApi(api_client)
page = 1 # int | page number (optional)
page_size = 1 # int | page size (optional)
sort_by = "sortBy_example" # str | sort by (optional)
sort_order = "sortOrder_example" # str | sort order (optional)
body = {} # {str: (bool, date, datetime, dict, float, int, list, str, none_type)} | Stats query string (optional)
# example passing only required values which don't have defaults set
# and optional values
try:
api_response = api_instance.get_stats_raw_data25(page=page, page_size=page_size, sort_by=sort_by, sort_order=sort_order, body=body)
pprint(api_response)
except openapi_client.ApiException as e:
print("Exception when calling MonitoringEventsApi->get_stats_raw_data25: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
page | int | page number | [optional] |
page_size | int | page size | [optional] |
sort_by | str | sort by | [optional] |
sort_order | str | sort order | [optional] |
body | {str: (bool, date, datetime, dict, float, int, list, str, none_type)} | Stats query string | [optional] |
{str: (bool, date, datetime, dict, float, int, list, str, none_type)}
No authorization required
- Content-Type: application/json
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
200 | Success | - |
400 | Bad Request | - |
403 | Forbidden | - |
500 | Internal Server Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]