- Notifications
You must be signed in to change notification settings - Fork11
Simple library for logging to Loggly
loggly/hoover
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
#Hoover
A python wrapper used to hit theLoggly. API
For more information on Hoover seehttp://wiki.loggly.com/hooverguide
##Install
With this git repo:cd /hooversudo python setup.py install
Easy Install:$easy_install -U hoover
Pypi:http://pypi.python.org/pypi/Hoover
##Using Hoover
Enter your credentials in hoover.LogglySession after importing:
import hoover...i = hoover.LogglySession('<subdomain>','<username>','<password>')i.search(q='apache2 error', starttime='NOW-2DAYS', format='csv')i.search(q='json.priority:err', starttime='NOW-15MINUTES') #Defaults to json if format is left out
##Search Properties
For more details on using search within Loggly check outhttp://wiki.loggly.com/searchguide
Property | Description |
---|---|
rows | Number of rows returned by your query. Defaults to 10. |
start | Offset for starting row. Defaults to 0. |
starttime | Start time for the search. Defaults to NOW-24HOURS. |
endtime | End time for the search. Defaults to NOW. |
order | Direction of results returned, either 'asc' or 'desc'. Defaults to 'desc'. |
callback | JSONP callback to receive a JSONP response. |
format | Output format, either 'json', 'xml', or 'text'. Defaults to 'json' |
fields | Which fields should be output. One or more of the following separated by commas: 'id', 'timestamp', 'ip', 'inputname', 'text'. |
##More Functions
Function | Description |
*.config_inputs() | Configures each input in your loggly account, register a python logger with the input's name logging to the input. |
*.create_input() | Creates a new input on your loggly account. |
*.facets() | Thin wrapper on Loggly's facet search API. facetby can be input, ip, or date |
*.http_inputs() | Lists all http inputs |
*.search() | See above "Search Properties" |
*.inputs | Lists all inputs |
Created and maintained by Mike Blume
If you have questions contacttechnicalsupport@solarwinds.com
About
Simple library for logging to Loggly
Resources
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Packages0
Uh oh!
There was an error while loading.Please reload this page.
Contributors5
Uh oh!
There was an error while loading.Please reload this page.