Sending logsStart sending logs to Minilog in 5 minutes
1️⃣ Create a project
Go to your projects page and click the button + Create Project
Give it a unique short name (lowercase letters, digits, and the characters '.', '_', and '-')
2️⃣ Create a project token
After creating your first project, go to Settings > Tokens
Give the token a unique short name then click on Create
You can now copy the token by clicking the copy button next to the token.
🎉 Send your first log
To send logs to Minilog, make an authenticated HTTP POST request to the Log API .
Check out the Log API for more details.
The HTTP request can fail (no internet, quota exceeded), make sure to handle exceptions according to your programming language.
HTTP requests can take some time to complete (a few hundred milliseconds), make sure to not block your main process while sending logs.
Javascript Python C# PHP cURL PowerShell Docker Docker Compose
Copy await fetch("https://api.minilog.dev/v1/logs/<project-name>", {
method: "POST",
headers: {
"Content-Type": "application/json",
Authorization: "Bearer <project-token>",
},
body: JSON.stringify({
application: "myapp-1",
severity: "DEBUG",
data: "This is a debug message",
metadata: { hostname: "vm-1" },
}),
});
Copy import requests
import json
url = "https://api.minilog.dev/v1/logs/<project-name>"
headers = {
"Content-Type": "application/json",
"Authorization": "Bearer <project-token>",
}
data = {
"application": "myapp-1",
"severity": "DEBUG",
"data": "This is a debug message",
"metadata": {"hostname": "vm-1"},
}
response = requests.post(url, headers=headers, data=json.dumps(data))
print(response.status_code)
Copy using System;
using System.Net.Http;
using System.Text;
using System.Threading.Tasks;
class Program
{
static async Task Main()
{
var url = "https://api.minilog.dev/v1/logs/<project-name>";
var token = "<project-token>";
var json = "{\"application\": \"myapp-1\",\"severity\": \"DEBUG\",\"data\": \"This is a debug message\",\"metadata\": {\"hostname\": \"vm-1\"}}";
using (var client = new HttpClient())
{
client.DefaultRequestHeaders.Authorization = new System.Net.Http.Headers.AuthenticationHeaderValue("Bearer", token);
var content = new StringContent(json, Encoding.UTF8, "application/json");
var response = await client.PostAsync(url, content);
Console.WriteLine(response.StatusCode);
}
}
}
Copy <?php
$url = 'https://api.minilog.dev/v1/logs/<project-name>';
$token = '<project-token>';
$data = array(
'application' => 'myapp-1',
'severity' => 'DEBUG',
'data' => 'This is a debug message',
'metadata' => array('hostname' => 'vm-1')
);
$options = array(
'http' => array(
'header' => "Content-Type: application/json\r\n" .
"Authorization: Bearer " . $token . "\r\n",
'method' => 'POST',
'content' => json_encode($data),
),
);
$context = stream_context_create($options);
$response = file_get_contents($url, false, $context);
if ($response === false) {
echo "Error fetching data";
} else {
echo $response;
}
?>
Copy curl -X POST https://api.minilog.dev/v1/logs/<project-name> \
-H "Content-Type: application/json" \
-H "Authorization: Bearer <project-token>" \
-d '{
"application": "myapp-1",
"severity": "DEBUG",
"data": "This is a debug message",
"metadata": { "hostname": "vm-1" }
}'
Copy $uri = 'https://api.minilog.dev/v1/logs/<project-name>'
$headers = @{
'Content-Type' = 'application/json'
'Authorization' = 'Bearer <project-token>'
}
$body = @{
application = 'myapp-1'
severity = 'DEBUG'
data = 'This is a debug message'
metadata = @{
hostname = 'vm-1'
}
}
Invoke-RestMethod -Uri $uri -Method Post -Headers $headers -Body ($body | ConvertTo-Json)
Copy # Docker can send logs to Minilog via the Splunk logging driver.
# It comes pre-installed with docker.
docker run -p 3000:80 \
--log-driver=splunk \
--log-opt splunk-token=project-token \
--log-opt splunk-url=https://api.minilog.dev \
--log-opt tag="myapp-1" \
nginx:alpine
Copy services:
mywebserver:
image: nginx:alpine
ports:
- "3000:80"
logging:
driver: splunk
options:
splunk-url: "https://api.minilog.dev"
splunk-token: "<project-token>"
tag: "myapp-1"
Last updated 7 months ago