Re: Need help with Plot Plugin for Jenkins

2014-07-28 Thread Jon Schewe
You will create a new foo.properties file for each run. On Mon, Jul 28, 2014 at 1:06 PM, Andrew Pritykin wrote: > Jon, > > THANK YOU! I got it to work! I appreciate your help very much! Cheers!! > > > On Monday, July 28, 2014 1:49:31 PM UTC-4, Andrew Pritykin wrote: >> >> So just to clarify, wi

Re: Need help with Plot Plugin for Jenkins

2014-07-28 Thread Jon Schewe
Glad it worked. On Mon, Jul 28, 2014 at 1:06 PM, Andrew Pritykin wrote: > Jon, > > THANK YOU! I got it to work! I appreciate your help very much! Cheers!! > > > On Monday, July 28, 2014 1:49:31 PM UTC-4, Andrew Pritykin wrote: >> >> So just to clarify, will I be creating a new foo.properties fi

Re: Need help with Plot Plugin for Jenkins

2014-07-28 Thread Andrew Pritykin
Jon, THANK YOU! I got it to work! I appreciate your help very much! Cheers!! On Monday, July 28, 2014 1:49:31 PM UTC-4, Andrew Pritykin wrote: > > So just to clarify, will I be creating a new foo.properties file for each > run or add a new value to YVALUE? > > On Monday, July 28, 2014 1:47:49 PM

Re: Need help with Plot Plugin for Jenkins

2014-07-28 Thread Andrew Pritykin
So just to clarify, will I be creating a new foo.properties file for each run or add a new value to YVALUE? On Monday, July 28, 2014 1:47:49 PM UTC-4, Jon Schewe wrote: > > That's how I use the plot plugin as well. Have your script write > YVALUE=time into the file foo.properties, then configure

Re: Need help with Plot Plugin for Jenkins

2014-07-28 Thread Jon Schewe
That's how I use the plot plugin as well. Have your script write YVALUE=time into the file foo.properties, then configure the plugin to use the file just like I specified earlier. The plot plugin will keep track of all of the values for each build internally. On Mon, Jul 28, 2014 at 11:38 AM, And

Re: Need help with Plot Plugin for Jenkins

2014-07-28 Thread Jon Schewe
The "foo.properties" file is created for each build as part of my continuous integration script. On Mon, Jul 28, 2014 at 10:23 AM, Andrew Pritykin wrote: > Jon, > > Is the same file "foo.properties" used for multiple builds? Would I just > continue to add values to YVALUE or create a new file f

Re: Need help with Plot Plugin for Jenkins

2014-07-28 Thread Andrew Pritykin
How would I go about using the foo.properties files for what I need. Basically my script tests how long it takes to load the webpage, then saves the time in a file. I plan to graph the load time for each build in a single graph (so we can monitor webpage performance over time). I apologize as I

Re: Need help with Plot Plugin for Jenkins

2014-07-28 Thread Andrew Pritykin
Jon, Is the same file "foo.properties" used for multiple builds? Would I just continue to add values to YVALUE or create a new file for each build? Is it difficult to write to the properties file in Javascript? On Monday, July 28, 2014 11:12:17 AM UTC-4, Jon Schewe wrote: > > I have the plot pl

Re: Need help with Plot Plugin for Jenkins

2014-07-28 Thread Jon Schewe
I have the plot plugin generating plots from some of my test scripts. I'm using the properties file format. So for each series that I want to graph I create a file that contains YVALUE=. For instance I have a series named "foo" and I create a file named "foo.properties" that contains a single line

Re: Need help with Plot Plugin for Jenkins

2014-07-28 Thread Andrew Pritykin
Still looking for any help on this problem. On Wednesday, July 23, 2014 5:22:12 PM UTC-4, Andrew Pritykin wrote: > > So here is the deal folks, > > I have a PhantomJS script that simply measures the amount of time it takes > to load a web page (in ms). My plan is to graph the result (time taken)

Re: Need help with Plot Plugin for Jenkins

2014-07-23 Thread Andrew Pritykin
CODE: /* *** PhantomJS Script below will load a webpage pre defined in terminal and return the time it took to load the webpage in full. After the load test it will write the result into a local .csv file to later be used in Jenkins to graph using the Plot Plugin. By: A