DEV Community

Discussion on: WebApp performance monitoring by performance.mark with metadata

Collapse
 
bgadrian profile image
Adrian B.G.

Can it be used to gather sample data from users and centralize it? Also can it be used w/o nodejs? For a static website for example.

Collapse
 
azu profile image
azu

Can it be used to gather sample data from users and centralize it?

Yes, But you should prepare own logging system and post data to the logging system.
For example, API Gateway + Lambda + S3(Post serialized JSON data from a browser to lambda via API Gateway, and save it to S3).

Also can it be used w/o nodejs?

Yes, It is work on modern browser.

Logging backend could be implemented in any language. It just treat log data like json.