Worker Count Clarification

For Workes & Pages, what is the name of the domain?

example.com

What is the issue or error you’re encountering

Does creating a new request or fetching count towards worker counts ?

What steps have you taken to resolve the issue?

Example:

const headers = new Headers(event.headers);
headers.set(‘x-live-request’, ‘true’);
const newRequest = new Request(event,{
headers: headers
})

Would the additonal request here count towards worker count? Just starting to learn about cloudflare would like some clarity here.

Simply creating a request object would not count as another billable Worker Request, nor as a subrequest.

actually fetch()ing within your Worker counts against your Subrequest limit (Limits | Cloudflare Workers docs). Which is 50 on free per request and 1,000 on the Standards Workers Paid plan. Subrequests don’t cause another billable Request or anything like that (unless you fetched another Worker of your own), there is merely limits on the amount of subrequests you can do per incoming request depending on your plan.