Skip to content

Commit

Permalink
Make backend apps names more consistent
Browse files Browse the repository at this point in the history
  • Loading branch information
mario4tier committed Sep 1, 2024
1 parent deff60b commit 8f655c2
Show file tree
Hide file tree
Showing 8 changed files with 515 additions and 1,423 deletions.
File renamed without changes.
File renamed without changes.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -563,11 +563,9 @@ async function updateMetrics() {

// Track unique visitors based on remoteIp
if (!routeMetrics.visitors_set) {
console.log('First visitor:', remoteIp);
routeMetrics.visitors_set = new Set<string>([remoteIp]);
routeMetrics.visitors = 1;
} else if (!routeMetrics.visitors_set.has(remoteIp)) {
console.log('New visitor:', remoteIp);
routeMetrics.visitors_set.add(remoteIp);
routeMetrics.visitors += 1;
}
Expand Down
File renamed without changes.
Loading

0 comments on commit 8f655c2

Please sign in to comment.