Get your application events and errors to Trakerr via the Trakerr API.
This Python package is automatically generated by the Swagger Codegen project:
- API version: 1.0.0
- Package version: 1.0.0
- Build date: 2017-05-05T15:16:46.007-07:00
- Build package: class io.swagger.codegen.languages.PythonClientCodegen
Python 2.7 and 3.4+
If the python package is hosted on Github, you can install directly from Github
pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git
(you may need to run pip
with root permission: sudo pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git
)
Then import the package:
import trakerr_client
Install via Setuptools.
python setup.py install --user
(or sudo python setup.py install
to install the package for all users)
Then import the package:
import trakerr_client
Please follow the installation procedure and then run the following:
import time
import trakerr_client
from trakerr_client.rest import ApiException
from pprint import pprint
# create an instance of the API class
api_instance = trakerr_client.EventsApi
data = trakerr_client.AppEvent() # AppEvent | Event to submit
try:
# Submit an application event or error to Trakerr
api_instance.events_post(data)
except ApiException as e:
print "Exception when calling EventsApi->events_post: %s\n" % e
All URIs are relative to https://www.trakerr.io/api/v1
Class | Method | HTTP request | Description |
---|---|---|---|
EventsApi | events_post | POST /events | Submit an application event or error to Trakerr |
- AppEvent
- CustomData
- CustomDoubleData
- CustomStringData
- Error
- InnerStackTrace
- StackTraceLine
- StackTraceLines
- Stacktrace
All endpoints do not require authorization.