mirror of
https://github.com/CommunityOx/ox_lib.git
synced 2026-08-17 06:56:03 +01:00
88 lines
2.7 KiB
Lua
88 lines
2.7 KiB
Lua
local service = GetConvar('ox:logger', 'datadog')
|
|
local hostname = GetConvar('sv_projectName', 'fxserver')
|
|
local buffer
|
|
local bufferSize = 0
|
|
|
|
local function badResponse(endpoint, response)
|
|
print(('unable to submit logs to %s\n%s'):format(endpoint, json.encode(response, { indent = true })))
|
|
end
|
|
|
|
local playerData = {}
|
|
|
|
AddEventHandler('playerDropped', function()
|
|
playerData[source] = nil
|
|
end)
|
|
|
|
if service == 'datadog' then
|
|
local key = GetConvar('datadog:key', ''):gsub("[\'\"]", '')
|
|
|
|
if key ~= '' then
|
|
local endpoint = ('https://http-intake.logs.%s/api/v2/logs'):format(GetConvar('datadog:site', 'datadoghq.com'))
|
|
|
|
local headers = {
|
|
['Content-Type'] = 'application/json',
|
|
['DD-API-KEY'] = key,
|
|
}
|
|
|
|
local function formatTags(source, tags)
|
|
if type(source) == 'number' and source > 0 then
|
|
local data = playerData[source]
|
|
|
|
if not data then
|
|
local _data = {
|
|
('username:%s'):format(GetPlayerName(source))
|
|
}
|
|
|
|
local num = 1
|
|
|
|
---@cast source string
|
|
for i = 0, GetNumPlayerIdentifiers(source) - 1 do
|
|
local identifier = GetPlayerIdentifier(source, i)
|
|
|
|
if not identifier:find('ip') then
|
|
num += 1
|
|
_data[num] = identifier
|
|
end
|
|
end
|
|
|
|
data = table.concat(_data, ',')
|
|
playerData[source] = data
|
|
end
|
|
|
|
tags = tags and ('%s,%s'):format(tags, data) or data
|
|
end
|
|
|
|
return tags
|
|
end
|
|
|
|
function lib.logger(source, event, message, ...)
|
|
if not buffer then
|
|
buffer = {}
|
|
|
|
SetTimeout(500, function()
|
|
PerformHttpRequest(endpoint, function(status, _, _, response)
|
|
if status ~= 202 then
|
|
badResponse(endpoint, json.decode(response:sub(10)).errors[1])
|
|
end
|
|
end, 'POST', json.encode(buffer), headers)
|
|
|
|
buffer = nil
|
|
bufferSize = 0
|
|
end)
|
|
end
|
|
|
|
bufferSize += 1
|
|
buffer[bufferSize] = {
|
|
hostname = hostname,
|
|
service = event,
|
|
message = message,
|
|
resource = cache.resource,
|
|
ddsource = tostring(source),
|
|
ddtags = formatTags(source, ... and string.strjoin(',', string.tostringall(...)) or nil),
|
|
}
|
|
end
|
|
end
|
|
end
|
|
|
|
return lib.logger or function() end
|