Use Cloudflare /received API instead of /requests
This commit is contained in:
parent
57ba532400
commit
089f1eedb3
|
@ -3,7 +3,7 @@ const invariant = require("invariant");
|
||||||
const gunzip = require("gunzip-maybe");
|
const gunzip = require("gunzip-maybe");
|
||||||
const ndjson = require("ndjson");
|
const ndjson = require("ndjson");
|
||||||
|
|
||||||
const cloudflareURL = "https://api.cloudflare.com";
|
const cloudflareURL = "https://api.cloudflare.com/client/v4";
|
||||||
const cloudflareEmail = process.env.CLOUDFLARE_EMAIL;
|
const cloudflareEmail = process.env.CLOUDFLARE_EMAIL;
|
||||||
const cloudflareKey = process.env.CLOUDFLARE_KEY;
|
const cloudflareKey = process.env.CLOUDFLARE_KEY;
|
||||||
|
|
||||||
|
@ -15,7 +15,7 @@ invariant(
|
||||||
invariant(cloudflareKey, "Missing the $CLOUDFLARE_KEY environment variable");
|
invariant(cloudflareKey, "Missing the $CLOUDFLARE_KEY environment variable");
|
||||||
|
|
||||||
function get(path, headers) {
|
function get(path, headers) {
|
||||||
return fetch(`${cloudflareURL}/client/v4${path}`, {
|
return fetch(`${cloudflareURL}${path}`, {
|
||||||
headers: Object.assign({}, headers, {
|
headers: Object.assign({}, headers, {
|
||||||
"X-Auth-Email": cloudflareEmail,
|
"X-Auth-Email": cloudflareEmail,
|
||||||
"X-Auth-Key": cloudflareKey
|
"X-Auth-Key": cloudflareKey
|
||||||
|
@ -74,18 +74,24 @@ function getZoneAnalyticsDashboard(zones, since, until) {
|
||||||
}
|
}
|
||||||
|
|
||||||
function getJSONStream(path, headers) {
|
function getJSONStream(path, headers) {
|
||||||
const acceptGzipHeaders = Object.assign({}, headers, {
|
const gzipHeaders = Object.assign({}, headers, {
|
||||||
"Accept-Encoding": "gzip"
|
"Accept-Encoding": "gzip"
|
||||||
});
|
});
|
||||||
|
|
||||||
return get(path, acceptGzipHeaders)
|
return get(path, gzipHeaders)
|
||||||
.then(res => res.body.pipe(gunzip()))
|
.then(res => res.body.pipe(gunzip()))
|
||||||
.then(stream => stream.pipe(ndjson.parse()));
|
.then(stream => stream.pipe(ndjson.parse()));
|
||||||
}
|
}
|
||||||
|
|
||||||
function getLogs(zoneId, startTime, endTime) {
|
function getLogs(zoneId, startTime, endTime, fieldsArray) {
|
||||||
|
const fields = fieldsArray.join(",");
|
||||||
|
|
||||||
|
// console.log(
|
||||||
|
// `https://api.cloudflare.com/client/v4/zones/${zoneId}/logs/received?start=${startTime}&end=${endTime}&fields=${fields}`
|
||||||
|
// );
|
||||||
|
|
||||||
return getJSONStream(
|
return getJSONStream(
|
||||||
`/zones/${zoneId}/logs/requests?start=${startTime}&end=${endTime}`
|
`/zones/${zoneId}/logs/received?start=${startTime}&end=${endTime}&fields=${fields}`
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
const parseURL = require("url").parse;
|
const parseURL = require("url").parse;
|
||||||
const startOfDay = require("date-fns/start_of_day");
|
const startOfDay = require("date-fns/start_of_day");
|
||||||
|
const startOfMinute = require("date-fns/start_of_minute");
|
||||||
const addDays = require("date-fns/add_days");
|
const addDays = require("date-fns/add_days");
|
||||||
|
|
||||||
const db = require("./utils/redis");
|
const db = require("./utils/redis");
|
||||||
|
@ -20,28 +21,35 @@ const domainNames = [
|
||||||
/**
|
/**
|
||||||
* The window of time to download in a single fetch.
|
* The window of time to download in a single fetch.
|
||||||
*/
|
*/
|
||||||
const logWindowSeconds = 30;
|
const logWindowSeconds = 60;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The minimum time to wait between fetches.
|
||||||
|
*/
|
||||||
|
const minInterval = 15000;
|
||||||
|
|
||||||
function getSeconds(date) {
|
function getSeconds(date) {
|
||||||
return Math.floor(date.getTime() / 1000);
|
return Math.floor(date.getTime() / 1000);
|
||||||
}
|
}
|
||||||
|
|
||||||
function stringifySeconds(seconds) {
|
function stringifySeconds(seconds) {
|
||||||
return new Date(seconds * 1000).toISOString();
|
return new Date(seconds * 1000).toISOString().replace(/\.0+Z$/, "Z");
|
||||||
}
|
}
|
||||||
|
|
||||||
function toSeconds(millis) {
|
function toSeconds(ms) {
|
||||||
return Math.floor(millis / 1000);
|
return Math.floor(ms / 1000);
|
||||||
}
|
}
|
||||||
|
|
||||||
const oneSecond = 1000;
|
const oneSecond = 1000;
|
||||||
const oneMinute = oneSecond * 60;
|
const oneMinute = oneSecond * 60;
|
||||||
const oneHour = oneMinute * 60;
|
const oneHour = oneMinute * 60;
|
||||||
|
const oneDay = oneHour * 24;
|
||||||
|
|
||||||
function computeCounters(stream) {
|
function computeCounters(stream) {
|
||||||
return new Promise((resolve, reject) => {
|
return new Promise((resolve, reject) => {
|
||||||
const counters = {};
|
const counters = {};
|
||||||
const expireat = {};
|
const expireat = {};
|
||||||
|
let totalEntries = 0;
|
||||||
|
|
||||||
function incr(key, member, by, expiry) {
|
function incr(key, member, by, expiry) {
|
||||||
counters[key] = counters[key] || {};
|
counters[key] = counters[key] || {};
|
||||||
|
@ -51,21 +59,20 @@ function computeCounters(stream) {
|
||||||
|
|
||||||
stream
|
stream
|
||||||
.on("error", reject)
|
.on("error", reject)
|
||||||
.on("data", function(entry) {
|
.on("data", entry => {
|
||||||
const date = new Date(Math.round(entry.timestamp / 1000000));
|
totalEntries += 1;
|
||||||
|
|
||||||
|
const date = new Date(Math.round(entry.EdgeStartTimestamp / 1000000));
|
||||||
|
|
||||||
const nextDay = startOfDay(addDays(date, 1));
|
const nextDay = startOfDay(addDays(date, 1));
|
||||||
const sevenDaysLater = getSeconds(addDays(nextDay, 7));
|
const sevenDaysLater = getSeconds(addDays(nextDay, 7));
|
||||||
const thirtyDaysLater = getSeconds(addDays(nextDay, 30));
|
const thirtyDaysLater = getSeconds(addDays(nextDay, 30));
|
||||||
const dayKey = StatsAPI.createDayKey(date);
|
const dayKey = StatsAPI.createDayKey(date);
|
||||||
|
|
||||||
const clientRequest = entry.clientRequest;
|
if (entry.EdgeResponseStatus === 200) {
|
||||||
const edgeResponse = entry.edgeResponse;
|
|
||||||
|
|
||||||
if (edgeResponse.status === 200) {
|
|
||||||
// Q: How many requests do we serve for a package per day?
|
// Q: How many requests do we serve for a package per day?
|
||||||
// Q: How many bytes do we serve for a package per day?
|
// Q: How many bytes do we serve for a package per day?
|
||||||
const url = parsePackageURL(parseURL(clientRequest.uri).pathname);
|
const url = parsePackageURL(entry.ClientRequestURI);
|
||||||
const packageName = url && url.packageName;
|
const packageName = url && url.packageName;
|
||||||
|
|
||||||
if (packageName && isValidPackageName(packageName)) {
|
if (packageName && isValidPackageName(packageName)) {
|
||||||
|
@ -78,26 +85,27 @@ function computeCounters(stream) {
|
||||||
incr(
|
incr(
|
||||||
`stats-packageBytes-${dayKey}`,
|
`stats-packageBytes-${dayKey}`,
|
||||||
packageName,
|
packageName,
|
||||||
edgeResponse.bytes,
|
entry.EdgeResponseBytes,
|
||||||
thirtyDaysLater
|
thirtyDaysLater
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Q: How many requests per day do we receive via a protocol?
|
// Q: How many requests per day do we receive via a protocol?
|
||||||
const protocol = clientRequest.httpProtocol;
|
const protocol = entry.ClientRequestProtocol;
|
||||||
|
|
||||||
if (protocol)
|
if (protocol) {
|
||||||
incr(
|
incr(
|
||||||
`stats-protocolRequests-${dayKey}`,
|
`stats-protocolRequests-${dayKey}`,
|
||||||
protocol,
|
protocol,
|
||||||
1,
|
1,
|
||||||
thirtyDaysLater
|
thirtyDaysLater
|
||||||
);
|
);
|
||||||
|
}
|
||||||
|
|
||||||
// Q: How many requests do we receive from a hostname per day?
|
// Q: How many requests do we receive from a hostname per day?
|
||||||
// Q: How many bytes do we serve to a hostname per day?
|
// Q: How many bytes do we serve to a hostname per day?
|
||||||
const referer = clientRequest.referer;
|
const referer = entry.ClientRequestReferer;
|
||||||
const hostname = referer && parseURL(referer).hostname;
|
const hostname = referer && parseURL(referer).hostname;
|
||||||
|
|
||||||
if (hostname) {
|
if (hostname) {
|
||||||
|
@ -105,86 +113,93 @@ function computeCounters(stream) {
|
||||||
incr(
|
incr(
|
||||||
`stats-hostnameBytes-${dayKey}`,
|
`stats-hostnameBytes-${dayKey}`,
|
||||||
hostname,
|
hostname,
|
||||||
edgeResponse.bytes,
|
entry.EdgeResponseBytes,
|
||||||
sevenDaysLater
|
sevenDaysLater
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
.on("end", function() {
|
.on("end", () => {
|
||||||
resolve({ counters, expireat });
|
resolve({ counters, expireat, totalEntries });
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
function processLogs(stream) {
|
function processLogs(stream) {
|
||||||
return computeCounters(stream).then(({ counters, expireat }) => {
|
return computeCounters(stream).then(
|
||||||
Object.keys(counters).forEach(key => {
|
({ counters, expireat, totalEntries }) => {
|
||||||
const values = counters[key];
|
Object.keys(counters).forEach(key => {
|
||||||
|
const values = counters[key];
|
||||||
|
|
||||||
Object.keys(values).forEach(member => {
|
Object.keys(values).forEach(member => {
|
||||||
db.zincrby(key, values[member], member);
|
db.zincrby(key, values[member], member);
|
||||||
|
});
|
||||||
|
|
||||||
|
if (expireat[key]) {
|
||||||
|
db.expireat(key, expireat[key]);
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
if (expireat[key]) db.expireat(key, expireat[key]);
|
return totalEntries;
|
||||||
|
}
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
function ingestLogs(zone, startSeconds, endSeconds) {
|
||||||
|
const startFetchTime = Date.now();
|
||||||
|
const fields = [
|
||||||
|
"EdgeStartTimestamp",
|
||||||
|
"EdgeResponseStatus",
|
||||||
|
"EdgeResponseBytes",
|
||||||
|
"ClientRequestProtocol",
|
||||||
|
"ClientRequestURI",
|
||||||
|
"ClientRequestReferer"
|
||||||
|
];
|
||||||
|
|
||||||
|
return CloudflareAPI.getLogs(
|
||||||
|
zone.id,
|
||||||
|
stringifySeconds(startSeconds),
|
||||||
|
stringifySeconds(endSeconds),
|
||||||
|
fields
|
||||||
|
).then(stream => {
|
||||||
|
const endFetchTime = Date.now();
|
||||||
|
|
||||||
|
console.log(
|
||||||
|
"info: Fetched logs for %s from %s to %s (%dms)",
|
||||||
|
zone.name,
|
||||||
|
stringifySeconds(startSeconds),
|
||||||
|
stringifySeconds(endSeconds),
|
||||||
|
endFetchTime - startFetchTime
|
||||||
|
);
|
||||||
|
|
||||||
|
const startProcessTime = Date.now();
|
||||||
|
|
||||||
|
return processLogs(stream).then(totalEntries => {
|
||||||
|
const endProcessTime = Date.now();
|
||||||
|
|
||||||
|
console.log(
|
||||||
|
"info: Processed %d log entries for %s (%dms)",
|
||||||
|
totalEntries,
|
||||||
|
zone.name,
|
||||||
|
endProcessTime - startProcessTime
|
||||||
|
);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
function ingestLogs(zone, startSeconds, endSeconds) {
|
|
||||||
return new Promise(resolve => {
|
|
||||||
console.log(
|
|
||||||
"info: Started ingesting logs for %s from %s to %s",
|
|
||||||
zone.name,
|
|
||||||
stringifySeconds(startSeconds),
|
|
||||||
stringifySeconds(endSeconds)
|
|
||||||
);
|
|
||||||
|
|
||||||
const startFetchTime = Date.now();
|
|
||||||
|
|
||||||
resolve(
|
|
||||||
CloudflareAPI.getLogs(zone.id, startSeconds, endSeconds).then(stream => {
|
|
||||||
const endFetchTime = Date.now();
|
|
||||||
|
|
||||||
console.log(
|
|
||||||
"info: Fetched %ds worth of logs for %s in %dms",
|
|
||||||
endSeconds - startSeconds,
|
|
||||||
zone.name,
|
|
||||||
endFetchTime - startFetchTime
|
|
||||||
);
|
|
||||||
|
|
||||||
const startProcessTime = Date.now();
|
|
||||||
|
|
||||||
return processLogs(stream).then(() => {
|
|
||||||
const endProcessTime = Date.now();
|
|
||||||
|
|
||||||
console.log(
|
|
||||||
"info: Processed %ds worth of logs for %s in %dms",
|
|
||||||
endSeconds - startSeconds,
|
|
||||||
zone.name,
|
|
||||||
endProcessTime - startProcessTime
|
|
||||||
);
|
|
||||||
});
|
|
||||||
})
|
|
||||||
);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
function startZone(zone) {
|
function startZone(zone) {
|
||||||
const startSecondsKey = `ingestLogsWorker-nextStartSeconds-${zone.name.replace(
|
const suffix = zone.name.replace(".", "-");
|
||||||
".",
|
const startSecondsKey = `ingestLogs-start-${suffix}`;
|
||||||
"-"
|
|
||||||
)}`;
|
|
||||||
|
|
||||||
function takeATurn() {
|
function takeATurn() {
|
||||||
db.get(startSecondsKey, function(error, value) {
|
const now = Date.now();
|
||||||
|
|
||||||
|
// Cloudflare keeps logs around for 7 days.
|
||||||
|
// https://support.cloudflare.com/hc/en-us/articles/216672448-Enterprise-Log-Share-Logpull-REST-API
|
||||||
|
const minSeconds = toSeconds(startOfMinute(now - oneDay * 5));
|
||||||
|
|
||||||
|
db.get(startSecondsKey, (error, value) => {
|
||||||
let startSeconds = value && parseInt(value, 10);
|
let startSeconds = value && parseInt(value, 10);
|
||||||
|
|
||||||
const now = Date.now();
|
|
||||||
|
|
||||||
// Cloudflare keeps logs around for 72 hours.
|
|
||||||
// https://support.cloudflare.com/hc/en-us/articles/216672448-Enterprise-Log-Share-REST-API
|
|
||||||
const minSeconds = toSeconds(now - oneHour * 72);
|
|
||||||
|
|
||||||
if (startSeconds == null) {
|
if (startSeconds == null) {
|
||||||
startSeconds = minSeconds;
|
startSeconds = minSeconds;
|
||||||
} else if (startSeconds < minSeconds) {
|
} else if (startSeconds < minSeconds) {
|
||||||
|
@ -198,6 +213,8 @@ function startZone(zone) {
|
||||||
startSeconds = minSeconds;
|
startSeconds = minSeconds;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const endSeconds = startSeconds + logWindowSeconds;
|
||||||
|
|
||||||
// The log for a request is typically available within thirty (30) minutes
|
// The log for a request is typically available within thirty (30) minutes
|
||||||
// of the request taking place under normal conditions. We deliver logs
|
// of the request taking place under normal conditions. We deliver logs
|
||||||
// ordered by the time that the logs were created, i.e. the timestamp of
|
// ordered by the time that the logs were created, i.e. the timestamp of
|
||||||
|
@ -208,15 +225,13 @@ function startZone(zone) {
|
||||||
// https://support.cloudflare.com/hc/en-us/articles/216672448-Enterprise-Log-Share-REST-API
|
// https://support.cloudflare.com/hc/en-us/articles/216672448-Enterprise-Log-Share-REST-API
|
||||||
const maxSeconds = toSeconds(now - oneMinute * 30);
|
const maxSeconds = toSeconds(now - oneMinute * 30);
|
||||||
|
|
||||||
if (startSeconds < maxSeconds) {
|
if (endSeconds < maxSeconds) {
|
||||||
const endSeconds = startSeconds + logWindowSeconds;
|
|
||||||
|
|
||||||
ingestLogs(zone, startSeconds, endSeconds).then(
|
ingestLogs(zone, startSeconds, endSeconds).then(
|
||||||
function() {
|
() => {
|
||||||
db.set(startSecondsKey, endSeconds);
|
db.set(startSecondsKey, endSeconds);
|
||||||
setTimeout(takeATurn);
|
setTimeout(takeATurn, minInterval);
|
||||||
},
|
},
|
||||||
function(error) {
|
error => {
|
||||||
console.error(error.stack);
|
console.error(error.stack);
|
||||||
process.exit(1);
|
process.exit(1);
|
||||||
}
|
}
|
||||||
|
@ -231,9 +246,6 @@ function startZone(zone) {
|
||||||
}
|
}
|
||||||
|
|
||||||
Promise.all(domainNames.map(CloudflareAPI.getZones)).then(results => {
|
Promise.all(domainNames.map(CloudflareAPI.getZones)).then(results => {
|
||||||
const zones = results.reduce((memo, zones) => {
|
const zones = results.reduce((memo, zones) => memo.concat(zones));
|
||||||
return memo.concat(zones);
|
|
||||||
});
|
|
||||||
|
|
||||||
zones.forEach(startZone);
|
zones.forEach(startZone);
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue