Audit logs are a lot like a bowl of spaghetti, how on earth are you going to find what you're looking for? Don't sweat over the meatballs! Let Logitini take care of it. Quickly implement Logitini into your current code and watch the logs come in real time :)
curl -XPOST
-H 'Content-type: application/json'
-d '{ "welcome":"hello world" }'
'api.logitini.com/open_logs/v1/write?app_key={{app_key}}&app_secret={{app_secret}}'
<?php
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'api.logitini.com/open_logs/v1/write?
app_key={{app_key}}&
app_secret={{app_secret}}');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, "{ \"welcome\":\"hello world\" }");
curl_setopt($ch, CURLOPT_POST, 1);
$headers = array();
$headers[] = 'Content-Type: application/json';
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$result = curl_exec($ch);
if (curl_errno($ch)) {
echo 'Error:' . curl_error($ch);
}
curl_close ($ch);
?>
import requests
headers = {
'Content-type': 'application/json',
}
data = '{ curl -XPOST -H "Content-type: application/json" -d\n{'
response = requests.post('http://welcome:hello%20world', headers=headers, data=data)
var request = require('request');
var headers = {
'Content-type': 'application/json'
};
var dataString = '{"welcome":"hello world" }';
var options = {
url: 'api.logitini.com/open_logs/v1/write?app_key=app_key&app_secret=app_secret',
method: 'POST',
headers: headers,
body: dataString
};
function callback(error, response, body) {
if (!error && response.statusCode == 200) {
console.log(body);
}
}
request(options, callback);
We're here to help you! Take a look at some of the awesome features that we provide.
Code so simple even a dolphin can implement it. Not overwhelming or complicated, because your code is complicated enough.
Safe and always accessible. Your logs can't be delete. Not even by the system, its simply not in its nature!
Access your system file logs easily and securely. Find what you are looking for and create alerts.
Write your logs in any format using simple HTTP requests Use our powerful search and alert system to keep on top of it all.
Keep track of all document history. Our system will keep track of all record updates by any user.
Keep track of user activity on your system. Create details reports and search your history with ease.
How much does it all cost? Well, it depends on what you want. Take a look at our packages and see which one is the right fit for you. If you're unsure of what you need, don't worry, you can always upgrade or downgrade later. You can also contact us for guidance.
Founder, CTO, and lead architect of many startups, Armon was finiding it hard to deal with the audit trails for each application. This was time consuming and costly. Options available were not designed for startups as they are overly complicated and over priced. He decided to sort out the spaghetti out of logs.
Your go to IT guy. Just loves to code on his spare time. Fixes anything and everthing only if he wants to or if asked of nicely.
Karen is a wannabe bacon evangelist. Social media nerd, web developer, and marketing specialist. She's prone to fits of apathy, and loves video games. All out troublemaker, web geek and an avid internet fanatic.