Tracking on unique url

I’m using piwik to track data on unique pages in a rails app: For example - http://www.example.com/page/views/1

The addSite call is something like this:

Piwik::SitesManager.addSite( siteName: “#{@page.name}”, urls: @go_to_url, timezone: ‘America/Chicago’, currency: ‘USD’ )

Everything seems to be working except the url saved on the piwik side will chop off the parameter and I’m left with:

http://www.example.com/page/views

Is there anyway to maintain the parameter so I can track the single page as a whole website? It is likely that these “pages” will have lots of traffic and I would prefer to track them individually and view a dashboard for each as a separate entity.