Skip to content

Instantly share code, notes, and snippets.

View PaulGruffyddAmaze's full-sized avatar

Paul Gruffydd PaulGruffyddAmaze

View GitHub Profile
@PaulGruffyddAmaze
PaulGruffyddAmaze / IndexRecentHits.cs
Last active May 12, 2019 19:55
PoC for getting lists of popular content from Episerver Profile Store
[ScheduledPlugIn(DisplayName = "Index Recent Page Hits", DefaultEnabled = true, IntervalLength = 1, IntervalType = EPiServer.DataAbstraction.ScheduledIntervalType.Hours)]
public class IndexRecentHits : ScheduledJobBase
{
//Settings
private readonly string _apiRootUrl = ConfigurationManager.AppSettings["episerver:profiles.ProfileApiBaseUrl"];
private readonly string _appKey = ConfigurationManager.AppSettings["episerver:profiles.ProfileApiSubscriptionKey"];
private readonly string _eventUrl = "/api/v1.0/trackevents/";
private readonly string _timeWindow = ConfigurationManager.AppSettings["RecentHours"] ?? "24";
private readonly int _resultsPerPage = 1000;