Skip to content

Instantly share code, notes, and snippets.

@mariochavez
Created April 19, 2011 00:34
Show Gist options
  • Save mariochavez/926590 to your computer and use it in GitHub Desktop.
Save mariochavez/926590 to your computer and use it in GitHub Desktop.
Routes
404 1463ms 1096cpu_ms 0kb Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16,gzip(gfe)
201.170.55.247 - - [18/Apr/2011:11:53:30 -0700] "GET / HTTP/1.1" 404 204 - "Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16,gzip(gfe)" "tjbackhaul.appspot.com" ms=1464 cpu_ms=1097 api_cpu_ms=0 cpm_usd=0.030523 loading_request=1
I 2011-04-18 11:53:30.378
This request caused a new process to be started for your application, and thus caused your application code to be loaded for the first time. This request may thus take longer and use more CPU than a typical request for your application.
# Routes
# This file defines all application routes (Higher priority routes first)
# ~~~~
# Home page
GET / Application.index
GET /logout Application.logout
GET /login Application.login
GET /users Users.index
GET /users/edit Users.edit
PUT /users/update Users.update
GET /backhauls/new BackHauls.newBackHaul
POST /backhauls/create BackHauls.create
GET /backhauls/{id}/edit BackHauls.edit
PUT /backhauls/update BackHauls.update
# Map static resources from the /app/public folder to the /public path
GET /public/ staticDir:public
# Catch all
#* /{controller}/{action} {controller}.{action}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment