thousandeyes-sdk-python/streaming_api/docs/Stream.md
2023-12-11 09:29:15 +00:00

2.1 KiB

Stream

Properties

Name Type Description Notes
custom_headers Dict[str, str] Custom headers [optional]
tag_match **List[PutStreamTagMatchInner]** A collection of tags that determine what tests are included in the data stream. These tag values are also included as attributes in the data stream metrics. [optional]
enabled bool Flag to enable or disable the stream integration. [optional]
type StreamType [optional]
endpoint_type EndpointType [optional]
stream_endpoint_url str The URL ThousandEyes sends data stream to. For a URL to be valid, it needs to: - Be syntactically correct. - Be reachable. - Use the HTTPS protocol. - When using the `grpc` endpointType, streamEndpointUrl cannot contain paths: - Valid . `grpc` - `https://example.com` - Invalid . `grpc` - `https://example.com/collector`. - Valid . `http` - `https://example.com/collector`. - When using the `http` endpointType, the endpoint must match the exact final full URL (including the path if there is one) to which the metrics will be sent. Examples below: - `https://api.honeycomb.io:443/v1/metrics` - `https://ingest.eu0.signalfx.com/v2/datapoint/otlp` [optional]

Example

from streaming_api.models.stream import Stream

# TODO update the JSON string below
json = "{}"
# create an instance of Stream from a JSON string
stream_instance = Stream.from_json(json)
# print the JSON string representation of the object
print Stream.to_json()

# convert the object into a dict
stream_dict = stream_instance.to_dict()
# create an instance of Stream from a dict
stream_form_dict = stream.from_dict(stream_dict)

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