Get full custom log from website in Asp.Net MVC -
i have asp.net mvc application.
i need full custom log of website don't want use google analytics, iis log file , etc.
i familiar customactionfilter
, httpmodule
. shall use these or there better way?
you can use application insights tracking user actitivy. can track own events, exceptions, etc. directly in javascript code.
appinsights.trackevent("wingame"); appinsights.trackevent ("wingame", // string properties: {game: currentgame.name, difficulty: currentgame.difficulty}, // numeric metrics: {score: currentgame.score, opponents: currentgame.opponentcount} ); appinsights.trackpageview ("page name", "http://fabrikam.com/pageurl.html", // string properties: {game: currentgame.name, difficulty: currentgame.difficulty}, // numeric metrics: {score: currentgame.score, opponents: currentgame.opponentcount} );
Comments
Post a Comment