Wallogit.com
2017 © Pedro Peláez
Loggly SDK for PHP
Loggly PHP SDK==============, (*1)
This is a library that developers can use to interact with Loggly, without having to deal with the intricacies of cURL., (*2)
Input and device IDs can be found with getInputs() and getDevices(), respectively, or by navigating to the page in the Loggly UI and looking for the number in the URL.
, (*3)
The first step is to instantiate a new instance of the Loggly class:, (*4)
$loggly = new Loggly(); $loggly->subdomain = '<loggly subdomain>'; $loggly->username = 'demo'; $loggly->password = '42ftw';
$result = $loggly->getInputs();
$result = $loggly->getDevices(); print $result[0]['ip'];
$result = $loggly->addDevice('<device ID>');
$result = $loggly->removeDevice('<device ID>');
$result = $loggly->enableDiscovery('<input ID>');
$result = $loggly->disableDiscovery('<input ID>');
$result = $loggly->search('unix', array('from' => 'NOW-3HOURS', 'until' => 'NOW-1HOUR'));
$result = $loggly->facet('unix', 'ip', array('from' => 'NOW-3HOURS', 'until' => 'NOW-1HOUR'));
$result = $loggly->getSavedSearches();
$params = array('name' => 'foo',
'context' => '{"search_type":"search", "terms":"error AND 500", "from":"NOW-1HOUR",
"until":"NOW", "inputs":["app","staging"]}');
$result = $loggly->createSavedSearch($params);
$params = array('id' => <saved search ID>,
'name' => 'bar',
'context' => '{"search_type":"search", "terms":"error AND 500",
"from":"NOW-1HOUR", "until":"NOW", "inputs":["app","staging"]}');
$result = $loggly->updateSavedSearch($params);
$result = $loggly->deleteSavedSearch(<saved search ID>);
$result = $loggly->runSavedSearch(<saved search ID>);
$result = $loggly->runSavedSearch(<saved search ID, true, $facetBy = 'ip');
$result = $loggly->getCustomer();
$result = $loggly->getCustomerStats();
Copyright 2012 Loggly Inc., (*5)
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at, (*6)
http://www.apache.org/licenses/LICENSE-2.0, (*7)
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License., (*8)
David Lanstein, (*9)
Have questions?, (*10)
Contact support@loggly.com (please include your subdomain), (*11)