Skip to content

Instantly share code, notes, and snippets.

@stubbetje
Created December 19, 2012 11:12
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stubbetje/4336000 to your computer and use it in GitHub Desktop.
Save stubbetje/4336000 to your computer and use it in GitHub Desktop.
Installation notes of monitoring setup with graphite and statsd

Installation notes of monitoring setup with graphite and statsd

These are the notes for installing graphite and statsd.

To minimize system impact, all installations are done as a separate non-root user "mon". The resulting installation can be found in $HOME/graphite.

The only requirements that should be installed system wide are python and python-dev packages. Of course, the usual gcc chain should also be available

The installation has been performed on a SUSE Linux Enterprise Server 11 SP2

root:~ # cat /etc/SuSE-release
SUSE Linux Enterprise Server 11 (x86_64)
VERSION = 11
PATCHLEVEL = 2

In this case Python 2.6 was used. Also the cairo-devel, xorg-x11-fonts packages have been installed through the package manager (yast).

Overview

Graphite as a project consists out of 3 separate components:

  • carbon

    Is the daemon that receives all the metrics and is responsible for storing them.

  • whisper

    Is a python replacement for RRD with a simular feature set, but accepts irregular updates

  • graphite

    Frontent to the stored data. Enables you to create dashboards, but also provides an api to retrieve the stored statistics.

The installation is separated in different parts:

  • install virtualenv and create an virtualenv for the graphite installation

  • install dependencies for graphite

  • install graphite from sources

  • configure carbon and graphite

  • install statsd from sources

  • run carbon

Install virtualenv and create an virtualenv

Virtualenv is a tool to create isolated Python environments. We will use it to create a separate python environment for graphite in the directory ~/ve/graphite.

mon@pcuxcomp002:~> curl -O https://raw.github.com/pypa/virtualenv/master/virtualenv.py

  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100  111k  100  111k    0     0  89944      0  0:00:01  0:00:01 --:--:-- 91905

mon@pcuxcomp002:~> python virtualenv.py ve/graphite

New python executable in ve/graphite/bin/python
Installing setuptools............................done.
Installing pip.....................done.

mon@pcuxcomp002:~> . ve/grahite/bin/activate
(graphite)mon@pcuxcomp002:~> 

Install dependencies for graphite

Graphite has a number of dependencies. These can be installed with pip, which is automatically installed when creating a virtual python environment.

(graphite)mon@pcuxcomp002:~> pip install django==1.3 django-tagging twisted

One other dependency is pycairo, but will not work by using pip. The installation must be done manually.

The pycairo package for Python2 has been renamed py2cairo, but is not available through pip. Download sources manually and compile (or try to)

(based on [http://stackoverflow.com/a/13279739])

(graphite)mon@pcuxcomp002:~> cd src
(graphite)mon@pcuxcomp002:~/src> git clone git://git.cairographics.org/git/py2cairo
# if git:// is not accessible, try http:// (note: different url)
(graphite)mon@pcuxcomp002:~/src> git clone http://git.cairographics.org/py2cairo
(graphite)mon@pcuxcomp002:~/src/py2cairo> ./waf configure --prefix=$VIRTUAL_ENV
(graphite)mon@pcuxcomp002:~/src/py2cairo> ./waf build
(graphite)mon@pcuxcomp002:~/src/py2cairo> ./waf install

Unfortunally, no dice for us. The recent version of py2cairo requires cairo 1.10.2, but SLES 11.2 comes with cairo 1.8.8. Although it is probably not recommended, changing the required version to 1.8.8 in configure.ac seems to work:

(graphite)mon@pcuxcomp002:~/src/py2cairo> egrep cairo_required_version configure.ac 
#m4_define(cairo_required_version, 1.10.0)
m4_define(cairo_required_version, 1.8.8)
PKG_CHECK_MODULES(CAIRO, cairo >= cairo_required_version)

Now build py2cairo

(graphite)mon@pcuxcomp002:~/src/py2cairo> ./autogen.sh --prefix=$VIRTUAL_ENV
(graphite)mon@pcuxcomp002:~/src/py2cairo> make
(graphite)mon@pcuxcomp002:~/src/py2cairo> make install

Install graphite from sources

Create directory src and clone all separate graphite projects in this directory.

(graphite)mon@pcuxcomp002:~> mkdir src
(graphite)mon@pcuxcomp002:~> cd src
(graphite)mon@pcuxcomp002:~/src> git clone https://github.com/graphite-project/graphite-web.git
(graphite)mon@pcuxcomp002:~/src> git clone https://github.com/graphite-project/carbon.git
(graphite)mon@pcuxcomp002:~/src> git clone https://github.com/graphite-project/whisper.git

Install carbon to custom location $HOME/graphite

(graphite)mon@pcuxcomp002:~/src> cd carbon
(graphite)mon@pcuxcomp002:~/src/carbon> python setup.py install --prefix=$HOME/graphite --install-lib=$HOME/graphite/lib

see output

Install whisper in custom location $HOME/graphite

(graphite)mon@pcuxcomp002:~/src/carbon> cd ~/src/whisper
(graphite)mon@pcuxcomp002:~/src/whisper> python setup.py install --prefix=$HOME/graphite --install-lib=$HOME/graphite/lib

see output

Install graphite-web in custom location $HOME/graphite

(graphite)mon@pcuxcomp002:~/src/whisper> cd ~/src/graphite-web
(graphite)mon@pcuxcomp002:~/src/graphite-web> python setup.py install --prefix=$HOME/graphite --install-lib=$HOME/graphite/webapp

see output

Configure carbon and graphite

Let's configure carbon to indicate how much data needs to be saved.

(graphite)mon@pcuxcomp002:~/src/graphite-web> cd ~/graphite/conf

Now edit the file storage-schemas.conf, by either copying storage-schemas.conf.example and edit where needed, or use this file.

By setting the retentions to 10s:6h,1m:7d,10m:5y in the stats section (which is the prefix that statsD uses) will make carbon keep:

  • 6 hours of 10 second data (near realtime)
  • 1 week of 1 minute data
  • 5 year of 10 minute data

So a high precision of measurements for a short time, and all the rest will be rolled up in less data points ass time passes.

When datapoints are rolled up, carbon needs to now how to aggregate those values. Default it will use the average, but for certain values, other aggregation methods should be used. The default provided example should be sufficient and simular to our file.

The configuration of the graphite-web webapp is done by creating the $HOME/graphite/webapp/grahite/local_settings.py.

(graphite)mon@pcuxcomp002:~/src> cd ~/graphite/webapp/graphite
(graphite)mon@pcuxcomp002:~/graphite/webapp/graphite> cp local_settings.py.example local_settings.py

Edit where needed (TODO)

Create the graphite settings database where users, dashboards and graphs are stored. And create a superuser to administer the graphite webapp (users,dashboards,..)

(graphite)mon@pcuxcomp002:~/graphite/webapp/graphite> python manage.py syncdb
....
You just installed Django's auth system, which means you don't have any superusers defined.
Would you like to create one now? (yes/no): yes
Username (Leave blank to use 'mon'): <username you want>
E-mail address: <email address you want>
Password: 
Password (again): 
Superuser created successfully.

Running carbon

At first, start carbon with the --debug option to check if everything works fine for carbon:

(graphite)mon@pcuxcomp002:~> cd ~/graphite
(graphite)mon@pcuxcomp002:~/graphite> ./bin/carbon-cache.py --debug start

This should show something like:

(graphite)mon@pcuxcomp002:~/graphite> ./bin/carbon-cache.py --debug start
Starting carbon-cache (instance a)
19/12/2012 17:02:19 :: [console] Log opened.
19/12/2012 17:02:19 :: [console] twistd 12.2.0 (/home/mon/ve/graphite/bin/python 2.6.0) starting up.
19/12/2012 17:02:19 :: [console] reactor class: twisted.internet.epollreactor.EPollReactor.
19/12/2012 17:02:19 :: [console] ServerFactory starting on 2003
19/12/2012 17:02:19 :: [console] Starting factory <twisted.internet.protocol.ServerFactory instance at 0xd06ef0>
19/12/2012 17:02:19 :: [console] ServerFactory starting on 2004
19/12/2012 17:02:19 :: [console] Starting factory <twisted.internet.protocol.ServerFactory instance at 0xfbee60>
19/12/2012 17:02:19 :: [console] ServerFactory starting on 7002
19/12/2012 17:02:19 :: [console] Starting factory <twisted.internet.protocol.ServerFactory instance at 0xfbef80>

Press CTRL-C to quit. If all seemed ok, carbon can be started in the background by omitting the --debug flag.

(graphite)mon@pcuxcomp002:~/graphite> ./bin/carbon-cache.py start
Starting carbon-cache (instance a)

And can be stopped again with

(graphite)mon@pcuxcomp002:~/graphite> ./bin/carbon-cache.py stop

Running graphite-web

(graphite)mon@pcuxcomp002:~> cd ~/graphite
(graphite)mon@pcuxcomp002:~/graphite> ./bin/run-graphite-devel-server.py $HOME/graphite

Installing StatsD

StatsD is a node.js daemon. To keep the node.js installation local, we will use nvm for installing it.

# install nvm
mon@pcuxcomp002:~> curl -k https://raw.github.com/creationix/nvm/master/install.sh | sh

# install node.js
mon@pcuxcomp002:~> nvm install v0.8.16
mon@pcuxcomp002:~> nvm use v0.8.16

Now that node.js is installed, we can go ahead and install statsd and configure it

# clone statsd
mon@pcuxcomp002:~> git clone https://github.com/etsy/statsd.git

now create a config file (can be named anything, I went with config.statsd.js) that contains the following:

{
  graphitePort: 2003
, graphiteHost: "pcuxcomp002"
, port: 8125
, backends: [ "./backends/graphite" ]
, debug: false
, percentThreshold: [50,75,90]
}

Now to start StatsD, just run

mon@pcuxcomp002:~/statsd> node stats.js config.statsd.js
# Aggregation methods for whisper files. Entries are scanned in order,
# and first match wins. This file is scanned for changes every 60 seconds
#
# [name]
# pattern = <regex>
# xFilesFactor = <float between 0 and 1>
# aggregationMethod = <average|sum|last|max|min>
#
# name: Arbitrary unique name for the rule
# pattern: Regex pattern to match against the metric name
# xFilesFactor: Ratio of valid data points required for aggregation to the next retention to occur
# aggregationMethod: function to apply to data points for aggregation
#
[min]
pattern = \.min$
xFilesFactor = 0.1
aggregationMethod = min
[max]
pattern = \.max$
xFilesFactor = 0.1
aggregationMethod = max
[sum]
pattern = \.count$
xFilesFactor = 0
aggregationMethod = sum
[default_average]
pattern = .*
xFilesFactor = 0.5
aggregationMethod = average
# Schema definitions for Whisper files. Entries are scanned in order,
# and first match wins. This file is scanned for changes every 60 seconds.
#
# Definition Syntax:
#
# [name]
# pattern = regex
# retentions = timePerPoint:timeToStore, timePerPoint:timeToStore, ...
#
# Remember: To support accurate aggregation from higher to lower resolution
# archives, the precision of a longer retention archive must be
# cleanly divisible by precision of next lower retention archive.
#
# Valid: 60s:7d,300s:30d (300/60 = 5)
# Invalid: 180s:7d,300s:30d (300/180 = 3.333)
#
# Carbon's internal metrics. This entry should match what is specified in
# CARBON_METRIC_PREFIX and CARBON_METRIC_INTERVAL settings
[carbon]
pattern = ^carbon\.
retentions = 60s:90d
[stats]
pattern = ^stats\..*
retentions = 10s:6h,1m:7d,10m:5y
[default_1min_for_1day]
pattern = .*
retentions = 60s:1d
/usr/lib64/python2.6/distutils/dist.py:266: UserWarning: Unknown distribution option: 'install_requires'
warnings.warn(msg)
running install
running build
running build_py
creating build
creating build/lib
creating build/lib/carbon
copying lib/carbon/client.py -> build/lib/carbon
copying lib/carbon/log.py -> build/lib/carbon
copying lib/carbon/relayrules.py -> build/lib/carbon
copying lib/carbon/writer.py -> build/lib/carbon
copying lib/carbon/util.py -> build/lib/carbon
copying lib/carbon/amqp_listener.py -> build/lib/carbon
copying lib/carbon/rewrite.py -> build/lib/carbon
copying lib/carbon/state.py -> build/lib/carbon
copying lib/carbon/instrumentation.py -> build/lib/carbon
copying lib/carbon/management.py -> build/lib/carbon
copying lib/carbon/regexlist.py -> build/lib/carbon
copying lib/carbon/cache.py -> build/lib/carbon
copying lib/carbon/storage.py -> build/lib/carbon
copying lib/carbon/protocols.py -> build/lib/carbon
copying lib/carbon/hashing.py -> build/lib/carbon
copying lib/carbon/manhole.py -> build/lib/carbon
copying lib/carbon/service.py -> build/lib/carbon
copying lib/carbon/conf.py -> build/lib/carbon
copying lib/carbon/routers.py -> build/lib/carbon
copying lib/carbon/__init__.py -> build/lib/carbon
copying lib/carbon/events.py -> build/lib/carbon
copying lib/carbon/amqp_publisher.py -> build/lib/carbon
creating build/lib/carbon/aggregator
copying lib/carbon/aggregator/buffers.py -> build/lib/carbon/aggregator
copying lib/carbon/aggregator/receiver.py -> build/lib/carbon/aggregator
copying lib/carbon/aggregator/__init__.py -> build/lib/carbon/aggregator
copying lib/carbon/aggregator/rules.py -> build/lib/carbon/aggregator
package init file 'lib/twisted/plugins/__init__.py' not found (or not a regular file)
creating build/lib/twisted
creating build/lib/twisted/plugins
copying lib/twisted/plugins/carbon_cache_plugin.py -> build/lib/twisted/plugins
copying lib/twisted/plugins/carbon_aggregator_plugin.py -> build/lib/twisted/plugins
copying lib/twisted/plugins/carbon_relay_plugin.py -> build/lib/twisted/plugins
copying lib/carbon/amqp0-8.xml -> build/lib/carbon
package init file 'lib/twisted/plugins/__init__.py' not found (or not a regular file)
running build_scripts
creating build/scripts-2.6
copying and adjusting bin/carbon-cache.py -> build/scripts-2.6
copying and adjusting bin/carbon-aggregator.py -> build/scripts-2.6
copying and adjusting bin/carbon-relay.py -> build/scripts-2.6
copying and adjusting bin/carbon-client.py -> build/scripts-2.6
copying and adjusting bin/validate-storage-schemas.py -> build/scripts-2.6
changing mode of build/scripts-2.6/carbon-cache.py from 644 to 755
changing mode of build/scripts-2.6/carbon-aggregator.py from 644 to 755
changing mode of build/scripts-2.6/carbon-relay.py from 644 to 755
changing mode of build/scripts-2.6/carbon-client.py from 644 to 755
changing mode of build/scripts-2.6/validate-storage-schemas.py from 644 to 755
running install_lib
creating /home/mon/graphite
creating /home/mon/graphite/lib
creating /home/mon/graphite/lib/twisted
creating /home/mon/graphite/lib/twisted/plugins
copying build/lib/twisted/plugins/carbon_cache_plugin.py -> /home/mon/graphite/lib/twisted/plugins
copying build/lib/twisted/plugins/carbon_aggregator_plugin.py -> /home/mon/graphite/lib/twisted/plugins
copying build/lib/twisted/plugins/carbon_relay_plugin.py -> /home/mon/graphite/lib/twisted/plugins
creating /home/mon/graphite/lib/carbon
copying build/lib/carbon/client.py -> /home/mon/graphite/lib/carbon
copying build/lib/carbon/log.py -> /home/mon/graphite/lib/carbon
copying build/lib/carbon/relayrules.py -> /home/mon/graphite/lib/carbon
copying build/lib/carbon/writer.py -> /home/mon/graphite/lib/carbon
copying build/lib/carbon/util.py -> /home/mon/graphite/lib/carbon
copying build/lib/carbon/amqp_listener.py -> /home/mon/graphite/lib/carbon
creating /home/mon/graphite/lib/carbon/aggregator
copying build/lib/carbon/aggregator/buffers.py -> /home/mon/graphite/lib/carbon/aggregator
copying build/lib/carbon/aggregator/receiver.py -> /home/mon/graphite/lib/carbon/aggregator
copying build/lib/carbon/aggregator/__init__.py -> /home/mon/graphite/lib/carbon/aggregator
copying build/lib/carbon/aggregator/rules.py -> /home/mon/graphite/lib/carbon/aggregator
copying build/lib/carbon/rewrite.py -> /home/mon/graphite/lib/carbon
copying build/lib/carbon/state.py -> /home/mon/graphite/lib/carbon
copying build/lib/carbon/amqp0-8.xml -> /home/mon/graphite/lib/carbon
copying build/lib/carbon/instrumentation.py -> /home/mon/graphite/lib/carbon
copying build/lib/carbon/management.py -> /home/mon/graphite/lib/carbon
copying build/lib/carbon/regexlist.py -> /home/mon/graphite/lib/carbon
copying build/lib/carbon/cache.py -> /home/mon/graphite/lib/carbon
copying build/lib/carbon/storage.py -> /home/mon/graphite/lib/carbon
copying build/lib/carbon/protocols.py -> /home/mon/graphite/lib/carbon
copying build/lib/carbon/hashing.py -> /home/mon/graphite/lib/carbon
copying build/lib/carbon/manhole.py -> /home/mon/graphite/lib/carbon
copying build/lib/carbon/service.py -> /home/mon/graphite/lib/carbon
copying build/lib/carbon/conf.py -> /home/mon/graphite/lib/carbon
copying build/lib/carbon/routers.py -> /home/mon/graphite/lib/carbon
copying build/lib/carbon/__init__.py -> /home/mon/graphite/lib/carbon
copying build/lib/carbon/events.py -> /home/mon/graphite/lib/carbon
copying build/lib/carbon/amqp_publisher.py -> /home/mon/graphite/lib/carbon
byte-compiling /home/mon/graphite/lib/twisted/plugins/carbon_cache_plugin.py to carbon_cache_plugin.pyc
byte-compiling /home/mon/graphite/lib/twisted/plugins/carbon_aggregator_plugin.py to carbon_aggregator_plugin.pyc
byte-compiling /home/mon/graphite/lib/twisted/plugins/carbon_relay_plugin.py to carbon_relay_plugin.pyc
byte-compiling /home/mon/graphite/lib/carbon/client.py to client.pyc
byte-compiling /home/mon/graphite/lib/carbon/log.py to log.pyc
byte-compiling /home/mon/graphite/lib/carbon/relayrules.py to relayrules.pyc
byte-compiling /home/mon/graphite/lib/carbon/writer.py to writer.pyc
byte-compiling /home/mon/graphite/lib/carbon/util.py to util.pyc
byte-compiling /home/mon/graphite/lib/carbon/amqp_listener.py to amqp_listener.pyc
byte-compiling /home/mon/graphite/lib/carbon/aggregator/buffers.py to buffers.pyc
byte-compiling /home/mon/graphite/lib/carbon/aggregator/receiver.py to receiver.pyc
byte-compiling /home/mon/graphite/lib/carbon/aggregator/__init__.py to __init__.pyc
byte-compiling /home/mon/graphite/lib/carbon/aggregator/rules.py to rules.pyc
byte-compiling /home/mon/graphite/lib/carbon/rewrite.py to rewrite.pyc
byte-compiling /home/mon/graphite/lib/carbon/state.py to state.pyc
byte-compiling /home/mon/graphite/lib/carbon/instrumentation.py to instrumentation.pyc
byte-compiling /home/mon/graphite/lib/carbon/management.py to management.pyc
byte-compiling /home/mon/graphite/lib/carbon/regexlist.py to regexlist.pyc
byte-compiling /home/mon/graphite/lib/carbon/cache.py to cache.pyc
byte-compiling /home/mon/graphite/lib/carbon/storage.py to storage.pyc
byte-compiling /home/mon/graphite/lib/carbon/protocols.py to protocols.pyc
byte-compiling /home/mon/graphite/lib/carbon/hashing.py to hashing.pyc
byte-compiling /home/mon/graphite/lib/carbon/manhole.py to manhole.pyc
byte-compiling /home/mon/graphite/lib/carbon/service.py to service.pyc
byte-compiling /home/mon/graphite/lib/carbon/conf.py to conf.pyc
byte-compiling /home/mon/graphite/lib/carbon/routers.py to routers.pyc
byte-compiling /home/mon/graphite/lib/carbon/__init__.py to __init__.pyc
byte-compiling /home/mon/graphite/lib/carbon/events.py to events.pyc
byte-compiling /home/mon/graphite/lib/carbon/amqp_publisher.py to amqp_publisher.pyc
running install_scripts
creating /home/mon/graphite/bin
copying build/scripts-2.6/carbon-cache.py -> /home/mon/graphite/bin
copying build/scripts-2.6/carbon-aggregator.py -> /home/mon/graphite/bin
copying build/scripts-2.6/carbon-relay.py -> /home/mon/graphite/bin
copying build/scripts-2.6/carbon-client.py -> /home/mon/graphite/bin
copying build/scripts-2.6/validate-storage-schemas.py -> /home/mon/graphite/bin
changing mode of /home/mon/graphite/bin/carbon-cache.py to 755
changing mode of /home/mon/graphite/bin/carbon-aggregator.py to 755
changing mode of /home/mon/graphite/bin/carbon-relay.py to 755
changing mode of /home/mon/graphite/bin/carbon-client.py to 755
changing mode of /home/mon/graphite/bin/validate-storage-schemas.py to 755
running install_data
creating /home/mon/graphite/storage
creating /home/mon/graphite/storage/whisper
creating /home/mon/graphite/storage/lists
creating /home/mon/graphite/storage/log
creating /home/mon/graphite/storage/rrd
creating /home/mon/graphite/conf
copying conf/relay-rules.conf.example -> /home/mon/graphite/conf
copying conf/rewrite-rules.conf.example -> /home/mon/graphite/conf
copying conf/carbon.conf.example -> /home/mon/graphite/conf
copying conf/blacklist.conf.example -> /home/mon/graphite/conf
copying conf/storage-aggregation.conf.example -> /home/mon/graphite/conf
copying conf/carbon.amqp.conf.example -> /home/mon/graphite/conf
copying conf/whitelist.conf.example -> /home/mon/graphite/conf
copying conf/storage-schemas.conf.example -> /home/mon/graphite/conf
copying conf/aggregation-rules.conf.example -> /home/mon/graphite/conf
running install_egg_info
Writing /home/mon/graphite/lib/carbon-0.9.10-py2.6.egg-info
(graphite)mon@pcuxcomp002:~/src/ceres> python setup.py install --prefix=$HOME/graphite --install-lib=/home/mon/graphite/lib/
running install
running build
running build_py
creating build
creating build/lib
copying ceres.py -> build/lib
running build_scripts
creating build/scripts-2.6
copying and adjusting bin/ceres-tree-create -> build/scripts-2.6
copying and adjusting bin/ceres-node-write -> build/scripts-2.6
copying and adjusting bin/ceres-node-create -> build/scripts-2.6
copying and adjusting bin/ceres-node-read -> build/scripts-2.6
copying and adjusting bin/slicecat -> build/scripts-2.6
copying and adjusting bin/ceres-tree-find -> build/scripts-2.6
copying and adjusting bin/convert-wsp-to-ceres -> build/scripts-2.6
changing mode of build/scripts-2.6/ceres-tree-create from 644 to 755
changing mode of build/scripts-2.6/ceres-node-write from 644 to 755
changing mode of build/scripts-2.6/ceres-node-create from 644 to 755
changing mode of build/scripts-2.6/ceres-node-read from 644 to 755
changing mode of build/scripts-2.6/slicecat from 644 to 755
changing mode of build/scripts-2.6/ceres-tree-find from 644 to 755
changing mode of build/scripts-2.6/convert-wsp-to-ceres from 644 to 755
running install_lib
copying build/lib/ceres.py -> /home/mon/graphite/lib
byte-compiling /home/mon/graphite/lib/ceres.py to ceres.pyc
running install_scripts
copying build/scripts-2.6/ceres-tree-create -> /home/mon/graphite/bin
copying build/scripts-2.6/ceres-node-write -> /home/mon/graphite/bin
copying build/scripts-2.6/ceres-node-create -> /home/mon/graphite/bin
copying build/scripts-2.6/ceres-node-read -> /home/mon/graphite/bin
copying build/scripts-2.6/slicecat -> /home/mon/graphite/bin
copying build/scripts-2.6/ceres-tree-find -> /home/mon/graphite/bin
copying build/scripts-2.6/convert-wsp-to-ceres -> /home/mon/graphite/bin
changing mode of /home/mon/graphite/bin/ceres-tree-create to 755
changing mode of /home/mon/graphite/bin/ceres-node-write to 755
changing mode of /home/mon/graphite/bin/ceres-node-create to 755
changing mode of /home/mon/graphite/bin/ceres-node-read to 755
changing mode of /home/mon/graphite/bin/slicecat to 755
changing mode of /home/mon/graphite/bin/ceres-tree-find to 755
changing mode of /home/mon/graphite/bin/convert-wsp-to-ceres to 755
running install_egg_info
Writing /home/mon/graphite/lib/ceres-0.10.0-py2.6.egg-info
running install
running build
running build_py
creating build
creating build/lib
creating build/lib/graphite
copying webapp/graphite/intervals.py -> build/lib/graphite
copying webapp/graphite/urls.py -> build/lib/graphite
copying webapp/graphite/readers.py -> build/lib/graphite
copying webapp/graphite/node.py -> build/lib/graphite
copying webapp/graphite/util.py -> build/lib/graphite
copying webapp/graphite/app_settings.py -> build/lib/graphite
copying webapp/graphite/views.py -> build/lib/graphite
copying webapp/graphite/carbonlink.py -> build/lib/graphite
copying webapp/graphite/storage.py -> build/lib/graphite
copying webapp/graphite/remote_storage.py -> build/lib/graphite
copying webapp/graphite/manage.py -> build/lib/graphite
copying webapp/graphite/__init__.py -> build/lib/graphite
copying webapp/graphite/logger.py -> build/lib/graphite
copying webapp/graphite/settings.py -> build/lib/graphite
copying webapp/graphite/finders.py -> build/lib/graphite
creating build/lib/graphite/account
copying webapp/graphite/account/urls.py -> build/lib/graphite/account
copying webapp/graphite/account/ldapBackend.py -> build/lib/graphite/account
copying webapp/graphite/account/views.py -> build/lib/graphite/account
copying webapp/graphite/account/admin.py -> build/lib/graphite/account
copying webapp/graphite/account/models.py -> build/lib/graphite/account
copying webapp/graphite/account/__init__.py -> build/lib/graphite/account
creating build/lib/graphite/browser
copying webapp/graphite/browser/urls.py -> build/lib/graphite/browser
copying webapp/graphite/browser/views.py -> build/lib/graphite/browser
copying webapp/graphite/browser/__init__.py -> build/lib/graphite/browser
creating build/lib/graphite/cli
copying webapp/graphite/cli/urls.py -> build/lib/graphite/cli
copying webapp/graphite/cli/views.py -> build/lib/graphite/cli
copying webapp/graphite/cli/completer.py -> build/lib/graphite/cli
copying webapp/graphite/cli/commands.py -> build/lib/graphite/cli
copying webapp/graphite/cli/__init__.py -> build/lib/graphite/cli
copying webapp/graphite/cli/parser.py -> build/lib/graphite/cli
creating build/lib/graphite/composer
copying webapp/graphite/composer/urls.py -> build/lib/graphite/composer
copying webapp/graphite/composer/views.py -> build/lib/graphite/composer
copying webapp/graphite/composer/__init__.py -> build/lib/graphite/composer
creating build/lib/graphite/render
copying webapp/graphite/render/functions_test.py -> build/lib/graphite/render
copying webapp/graphite/render/urls.py -> build/lib/graphite/render
copying webapp/graphite/render/grammar.py -> build/lib/graphite/render
copying webapp/graphite/render/functions.py -> build/lib/graphite/render
copying webapp/graphite/render/views.py -> build/lib/graphite/render
copying webapp/graphite/render/attime.py -> build/lib/graphite/render
copying webapp/graphite/render/hashing.py -> build/lib/graphite/render
copying webapp/graphite/render/glyph.py -> build/lib/graphite/render
copying webapp/graphite/render/datalib.py -> build/lib/graphite/render
copying webapp/graphite/render/__init__.py -> build/lib/graphite/render
copying webapp/graphite/render/evaluator.py -> build/lib/graphite/render
creating build/lib/graphite/whitelist
copying webapp/graphite/whitelist/urls.py -> build/lib/graphite/whitelist
copying webapp/graphite/whitelist/views.py -> build/lib/graphite/whitelist
copying webapp/graphite/whitelist/__init__.py -> build/lib/graphite/whitelist
creating build/lib/graphite/metrics
copying webapp/graphite/metrics/urls.py -> build/lib/graphite/metrics
copying webapp/graphite/metrics/search.py -> build/lib/graphite/metrics
copying webapp/graphite/metrics/views.py -> build/lib/graphite/metrics
copying webapp/graphite/metrics/__init__.py -> build/lib/graphite/metrics
creating build/lib/graphite/dashboard
copying webapp/graphite/dashboard/urls.py -> build/lib/graphite/dashboard
copying webapp/graphite/dashboard/send_graph.py -> build/lib/graphite/dashboard
copying webapp/graphite/dashboard/views.py -> build/lib/graphite/dashboard
copying webapp/graphite/dashboard/admin.py -> build/lib/graphite/dashboard
copying webapp/graphite/dashboard/models.py -> build/lib/graphite/dashboard
copying webapp/graphite/dashboard/__init__.py -> build/lib/graphite/dashboard
creating build/lib/graphite/graphlot
copying webapp/graphite/graphlot/urls.py -> build/lib/graphite/graphlot
copying webapp/graphite/graphlot/views.py -> build/lib/graphite/graphlot
copying webapp/graphite/graphlot/__init__.py -> build/lib/graphite/graphlot
creating build/lib/graphite/events
copying webapp/graphite/events/urls.py -> build/lib/graphite/events
copying webapp/graphite/events/views.py -> build/lib/graphite/events
copying webapp/graphite/events/admin.py -> build/lib/graphite/events
copying webapp/graphite/events/models.py -> build/lib/graphite/events
copying webapp/graphite/events/__init__.py -> build/lib/graphite/events
creating build/lib/graphite/version
copying webapp/graphite/version/urls.py -> build/lib/graphite/version
copying webapp/graphite/version/views.py -> build/lib/graphite/version
copying webapp/graphite/version/__init__.py -> build/lib/graphite/version
creating build/lib/graphite/thirdparty
copying webapp/graphite/thirdparty/pyparsing.py -> build/lib/graphite/thirdparty
copying webapp/graphite/thirdparty/__init__.py -> build/lib/graphite/thirdparty
creating build/lib/graphite/thirdparty/pytz
copying webapp/graphite/thirdparty/pytz/tzinfo.py -> build/lib/graphite/thirdparty/pytz
copying webapp/graphite/thirdparty/pytz/exceptions.py -> build/lib/graphite/thirdparty/pytz
copying webapp/graphite/thirdparty/pytz/reference.py -> build/lib/graphite/thirdparty/pytz
copying webapp/graphite/thirdparty/pytz/__init__.py -> build/lib/graphite/thirdparty/pytz
copying webapp/graphite/thirdparty/pytz/tzfile.py -> build/lib/graphite/thirdparty/pytz
creating build/lib/graphite/templates
copying webapp/graphite/templates/500.html -> build/lib/graphite/templates
copying webapp/graphite/templates/dashboardHelp.html -> build/lib/graphite/templates
copying webapp/graphite/templates/events.html -> build/lib/graphite/templates
copying webapp/graphite/templates/browser.html -> build/lib/graphite/templates
copying webapp/graphite/templates/dashboard.html -> build/lib/graphite/templates
copying webapp/graphite/templates/cli.html -> build/lib/graphite/templates
copying webapp/graphite/templates/browserHeader.html -> build/lib/graphite/templates
copying webapp/graphite/templates/login.html -> build/lib/graphite/templates
copying webapp/graphite/templates/graphlot.html -> build/lib/graphite/templates
copying webapp/graphite/templates/version.html -> build/lib/graphite/templates
copying webapp/graphite/templates/editProfile.html -> build/lib/graphite/templates
copying webapp/graphite/templates/composer.html -> build/lib/graphite/templates
copying webapp/graphite/templates/event.html -> build/lib/graphite/templates
copying webapp/graphite/local_settings.py.example -> build/lib/graphite
running build_scripts
creating build/scripts-2.6
copying bin/build-index.sh -> build/scripts-2.6
copying and adjusting bin/run-graphite-devel-server.py -> build/scripts-2.6
changing mode of build/scripts-2.6/run-graphite-devel-server.py from 644 to 755
running install_lib
creating /home/mon/graphite/webapp
creating /home/mon/graphite/webapp/graphite
copying build/lib/graphite/intervals.py -> /home/mon/graphite/webapp/graphite
copying build/lib/graphite/urls.py -> /home/mon/graphite/webapp/graphite
copying build/lib/graphite/readers.py -> /home/mon/graphite/webapp/graphite
creating /home/mon/graphite/webapp/graphite/render
copying build/lib/graphite/render/functions_test.py -> /home/mon/graphite/webapp/graphite/render
copying build/lib/graphite/render/urls.py -> /home/mon/graphite/webapp/graphite/render
copying build/lib/graphite/render/grammar.py -> /home/mon/graphite/webapp/graphite/render
copying build/lib/graphite/render/functions.py -> /home/mon/graphite/webapp/graphite/render
copying build/lib/graphite/render/views.py -> /home/mon/graphite/webapp/graphite/render
copying build/lib/graphite/render/attime.py -> /home/mon/graphite/webapp/graphite/render
copying build/lib/graphite/render/hashing.py -> /home/mon/graphite/webapp/graphite/render
copying build/lib/graphite/render/glyph.py -> /home/mon/graphite/webapp/graphite/render
copying build/lib/graphite/render/datalib.py -> /home/mon/graphite/webapp/graphite/render
copying build/lib/graphite/render/__init__.py -> /home/mon/graphite/webapp/graphite/render
copying build/lib/graphite/render/evaluator.py -> /home/mon/graphite/webapp/graphite/render
creating /home/mon/graphite/webapp/graphite/whitelist
copying build/lib/graphite/whitelist/urls.py -> /home/mon/graphite/webapp/graphite/whitelist
copying build/lib/graphite/whitelist/views.py -> /home/mon/graphite/webapp/graphite/whitelist
copying build/lib/graphite/whitelist/__init__.py -> /home/mon/graphite/webapp/graphite/whitelist
creating /home/mon/graphite/webapp/graphite/composer
copying build/lib/graphite/composer/urls.py -> /home/mon/graphite/webapp/graphite/composer
copying build/lib/graphite/composer/views.py -> /home/mon/graphite/webapp/graphite/composer
copying build/lib/graphite/composer/__init__.py -> /home/mon/graphite/webapp/graphite/composer
copying build/lib/graphite/node.py -> /home/mon/graphite/webapp/graphite
copying build/lib/graphite/util.py -> /home/mon/graphite/webapp/graphite
copying build/lib/graphite/local_settings.py.example -> /home/mon/graphite/webapp/graphite
copying build/lib/graphite/app_settings.py -> /home/mon/graphite/webapp/graphite
creating /home/mon/graphite/webapp/graphite/thirdparty
copying build/lib/graphite/thirdparty/pyparsing.py -> /home/mon/graphite/webapp/graphite/thirdparty
creating /home/mon/graphite/webapp/graphite/thirdparty/pytz
copying build/lib/graphite/thirdparty/pytz/tzinfo.py -> /home/mon/graphite/webapp/graphite/thirdparty/pytz
copying build/lib/graphite/thirdparty/pytz/exceptions.py -> /home/mon/graphite/webapp/graphite/thirdparty/pytz
copying build/lib/graphite/thirdparty/pytz/reference.py -> /home/mon/graphite/webapp/graphite/thirdparty/pytz
copying build/lib/graphite/thirdparty/pytz/__init__.py -> /home/mon/graphite/webapp/graphite/thirdparty/pytz
copying build/lib/graphite/thirdparty/pytz/tzfile.py -> /home/mon/graphite/webapp/graphite/thirdparty/pytz
copying build/lib/graphite/thirdparty/__init__.py -> /home/mon/graphite/webapp/graphite/thirdparty
creating /home/mon/graphite/webapp/graphite/browser
copying build/lib/graphite/browser/urls.py -> /home/mon/graphite/webapp/graphite/browser
copying build/lib/graphite/browser/views.py -> /home/mon/graphite/webapp/graphite/browser
copying build/lib/graphite/browser/__init__.py -> /home/mon/graphite/webapp/graphite/browser
copying build/lib/graphite/views.py -> /home/mon/graphite/webapp/graphite
copying build/lib/graphite/carbonlink.py -> /home/mon/graphite/webapp/graphite
creating /home/mon/graphite/webapp/graphite/account
copying build/lib/graphite/account/urls.py -> /home/mon/graphite/webapp/graphite/account
copying build/lib/graphite/account/ldapBackend.py -> /home/mon/graphite/webapp/graphite/account
copying build/lib/graphite/account/views.py -> /home/mon/graphite/webapp/graphite/account
copying build/lib/graphite/account/admin.py -> /home/mon/graphite/webapp/graphite/account
copying build/lib/graphite/account/models.py -> /home/mon/graphite/webapp/graphite/account
copying build/lib/graphite/account/__init__.py -> /home/mon/graphite/webapp/graphite/account
creating /home/mon/graphite/webapp/graphite/graphlot
copying build/lib/graphite/graphlot/urls.py -> /home/mon/graphite/webapp/graphite/graphlot
copying build/lib/graphite/graphlot/views.py -> /home/mon/graphite/webapp/graphite/graphlot
copying build/lib/graphite/graphlot/__init__.py -> /home/mon/graphite/webapp/graphite/graphlot
creating /home/mon/graphite/webapp/graphite/events
copying build/lib/graphite/events/urls.py -> /home/mon/graphite/webapp/graphite/events
copying build/lib/graphite/events/views.py -> /home/mon/graphite/webapp/graphite/events
copying build/lib/graphite/events/admin.py -> /home/mon/graphite/webapp/graphite/events
copying build/lib/graphite/events/models.py -> /home/mon/graphite/webapp/graphite/events
copying build/lib/graphite/events/__init__.py -> /home/mon/graphite/webapp/graphite/events
copying build/lib/graphite/storage.py -> /home/mon/graphite/webapp/graphite
copying build/lib/graphite/remote_storage.py -> /home/mon/graphite/webapp/graphite
creating /home/mon/graphite/webapp/graphite/templates
copying build/lib/graphite/templates/500.html -> /home/mon/graphite/webapp/graphite/templates
copying build/lib/graphite/templates/dashboardHelp.html -> /home/mon/graphite/webapp/graphite/templates
copying build/lib/graphite/templates/events.html -> /home/mon/graphite/webapp/graphite/templates
copying build/lib/graphite/templates/browser.html -> /home/mon/graphite/webapp/graphite/templates
copying build/lib/graphite/templates/dashboard.html -> /home/mon/graphite/webapp/graphite/templates
copying build/lib/graphite/templates/cli.html -> /home/mon/graphite/webapp/graphite/templates
copying build/lib/graphite/templates/browserHeader.html -> /home/mon/graphite/webapp/graphite/templates
copying build/lib/graphite/templates/login.html -> /home/mon/graphite/webapp/graphite/templates
copying build/lib/graphite/templates/graphlot.html -> /home/mon/graphite/webapp/graphite/templates
copying build/lib/graphite/templates/version.html -> /home/mon/graphite/webapp/graphite/templates
copying build/lib/graphite/templates/editProfile.html -> /home/mon/graphite/webapp/graphite/templates
copying build/lib/graphite/templates/composer.html -> /home/mon/graphite/webapp/graphite/templates
copying build/lib/graphite/templates/event.html -> /home/mon/graphite/webapp/graphite/templates
creating /home/mon/graphite/webapp/graphite/dashboard
copying build/lib/graphite/dashboard/urls.py -> /home/mon/graphite/webapp/graphite/dashboard
copying build/lib/graphite/dashboard/send_graph.py -> /home/mon/graphite/webapp/graphite/dashboard
copying build/lib/graphite/dashboard/views.py -> /home/mon/graphite/webapp/graphite/dashboard
copying build/lib/graphite/dashboard/admin.py -> /home/mon/graphite/webapp/graphite/dashboard
copying build/lib/graphite/dashboard/models.py -> /home/mon/graphite/webapp/graphite/dashboard
copying build/lib/graphite/dashboard/__init__.py -> /home/mon/graphite/webapp/graphite/dashboard
creating /home/mon/graphite/webapp/graphite/metrics
copying build/lib/graphite/metrics/urls.py -> /home/mon/graphite/webapp/graphite/metrics
copying build/lib/graphite/metrics/search.py -> /home/mon/graphite/webapp/graphite/metrics
copying build/lib/graphite/metrics/views.py -> /home/mon/graphite/webapp/graphite/metrics
copying build/lib/graphite/metrics/__init__.py -> /home/mon/graphite/webapp/graphite/metrics
creating /home/mon/graphite/webapp/graphite/cli
copying build/lib/graphite/cli/urls.py -> /home/mon/graphite/webapp/graphite/cli
copying build/lib/graphite/cli/views.py -> /home/mon/graphite/webapp/graphite/cli
copying build/lib/graphite/cli/completer.py -> /home/mon/graphite/webapp/graphite/cli
copying build/lib/graphite/cli/commands.py -> /home/mon/graphite/webapp/graphite/cli
copying build/lib/graphite/cli/__init__.py -> /home/mon/graphite/webapp/graphite/cli
copying build/lib/graphite/cli/parser.py -> /home/mon/graphite/webapp/graphite/cli
creating /home/mon/graphite/webapp/graphite/version
copying build/lib/graphite/version/urls.py -> /home/mon/graphite/webapp/graphite/version
copying build/lib/graphite/version/views.py -> /home/mon/graphite/webapp/graphite/version
copying build/lib/graphite/version/__init__.py -> /home/mon/graphite/webapp/graphite/version
copying build/lib/graphite/manage.py -> /home/mon/graphite/webapp/graphite
copying build/lib/graphite/__init__.py -> /home/mon/graphite/webapp/graphite
copying build/lib/graphite/logger.py -> /home/mon/graphite/webapp/graphite
copying build/lib/graphite/settings.py -> /home/mon/graphite/webapp/graphite
copying build/lib/graphite/finders.py -> /home/mon/graphite/webapp/graphite
byte-compiling /home/mon/graphite/webapp/graphite/intervals.py to intervals.pyc
byte-compiling /home/mon/graphite/webapp/graphite/urls.py to urls.pyc
byte-compiling /home/mon/graphite/webapp/graphite/readers.py to readers.pyc
byte-compiling /home/mon/graphite/webapp/graphite/render/functions_test.py to functions_test.pyc
byte-compiling /home/mon/graphite/webapp/graphite/render/urls.py to urls.pyc
byte-compiling /home/mon/graphite/webapp/graphite/render/grammar.py to grammar.pyc
byte-compiling /home/mon/graphite/webapp/graphite/render/functions.py to functions.pyc
byte-compiling /home/mon/graphite/webapp/graphite/render/views.py to views.pyc
byte-compiling /home/mon/graphite/webapp/graphite/render/attime.py to attime.pyc
byte-compiling /home/mon/graphite/webapp/graphite/render/hashing.py to hashing.pyc
byte-compiling /home/mon/graphite/webapp/graphite/render/glyph.py to glyph.pyc
byte-compiling /home/mon/graphite/webapp/graphite/render/datalib.py to datalib.pyc
byte-compiling /home/mon/graphite/webapp/graphite/render/__init__.py to __init__.pyc
byte-compiling /home/mon/graphite/webapp/graphite/render/evaluator.py to evaluator.pyc
byte-compiling /home/mon/graphite/webapp/graphite/whitelist/urls.py to urls.pyc
byte-compiling /home/mon/graphite/webapp/graphite/whitelist/views.py to views.pyc
byte-compiling /home/mon/graphite/webapp/graphite/whitelist/__init__.py to __init__.pyc
byte-compiling /home/mon/graphite/webapp/graphite/composer/urls.py to urls.pyc
byte-compiling /home/mon/graphite/webapp/graphite/composer/views.py to views.pyc
byte-compiling /home/mon/graphite/webapp/graphite/composer/__init__.py to __init__.pyc
byte-compiling /home/mon/graphite/webapp/graphite/node.py to node.pyc
byte-compiling /home/mon/graphite/webapp/graphite/util.py to util.pyc
byte-compiling /home/mon/graphite/webapp/graphite/app_settings.py to app_settings.pyc
byte-compiling /home/mon/graphite/webapp/graphite/thirdparty/pyparsing.py to pyparsing.pyc
byte-compiling /home/mon/graphite/webapp/graphite/thirdparty/pytz/tzinfo.py to tzinfo.pyc
byte-compiling /home/mon/graphite/webapp/graphite/thirdparty/pytz/exceptions.py to exceptions.pyc
byte-compiling /home/mon/graphite/webapp/graphite/thirdparty/pytz/reference.py to reference.pyc
byte-compiling /home/mon/graphite/webapp/graphite/thirdparty/pytz/__init__.py to __init__.pyc
byte-compiling /home/mon/graphite/webapp/graphite/thirdparty/pytz/tzfile.py to tzfile.pyc
byte-compiling /home/mon/graphite/webapp/graphite/thirdparty/__init__.py to __init__.pyc
byte-compiling /home/mon/graphite/webapp/graphite/browser/urls.py to urls.pyc
byte-compiling /home/mon/graphite/webapp/graphite/browser/views.py to views.pyc
byte-compiling /home/mon/graphite/webapp/graphite/browser/__init__.py to __init__.pyc
byte-compiling /home/mon/graphite/webapp/graphite/views.py to views.pyc
byte-compiling /home/mon/graphite/webapp/graphite/carbonlink.py to carbonlink.pyc
byte-compiling /home/mon/graphite/webapp/graphite/account/urls.py to urls.pyc
byte-compiling /home/mon/graphite/webapp/graphite/account/ldapBackend.py to ldapBackend.pyc
byte-compiling /home/mon/graphite/webapp/graphite/account/views.py to views.pyc
byte-compiling /home/mon/graphite/webapp/graphite/account/admin.py to admin.pyc
byte-compiling /home/mon/graphite/webapp/graphite/account/models.py to models.pyc
byte-compiling /home/mon/graphite/webapp/graphite/account/__init__.py to __init__.pyc
byte-compiling /home/mon/graphite/webapp/graphite/graphlot/urls.py to urls.pyc
byte-compiling /home/mon/graphite/webapp/graphite/graphlot/views.py to views.pyc
byte-compiling /home/mon/graphite/webapp/graphite/graphlot/__init__.py to __init__.pyc
byte-compiling /home/mon/graphite/webapp/graphite/events/urls.py to urls.pyc
byte-compiling /home/mon/graphite/webapp/graphite/events/views.py to views.pyc
byte-compiling /home/mon/graphite/webapp/graphite/events/admin.py to admin.pyc
byte-compiling /home/mon/graphite/webapp/graphite/events/models.py to models.pyc
byte-compiling /home/mon/graphite/webapp/graphite/events/__init__.py to __init__.pyc
byte-compiling /home/mon/graphite/webapp/graphite/storage.py to storage.pyc
byte-compiling /home/mon/graphite/webapp/graphite/remote_storage.py to remote_storage.pyc
byte-compiling /home/mon/graphite/webapp/graphite/dashboard/urls.py to urls.pyc
byte-compiling /home/mon/graphite/webapp/graphite/dashboard/send_graph.py to send_graph.pyc
byte-compiling /home/mon/graphite/webapp/graphite/dashboard/views.py to views.pyc
byte-compiling /home/mon/graphite/webapp/graphite/dashboard/admin.py to admin.pyc
byte-compiling /home/mon/graphite/webapp/graphite/dashboard/models.py to models.pyc
byte-compiling /home/mon/graphite/webapp/graphite/dashboard/__init__.py to __init__.pyc
byte-compiling /home/mon/graphite/webapp/graphite/metrics/urls.py to urls.pyc
byte-compiling /home/mon/graphite/webapp/graphite/metrics/search.py to search.pyc
byte-compiling /home/mon/graphite/webapp/graphite/metrics/views.py to views.pyc
byte-compiling /home/mon/graphite/webapp/graphite/metrics/__init__.py to __init__.pyc
byte-compiling /home/mon/graphite/webapp/graphite/cli/urls.py to urls.pyc
byte-compiling /home/mon/graphite/webapp/graphite/cli/views.py to views.pyc
byte-compiling /home/mon/graphite/webapp/graphite/cli/completer.py to completer.pyc
byte-compiling /home/mon/graphite/webapp/graphite/cli/commands.py to commands.pyc
byte-compiling /home/mon/graphite/webapp/graphite/cli/__init__.py to __init__.pyc
byte-compiling /home/mon/graphite/webapp/graphite/cli/parser.py to parser.pyc
byte-compiling /home/mon/graphite/webapp/graphite/version/urls.py to urls.pyc
byte-compiling /home/mon/graphite/webapp/graphite/version/views.py to views.pyc
byte-compiling /home/mon/graphite/webapp/graphite/version/__init__.py to __init__.pyc
byte-compiling /home/mon/graphite/webapp/graphite/manage.py to manage.pyc
byte-compiling /home/mon/graphite/webapp/graphite/__init__.py to __init__.pyc
byte-compiling /home/mon/graphite/webapp/graphite/logger.py to logger.pyc
byte-compiling /home/mon/graphite/webapp/graphite/settings.py to settings.pyc
byte-compiling /home/mon/graphite/webapp/graphite/finders.py to finders.pyc
running install_scripts
copying build/scripts-2.6/build-index.sh -> /home/mon/graphite/bin
copying build/scripts-2.6/run-graphite-devel-server.py -> /home/mon/graphite/bin
changing mode of /home/mon/graphite/bin/build-index.sh to 755
changing mode of /home/mon/graphite/bin/run-graphite-devel-server.py to 755
running install_data
creating /home/mon/graphite/webapp/content
creating /home/mon/graphite/webapp/content/js
copying webapp/content/js/dashboard.js -> /home/mon/graphite/webapp/content/js
copying webapp/content/js/composer.js -> /home/mon/graphite/webapp/content/js
copying webapp/content/js/jquery.graphite.js -> /home/mon/graphite/webapp/content/js
copying webapp/content/js/jquery.flot.selection.js -> /home/mon/graphite/webapp/content/js
copying webapp/content/js/cli.js -> /home/mon/graphite/webapp/content/js
copying webapp/content/js/completer.js -> /home/mon/graphite/webapp/content/js
copying webapp/content/js/jquery.flot.crosshair.js -> /home/mon/graphite/webapp/content/js
copying webapp/content/js/composer_widgets.js -> /home/mon/graphite/webapp/content/js
copying webapp/content/js/jquery.js -> /home/mon/graphite/webapp/content/js
copying webapp/content/js/jquery.flot.js -> /home/mon/graphite/webapp/content/js
copying webapp/content/js/jquery.autocomplete.js -> /home/mon/graphite/webapp/content/js
copying webapp/content/js/browser.js -> /home/mon/graphite/webapp/content/js
creating /home/mon/graphite/webapp/content/js/ext
creating /home/mon/graphite/webapp/content/js/ext/resources
creating /home/mon/graphite/webapp/content/js/ext/resources/css
creating /home/mon/graphite/webapp/content/js/ext/resources/css/visual
copying webapp/content/js/ext/resources/css/visual/panel.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/visual
copying webapp/content/js/ext/resources/css/visual/debug.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/visual
copying webapp/content/js/ext/resources/css/visual/box.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/visual
copying webapp/content/js/ext/resources/css/visual/pivotgrid.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/visual
copying webapp/content/js/ext/resources/css/visual/menu.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/visual
copying webapp/content/js/ext/resources/css/visual/editor.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/visual
copying webapp/content/js/ext/resources/css/visual/date-picker.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/visual
copying webapp/content/js/ext/resources/css/visual/combo.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/visual
copying webapp/content/js/ext/resources/css/visual/grid.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/visual
copying webapp/content/js/ext/resources/css/visual/layout.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/visual
copying webapp/content/js/ext/resources/css/visual/progress.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/visual
copying webapp/content/js/ext/resources/css/visual/dialog.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/visual
copying webapp/content/js/ext/resources/css/visual/form.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/visual
copying webapp/content/js/ext/resources/css/visual/tree.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/visual
copying webapp/content/js/ext/resources/css/visual/resizable.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/visual
copying webapp/content/js/ext/resources/css/visual/list-view.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/visual
copying webapp/content/js/ext/resources/css/visual/dd.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/visual
copying webapp/content/js/ext/resources/css/visual/toolbar.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/visual
copying webapp/content/js/ext/resources/css/visual/button.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/visual
copying webapp/content/js/ext/resources/css/visual/qtips.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/visual
copying webapp/content/js/ext/resources/css/visual/window.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/visual
copying webapp/content/js/ext/resources/css/visual/slider.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/visual
copying webapp/content/js/ext/resources/css/visual/tabs.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/visual
copying webapp/content/js/ext/resources/css/visual/borders.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/visual
copying webapp/content/js/ext/resources/css/visual/core.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/visual
creating /home/mon/graphite/webapp/content/js/ext/resources/css/theme-access
copying webapp/content/js/ext/resources/css/theme-access/panel.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/theme-access
copying webapp/content/js/ext/resources/css/theme-access/debug.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/theme-access
copying webapp/content/js/ext/resources/css/theme-access/box.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/theme-access
copying webapp/content/js/ext/resources/css/theme-access/menu.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/theme-access
copying webapp/content/js/ext/resources/css/theme-access/editor.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/theme-access
copying webapp/content/js/ext/resources/css/theme-access/date-picker.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/theme-access
copying webapp/content/js/ext/resources/css/theme-access/combo.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/theme-access
copying webapp/content/js/ext/resources/css/theme-access/grid.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/theme-access
copying webapp/content/js/ext/resources/css/theme-access/layout.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/theme-access
copying webapp/content/js/ext/resources/css/theme-access/progress.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/theme-access
copying webapp/content/js/ext/resources/css/theme-access/dialog.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/theme-access
copying webapp/content/js/ext/resources/css/theme-access/form.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/theme-access
copying webapp/content/js/ext/resources/css/theme-access/tree.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/theme-access
copying webapp/content/js/ext/resources/css/theme-access/resizable.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/theme-access
copying webapp/content/js/ext/resources/css/theme-access/list-view.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/theme-access
copying webapp/content/js/ext/resources/css/theme-access/dd.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/theme-access
copying webapp/content/js/ext/resources/css/theme-access/toolbar.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/theme-access
copying webapp/content/js/ext/resources/css/theme-access/button.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/theme-access
copying webapp/content/js/ext/resources/css/theme-access/qtips.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/theme-access
copying webapp/content/js/ext/resources/css/theme-access/window.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/theme-access
copying webapp/content/js/ext/resources/css/theme-access/slider.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/theme-access
copying webapp/content/js/ext/resources/css/theme-access/tabs.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/theme-access
copying webapp/content/js/ext/resources/css/theme-access/borders.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/theme-access
copying webapp/content/js/ext/resources/css/theme-access/core.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/theme-access
creating /home/mon/graphite/webapp/content/js/ext/resources/images
creating /home/mon/graphite/webapp/content/js/ext/resources/images/default
creating /home/mon/graphite/webapp/content/js/ext/resources/images/default/tree
copying webapp/content/js/ext/resources/images/default/tree/arrows.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/tree
copying webapp/content/js/ext/resources/images/default/tree/drop-no.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/tree
copying webapp/content/js/ext/resources/images/default/tree/folder.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/tree
copying webapp/content/js/ext/resources/images/default/tree/drop-under.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/tree
copying webapp/content/js/ext/resources/images/default/tree/elbow-line.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/tree
copying webapp/content/js/ext/resources/images/default/tree/elbow-plus-nl.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/tree
copying webapp/content/js/ext/resources/images/default/tree/drop-over.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/tree
copying webapp/content/js/ext/resources/images/default/tree/s.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/tree
copying webapp/content/js/ext/resources/images/default/tree/drop-yes.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/tree
copying webapp/content/js/ext/resources/images/default/tree/elbow-end.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/tree
copying webapp/content/js/ext/resources/images/default/tree/elbow-end-plus-nl.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/tree
copying webapp/content/js/ext/resources/images/default/tree/elbow-minus.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/tree
copying webapp/content/js/ext/resources/images/default/tree/drop-add.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/tree
copying webapp/content/js/ext/resources/images/default/tree/elbow.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/tree
copying webapp/content/js/ext/resources/images/default/tree/elbow-end-plus.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/tree
copying webapp/content/js/ext/resources/images/default/tree/folder-open.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/tree
copying webapp/content/js/ext/resources/images/default/tree/elbow-plus.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/tree
copying webapp/content/js/ext/resources/images/default/tree/leaf.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/tree
copying webapp/content/js/ext/resources/images/default/tree/elbow-minus-nl.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/tree
copying webapp/content/js/ext/resources/images/default/tree/drop-between.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/tree
copying webapp/content/js/ext/resources/images/default/tree/elbow-end-minus-nl.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/tree
copying webapp/content/js/ext/resources/images/default/tree/elbow-end-minus.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/tree
copying webapp/content/js/ext/resources/images/default/tree/loading.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/tree
creating /home/mon/graphite/webapp/content/js/ext/adapter
creating /home/mon/graphite/webapp/content/js/ext/adapter/jquery
copying webapp/content/js/ext/adapter/jquery/ext-jquery-adapter-debug.js -> /home/mon/graphite/webapp/content/js/ext/adapter/jquery
copying webapp/content/js/ext/adapter/jquery/ext-jquery-adapter.js -> /home/mon/graphite/webapp/content/js/ext/adapter/jquery
creating /home/mon/graphite/webapp/content/js/ext/resources/css/theme-gray
copying webapp/content/js/ext/resources/css/theme-gray/panel.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/theme-gray
copying webapp/content/js/ext/resources/css/theme-gray/debug.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/theme-gray
copying webapp/content/js/ext/resources/css/theme-gray/box.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/theme-gray
copying webapp/content/js/ext/resources/css/theme-gray/pivotgrid.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/theme-gray
copying webapp/content/js/ext/resources/css/theme-gray/menu.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/theme-gray
copying webapp/content/js/ext/resources/css/theme-gray/editor.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/theme-gray
copying webapp/content/js/ext/resources/css/theme-gray/date-picker.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/theme-gray
copying webapp/content/js/ext/resources/css/theme-gray/combo.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/theme-gray
copying webapp/content/js/ext/resources/css/theme-gray/grid.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/theme-gray
copying webapp/content/js/ext/resources/css/theme-gray/layout.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/theme-gray
copying webapp/content/js/ext/resources/css/theme-gray/progress.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/theme-gray
copying webapp/content/js/ext/resources/css/theme-gray/dialog.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/theme-gray
copying webapp/content/js/ext/resources/css/theme-gray/form.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/theme-gray
copying webapp/content/js/ext/resources/css/theme-gray/tree.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/theme-gray
copying webapp/content/js/ext/resources/css/theme-gray/resizable.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/theme-gray
copying webapp/content/js/ext/resources/css/theme-gray/list-view.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/theme-gray
copying webapp/content/js/ext/resources/css/theme-gray/dd.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/theme-gray
copying webapp/content/js/ext/resources/css/theme-gray/toolbar.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/theme-gray
copying webapp/content/js/ext/resources/css/theme-gray/button.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/theme-gray
copying webapp/content/js/ext/resources/css/theme-gray/qtips.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/theme-gray
copying webapp/content/js/ext/resources/css/theme-gray/window.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/theme-gray
copying webapp/content/js/ext/resources/css/theme-gray/slider.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/theme-gray
copying webapp/content/js/ext/resources/css/theme-gray/tabs.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/theme-gray
copying webapp/content/js/ext/resources/css/theme-gray/borders.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/theme-gray
copying webapp/content/js/ext/resources/css/theme-gray/core.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/theme-gray
creating /home/mon/graphite/webapp/content/js/scriptaculous
copying webapp/content/js/scriptaculous/dragdrop.js -> /home/mon/graphite/webapp/content/js/scriptaculous
copying webapp/content/js/scriptaculous/controls.js -> /home/mon/graphite/webapp/content/js/scriptaculous
copying webapp/content/js/scriptaculous/builder.js -> /home/mon/graphite/webapp/content/js/scriptaculous
copying webapp/content/js/scriptaculous/slider.js -> /home/mon/graphite/webapp/content/js/scriptaculous
copying webapp/content/js/scriptaculous/effects.js -> /home/mon/graphite/webapp/content/js/scriptaculous
copying webapp/content/js/scriptaculous/scriptaculous.js -> /home/mon/graphite/webapp/content/js/scriptaculous
copying webapp/content/js/ext/resources/css/xtheme-blue.css -> /home/mon/graphite/webapp/content/js/ext/resources/css
copying webapp/content/js/ext/resources/css/reset-min.css -> /home/mon/graphite/webapp/content/js/ext/resources/css
copying webapp/content/js/ext/resources/css/debug.css -> /home/mon/graphite/webapp/content/js/ext/resources/css
copying webapp/content/js/ext/resources/css/yourtheme.css -> /home/mon/graphite/webapp/content/js/ext/resources/css
copying webapp/content/js/ext/resources/css/ext-all-notheme.css -> /home/mon/graphite/webapp/content/js/ext/resources/css
copying webapp/content/js/ext/resources/css/README.txt -> /home/mon/graphite/webapp/content/js/ext/resources/css
copying webapp/content/js/ext/resources/css/xtheme-access.css -> /home/mon/graphite/webapp/content/js/ext/resources/css
copying webapp/content/js/ext/resources/css/xtheme-gray.css -> /home/mon/graphite/webapp/content/js/ext/resources/css
copying webapp/content/js/ext/resources/css/ext-all.css -> /home/mon/graphite/webapp/content/js/ext/resources/css
creating /home/mon/graphite/webapp/content/js/ext/resources/images/default/box
copying webapp/content/js/ext/resources/images/default/box/l-blue.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/box
copying webapp/content/js/ext/resources/images/default/box/tb.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/box
copying webapp/content/js/ext/resources/images/default/box/r-blue.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/box
copying webapp/content/js/ext/resources/images/default/box/r.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/box
copying webapp/content/js/ext/resources/images/default/box/tb-blue.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/box
copying webapp/content/js/ext/resources/images/default/box/corners-blue.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/box
copying webapp/content/js/ext/resources/images/default/box/corners.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/box
copying webapp/content/js/ext/resources/images/default/box/l.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/box
creating /home/mon/graphite/webapp/content/js/ext/resources/images/default/editor
copying webapp/content/js/ext/resources/images/default/editor/tb-sprite.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/editor
creating /home/mon/graphite/webapp/content/js/ext/examples
creating /home/mon/graphite/webapp/content/js/ext/examples/shared
creating /home/mon/graphite/webapp/content/js/ext/examples/shared/icons
creating /home/mon/graphite/webapp/content/js/ext/examples/shared/icons/fam
copying webapp/content/js/ext/examples/shared/icons/fam/user_orange.png -> /home/mon/graphite/webapp/content/js/ext/examples/shared/icons/fam
copying webapp/content/js/ext/examples/shared/icons/fam/user.gif -> /home/mon/graphite/webapp/content/js/ext/examples/shared/icons/fam
copying webapp/content/js/ext/examples/shared/icons/fam/user_comment.png -> /home/mon/graphite/webapp/content/js/ext/examples/shared/icons/fam
copying webapp/content/js/ext/examples/shared/icons/fam/SILK.txt -> /home/mon/graphite/webapp/content/js/ext/examples/shared/icons/fam
copying webapp/content/js/ext/examples/shared/icons/fam/error.png -> /home/mon/graphite/webapp/content/js/ext/examples/shared/icons/fam
copying webapp/content/js/ext/examples/shared/icons/fam/user_edit.png -> /home/mon/graphite/webapp/content/js/ext/examples/shared/icons/fam
copying webapp/content/js/ext/examples/shared/icons/fam/application_go.png -> /home/mon/graphite/webapp/content/js/ext/examples/shared/icons/fam
copying webapp/content/js/ext/examples/shared/icons/fam/connect.png -> /home/mon/graphite/webapp/content/js/ext/examples/shared/icons/fam
copying webapp/content/js/ext/examples/shared/icons/fam/image_add.png -> /home/mon/graphite/webapp/content/js/ext/examples/shared/icons/fam
copying webapp/content/js/ext/examples/shared/icons/fam/folder_go.png -> /home/mon/graphite/webapp/content/js/ext/examples/shared/icons/fam
copying webapp/content/js/ext/examples/shared/icons/fam/user_delete.gif -> /home/mon/graphite/webapp/content/js/ext/examples/shared/icons/fam
copying webapp/content/js/ext/examples/shared/icons/fam/feed_delete.png -> /home/mon/graphite/webapp/content/js/ext/examples/shared/icons/fam
copying webapp/content/js/ext/examples/shared/icons/fam/book.png -> /home/mon/graphite/webapp/content/js/ext/examples/shared/icons/fam
copying webapp/content/js/ext/examples/shared/icons/fam/user_add.gif -> /home/mon/graphite/webapp/content/js/ext/examples/shared/icons/fam
copying webapp/content/js/ext/examples/shared/icons/fam/user_green.gif -> /home/mon/graphite/webapp/content/js/ext/examples/shared/icons/fam
copying webapp/content/js/ext/examples/shared/icons/fam/cross.gif -> /home/mon/graphite/webapp/content/js/ext/examples/shared/icons/fam
copying webapp/content/js/ext/examples/shared/icons/fam/user_green.png -> /home/mon/graphite/webapp/content/js/ext/examples/shared/icons/fam
copying webapp/content/js/ext/examples/shared/icons/fam/user_suit.gif -> /home/mon/graphite/webapp/content/js/ext/examples/shared/icons/fam
copying webapp/content/js/ext/examples/shared/icons/fam/add.gif -> /home/mon/graphite/webapp/content/js/ext/examples/shared/icons/fam
copying webapp/content/js/ext/examples/shared/icons/fam/cog.png -> /home/mon/graphite/webapp/content/js/ext/examples/shared/icons/fam
copying webapp/content/js/ext/examples/shared/icons/fam/user_red.png -> /home/mon/graphite/webapp/content/js/ext/examples/shared/icons/fam
copying webapp/content/js/ext/examples/shared/icons/fam/plugin_add.gif -> /home/mon/graphite/webapp/content/js/ext/examples/shared/icons/fam
copying webapp/content/js/ext/examples/shared/icons/fam/user.png -> /home/mon/graphite/webapp/content/js/ext/examples/shared/icons/fam
copying webapp/content/js/ext/examples/shared/icons/fam/add.png -> /home/mon/graphite/webapp/content/js/ext/examples/shared/icons/fam
copying webapp/content/js/ext/examples/shared/icons/fam/accept.png -> /home/mon/graphite/webapp/content/js/ext/examples/shared/icons/fam
copying webapp/content/js/ext/examples/shared/icons/fam/folder_wrench.png -> /home/mon/graphite/webapp/content/js/ext/examples/shared/icons/fam
copying webapp/content/js/ext/examples/shared/icons/fam/feed_add.png -> /home/mon/graphite/webapp/content/js/ext/examples/shared/icons/fam
copying webapp/content/js/ext/examples/shared/icons/fam/table_refresh.png -> /home/mon/graphite/webapp/content/js/ext/examples/shared/icons/fam
copying webapp/content/js/ext/examples/shared/icons/fam/grid.png -> /home/mon/graphite/webapp/content/js/ext/examples/shared/icons/fam
copying webapp/content/js/ext/examples/shared/icons/fam/user_delete.png -> /home/mon/graphite/webapp/content/js/ext/examples/shared/icons/fam
copying webapp/content/js/ext/examples/shared/icons/fam/cog_edit.png -> /home/mon/graphite/webapp/content/js/ext/examples/shared/icons/fam
copying webapp/content/js/ext/examples/shared/icons/fam/information.png -> /home/mon/graphite/webapp/content/js/ext/examples/shared/icons/fam
copying webapp/content/js/ext/examples/shared/icons/fam/user_gray.png -> /home/mon/graphite/webapp/content/js/ext/examples/shared/icons/fam
copying webapp/content/js/ext/examples/shared/icons/fam/user_female.png -> /home/mon/graphite/webapp/content/js/ext/examples/shared/icons/fam
copying webapp/content/js/ext/examples/shared/icons/fam/connect.gif -> /home/mon/graphite/webapp/content/js/ext/examples/shared/icons/fam
copying webapp/content/js/ext/examples/shared/icons/fam/user_female.gif -> /home/mon/graphite/webapp/content/js/ext/examples/shared/icons/fam
copying webapp/content/js/ext/examples/shared/icons/fam/user_suit.png -> /home/mon/graphite/webapp/content/js/ext/examples/shared/icons/fam
copying webapp/content/js/ext/examples/shared/icons/fam/plugin.gif -> /home/mon/graphite/webapp/content/js/ext/examples/shared/icons/fam
copying webapp/content/js/ext/examples/shared/icons/fam/application_view_list.png -> /home/mon/graphite/webapp/content/js/ext/examples/shared/icons/fam
copying webapp/content/js/ext/examples/shared/icons/fam/rss_go.png -> /home/mon/graphite/webapp/content/js/ext/examples/shared/icons/fam
copying webapp/content/js/ext/examples/shared/icons/fam/user_add.png -> /home/mon/graphite/webapp/content/js/ext/examples/shared/icons/fam
copying webapp/content/js/ext/examples/shared/icons/fam/feed_error.png -> /home/mon/graphite/webapp/content/js/ext/examples/shared/icons/fam
copying webapp/content/js/ext/examples/shared/icons/fam/control_rewind.png -> /home/mon/graphite/webapp/content/js/ext/examples/shared/icons/fam
copying webapp/content/js/ext/examples/shared/icons/fam/delete.gif -> /home/mon/graphite/webapp/content/js/ext/examples/shared/icons/fam
creating /home/mon/graphite/webapp/content/img
copying webapp/content/img/Lminus.gif -> /home/mon/graphite/webapp/content/img
copying webapp/content/img/clock_16.png -> /home/mon/graphite/webapp/content/img
copying webapp/content/img/Lplus.gif -> /home/mon/graphite/webapp/content/img
copying webapp/content/img/calBt.gif -> /home/mon/graphite/webapp/content/img
copying webapp/content/img/error.png -> /home/mon/graphite/webapp/content/img
copying webapp/content/img/T.gif -> /home/mon/graphite/webapp/content/img
copying webapp/content/img/I.gif -> /home/mon/graphite/webapp/content/img
copying webapp/content/img/favicon.ico -> /home/mon/graphite/webapp/content/img
copying webapp/content/img/line_chart.png -> /home/mon/graphite/webapp/content/img
copying webapp/content/img/searching.gif -> /home/mon/graphite/webapp/content/img
copying webapp/content/img/arrow1.gif -> /home/mon/graphite/webapp/content/img
copying webapp/content/img/Tplus.gif -> /home/mon/graphite/webapp/content/img
copying webapp/content/img/save.gif -> /home/mon/graphite/webapp/content/img
copying webapp/content/img/Tminus.gif -> /home/mon/graphite/webapp/content/img
copying webapp/content/img/L.gif -> /home/mon/graphite/webapp/content/img
copying webapp/content/img/blank.gif -> /home/mon/graphite/webapp/content/img
copying webapp/content/img/graphite.png -> /home/mon/graphite/webapp/content/img
copying webapp/content/img/graphite_short.png -> /home/mon/graphite/webapp/content/img
copying webapp/content/img/mini-bottom2.gif -> /home/mon/graphite/webapp/content/img
copying webapp/content/img/folder.png -> /home/mon/graphite/webapp/content/img
copying webapp/content/img/updateGraph.gif -> /home/mon/graphite/webapp/content/img
copying webapp/content/img/leaf.gif -> /home/mon/graphite/webapp/content/img
copying webapp/content/img/indicator.png -> /home/mon/graphite/webapp/content/img
copying webapp/content/img/mini-top2.gif -> /home/mon/graphite/webapp/content/img
copying webapp/content/img/delete.gif -> /home/mon/graphite/webapp/content/img
creating /home/mon/graphite/webapp/content/js/ext/resources/images/default/panel
copying webapp/content/js/ext/resources/images/default/panel/tool-sprites.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/panel
copying webapp/content/js/ext/resources/images/default/panel/corners-sprite.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/panel
copying webapp/content/js/ext/resources/images/default/panel/top-bottom.png -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/panel
copying webapp/content/js/ext/resources/images/default/panel/left-right.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/panel
copying webapp/content/js/ext/resources/images/default/panel/white-left-right.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/panel
copying webapp/content/js/ext/resources/images/default/panel/top-bottom.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/panel
copying webapp/content/js/ext/resources/images/default/panel/white-top-bottom.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/panel
copying webapp/content/js/ext/resources/images/default/panel/light-hd.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/panel
copying webapp/content/js/ext/resources/images/default/panel/tool-sprite-tpl.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/panel
copying webapp/content/js/ext/resources/images/default/panel/white-corners-sprite.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/panel
copying webapp/content/js/ext/resources/images/default/panel/tools-sprites-trans.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/panel
creating /home/mon/graphite/webapp/content/js/ext/resources/images/default/button
copying webapp/content/js/ext/resources/images/default/button/s-arrow.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/button
copying webapp/content/js/ext/resources/images/default/button/group-cs.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/button
copying webapp/content/js/ext/resources/images/default/button/s-arrow-noline.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/button
copying webapp/content/js/ext/resources/images/default/button/group-lr.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/button
copying webapp/content/js/ext/resources/images/default/button/group-tb.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/button
copying webapp/content/js/ext/resources/images/default/button/s-arrow-bo.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/button
copying webapp/content/js/ext/resources/images/default/button/btn.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/button
copying webapp/content/js/ext/resources/images/default/button/s-arrow-b.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/button
copying webapp/content/js/ext/resources/images/default/button/s-arrow-b-noline.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/button
copying webapp/content/js/ext/resources/images/default/button/s-arrow-o.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/button
copying webapp/content/js/ext/resources/images/default/button/arrow.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/button
creating /home/mon/graphite/webapp/content/js/ext/resources/images/default/menu
copying webapp/content/js/ext/resources/images/default/menu/item-over.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/menu
copying webapp/content/js/ext/resources/images/default/menu/group-checked.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/menu
copying webapp/content/js/ext/resources/images/default/menu/unchecked.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/menu
copying webapp/content/js/ext/resources/images/default/menu/menu.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/menu
copying webapp/content/js/ext/resources/images/default/menu/checked.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/menu
copying webapp/content/js/ext/resources/images/default/menu/menu-parent.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/menu
creating /home/mon/graphite/webapp/content/js/ext/adapter/ext
copying webapp/content/js/ext/adapter/ext/ext-base-debug.js -> /home/mon/graphite/webapp/content/js/ext/adapter/ext
copying webapp/content/js/ext/adapter/ext/ext-base.js -> /home/mon/graphite/webapp/content/js/ext/adapter/ext
creating /home/mon/graphite/webapp/content/js/ext/resources/images/default/tabs
copying webapp/content/js/ext/resources/images/default/tabs/tab-close.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/tabs
copying webapp/content/js/ext/resources/images/default/tabs/tab-strip-btm-bg.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/tabs
copying webapp/content/js/ext/resources/images/default/tabs/scroll-left.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/tabs
copying webapp/content/js/ext/resources/images/default/tabs/tabs-sprite.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/tabs
copying webapp/content/js/ext/resources/images/default/tabs/tab-btm-inactive-right-bg.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/tabs
copying webapp/content/js/ext/resources/images/default/tabs/tab-strip-bg.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/tabs
copying webapp/content/js/ext/resources/images/default/tabs/tab-btm-inactive-left-bg.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/tabs
copying webapp/content/js/ext/resources/images/default/tabs/scroll-right.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/tabs
copying webapp/content/js/ext/resources/images/default/tabs/scroller-bg.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/tabs
copying webapp/content/js/ext/resources/images/default/tabs/tab-btm-left-bg.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/tabs
copying webapp/content/js/ext/resources/images/default/tabs/tab-strip-bg.png -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/tabs
copying webapp/content/js/ext/resources/images/default/tabs/tab-btm-over-right-bg.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/tabs
copying webapp/content/js/ext/resources/images/default/tabs/tab-btm-right-bg.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/tabs
copying webapp/content/js/ext/resources/images/default/tabs/tab-btm-over-left-bg.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/tabs
creating /home/mon/graphite/webapp/content/js/ext/resources/images/default/qtip
copying webapp/content/js/ext/resources/images/default/qtip/tip-sprite.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/qtip
copying webapp/content/js/ext/resources/images/default/qtip/close.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/qtip
copying webapp/content/js/ext/resources/images/default/qtip/bg.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/qtip
copying webapp/content/js/ext/resources/images/default/qtip/tip-anchor-sprite.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/qtip
copying webapp/content/js/ext/license.txt -> /home/mon/graphite/webapp/content/js/ext
copying webapp/content/js/ext/ext-all-debug.js -> /home/mon/graphite/webapp/content/js/ext
copying webapp/content/js/ext/ext-all.js -> /home/mon/graphite/webapp/content/js/ext
creating /home/mon/graphite/webapp/content/css
creating /home/mon/graphite/webapp/content/css/default
copying webapp/content/css/default/minimize.gif -> /home/mon/graphite/webapp/content/css/default
copying webapp/content/css/default/top_right.gif -> /home/mon/graphite/webapp/content/css/default
copying webapp/content/css/default/resize.gif -> /home/mon/graphite/webapp/content/css/default
copying webapp/content/css/default/center_right.gif -> /home/mon/graphite/webapp/content/css/default
copying webapp/content/css/default/bottom_left.gif -> /home/mon/graphite/webapp/content/css/default
copying webapp/content/css/default/top_left.gif -> /home/mon/graphite/webapp/content/css/default
copying webapp/content/css/default/maximize.gif -> /home/mon/graphite/webapp/content/css/default
copying webapp/content/css/default/bottom_right_resize.gif -> /home/mon/graphite/webapp/content/css/default
copying webapp/content/css/default/center_left.gif -> /home/mon/graphite/webapp/content/css/default
copying webapp/content/css/default/close.gif -> /home/mon/graphite/webapp/content/css/default
copying webapp/content/css/default/top_mid.gif -> /home/mon/graphite/webapp/content/css/default
copying webapp/content/css/default/overlay.png -> /home/mon/graphite/webapp/content/css/default
copying webapp/content/css/default/clear.gif -> /home/mon/graphite/webapp/content/css/default
copying webapp/content/css/default/sizer.gif -> /home/mon/graphite/webapp/content/css/default
copying webapp/content/css/default/inspect.gif -> /home/mon/graphite/webapp/content/css/default
copying webapp/content/css/default/bottom_right.gif -> /home/mon/graphite/webapp/content/css/default
copying webapp/content/css/default/bottom_mid.gif -> /home/mon/graphite/webapp/content/css/default
creating /home/mon/graphite/webapp/content/js/ext/resources/images/default/layout
copying webapp/content/js/ext/resources/images/default/layout/mini-top.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/layout
copying webapp/content/js/ext/resources/images/default/layout/ns-expand.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/layout
copying webapp/content/js/ext/resources/images/default/layout/panel-title-light-bg.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/layout
copying webapp/content/js/ext/resources/images/default/layout/collapse.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/layout
copying webapp/content/js/ext/resources/images/default/layout/tab-close.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/layout
copying webapp/content/js/ext/resources/images/default/layout/ns-collapse.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/layout
copying webapp/content/js/ext/resources/images/default/layout/mini-right.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/layout
copying webapp/content/js/ext/resources/images/default/layout/panel-close.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/layout
copying webapp/content/js/ext/resources/images/default/layout/mini-bottom.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/layout
copying webapp/content/js/ext/resources/images/default/layout/expand.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/layout
copying webapp/content/js/ext/resources/images/default/layout/stuck.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/layout
copying webapp/content/js/ext/resources/images/default/layout/tab-close-on.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/layout
copying webapp/content/js/ext/resources/images/default/layout/stick.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/layout
copying webapp/content/js/ext/resources/images/default/layout/panel-title-bg.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/layout
copying webapp/content/js/ext/resources/images/default/layout/mini-left.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/layout
copying webapp/content/js/ext/resources/images/default/layout/gradient-bg.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/layout
creating /home/mon/graphite/webapp/content/js/ext/resources/css/structure
copying webapp/content/js/ext/resources/css/structure/panel.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/structure
copying webapp/content/js/ext/resources/css/structure/debug.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/structure
copying webapp/content/js/ext/resources/css/structure/box.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/structure
copying webapp/content/js/ext/resources/css/structure/pivotgrid.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/structure
copying webapp/content/js/ext/resources/css/structure/menu.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/structure
copying webapp/content/js/ext/resources/css/structure/editor.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/structure
copying webapp/content/js/ext/resources/css/structure/date-picker.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/structure
copying webapp/content/js/ext/resources/css/structure/combo.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/structure
copying webapp/content/js/ext/resources/css/structure/grid.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/structure
copying webapp/content/js/ext/resources/css/structure/reset.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/structure
copying webapp/content/js/ext/resources/css/structure/layout.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/structure
copying webapp/content/js/ext/resources/css/structure/progress.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/structure
copying webapp/content/js/ext/resources/css/structure/dialog.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/structure
copying webapp/content/js/ext/resources/css/structure/panel-reset.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/structure
copying webapp/content/js/ext/resources/css/structure/form.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/structure
copying webapp/content/js/ext/resources/css/structure/tree.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/structure
copying webapp/content/js/ext/resources/css/structure/resizable.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/structure
copying webapp/content/js/ext/resources/css/structure/list-view.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/structure
copying webapp/content/js/ext/resources/css/structure/dd.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/structure
copying webapp/content/js/ext/resources/css/structure/toolbar.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/structure
copying webapp/content/js/ext/resources/css/structure/button.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/structure
copying webapp/content/js/ext/resources/css/structure/qtips.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/structure
copying webapp/content/js/ext/resources/css/structure/window.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/structure
copying webapp/content/js/ext/resources/css/structure/slider.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/structure
copying webapp/content/js/ext/resources/css/structure/tabs.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/structure
copying webapp/content/js/ext/resources/css/structure/borders.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/structure
copying webapp/content/js/ext/resources/css/structure/core.css -> /home/mon/graphite/webapp/content/js/ext/resources/css/structure
creating /home/mon/graphite/webapp/content/js/ext/adapter/yui
copying webapp/content/js/ext/adapter/yui/ext-yui-adapter-debug.js -> /home/mon/graphite/webapp/content/js/ext/adapter/yui
copying webapp/content/js/ext/adapter/yui/ext-yui-adapter.js -> /home/mon/graphite/webapp/content/js/ext/adapter/yui
copying webapp/content/js/ext/resources/images/default/s.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default
copying webapp/content/js/ext/resources/images/default/shadow-c.png -> /home/mon/graphite/webapp/content/js/ext/resources/images/default
copying webapp/content/js/ext/resources/images/default/shadow.png -> /home/mon/graphite/webapp/content/js/ext/resources/images/default
copying webapp/content/js/ext/resources/images/default/shadow-lr.png -> /home/mon/graphite/webapp/content/js/ext/resources/images/default
copying webapp/content/js/ext/resources/images/default/gradient-bg.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default
creating /home/mon/graphite/webapp/content/js/ext/resources/images/default/form
copying webapp/content/js/ext/resources/images/default/form/date-trigger.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/form
copying webapp/content/js/ext/resources/images/default/form/trigger.psd -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/form
copying webapp/content/js/ext/resources/images/default/form/clear-trigger.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/form
copying webapp/content/js/ext/resources/images/default/form/trigger-tpl.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/form
copying webapp/content/js/ext/resources/images/default/form/exclamation.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/form
copying webapp/content/js/ext/resources/images/default/form/error-tip-corners.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/form
copying webapp/content/js/ext/resources/images/default/form/trigger.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/form
copying webapp/content/js/ext/resources/images/default/form/search-trigger.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/form
copying webapp/content/js/ext/resources/images/default/form/clear-trigger.psd -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/form
copying webapp/content/js/ext/resources/images/default/form/checkbox.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/form
copying webapp/content/js/ext/resources/images/default/form/trigger-square.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/form
copying webapp/content/js/ext/resources/images/default/form/date-trigger.psd -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/form
copying webapp/content/js/ext/resources/images/default/form/radio.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/form
copying webapp/content/js/ext/resources/images/default/form/trigger-square.psd -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/form
copying webapp/content/js/ext/resources/images/default/form/search-trigger.psd -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/form
copying webapp/content/js/ext/resources/images/default/form/text-bg.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/form
creating /home/mon/graphite/webapp/content/js/ext/resources/images/default/dd
copying webapp/content/js/ext/resources/images/default/dd/drop-no.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/dd
copying webapp/content/js/ext/resources/images/default/dd/drop-yes.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/dd
copying webapp/content/js/ext/resources/images/default/dd/drop-add.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/dd
creating /home/mon/graphite/webapp/content/js/ext/pkgs
copying webapp/content/js/ext/pkgs/pkg-grid-property.js -> /home/mon/graphite/webapp/content/js/ext/pkgs
copying webapp/content/js/ext/pkgs/resizable-debug.js -> /home/mon/graphite/webapp/content/js/ext/pkgs
copying webapp/content/js/ext/pkgs/pkg-tree-debug.js -> /home/mon/graphite/webapp/content/js/ext/pkgs
copying webapp/content/js/ext/pkgs/direct-debug.js -> /home/mon/graphite/webapp/content/js/ext/pkgs
copying webapp/content/js/ext/pkgs/resizable.js -> /home/mon/graphite/webapp/content/js/ext/pkgs
copying webapp/content/js/ext/pkgs/pkg-grid-grouping-debug.js -> /home/mon/graphite/webapp/content/js/ext/pkgs
copying webapp/content/js/ext/pkgs/data-grouping-debug.js -> /home/mon/graphite/webapp/content/js/ext/pkgs
copying webapp/content/js/ext/pkgs/pkg-menu.js -> /home/mon/graphite/webapp/content/js/ext/pkgs
copying webapp/content/js/ext/pkgs/pkg-tabs.js -> /home/mon/graphite/webapp/content/js/ext/pkgs
copying webapp/content/js/ext/pkgs/data-list-views.js -> /home/mon/graphite/webapp/content/js/ext/pkgs
copying webapp/content/js/ext/pkgs/cmp-foundation.js -> /home/mon/graphite/webapp/content/js/ext/pkgs
copying webapp/content/js/ext/pkgs/pkg-forms.js -> /home/mon/graphite/webapp/content/js/ext/pkgs
copying webapp/content/js/ext/pkgs/pkg-tips-debug.js -> /home/mon/graphite/webapp/content/js/ext/pkgs
copying webapp/content/js/ext/pkgs/pkg-grid-foundation.js -> /home/mon/graphite/webapp/content/js/ext/pkgs
copying webapp/content/js/ext/pkgs/ext-core.js -> /home/mon/graphite/webapp/content/js/ext/pkgs
copying webapp/content/js/ext/pkgs/data-list-views-debug.js -> /home/mon/graphite/webapp/content/js/ext/pkgs
copying webapp/content/js/ext/pkgs/pkg-tree.js -> /home/mon/graphite/webapp/content/js/ext/pkgs
copying webapp/content/js/ext/pkgs/data-xml.js -> /home/mon/graphite/webapp/content/js/ext/pkgs
copying webapp/content/js/ext/pkgs/pkg-forms-debug.js -> /home/mon/graphite/webapp/content/js/ext/pkgs
copying webapp/content/js/ext/pkgs/state.js -> /home/mon/graphite/webapp/content/js/ext/pkgs
copying webapp/content/js/ext/pkgs/pkg-grid-editor-debug.js -> /home/mon/graphite/webapp/content/js/ext/pkgs
copying webapp/content/js/ext/pkgs/window.js -> /home/mon/graphite/webapp/content/js/ext/pkgs
copying webapp/content/js/ext/pkgs/pkg-history.js -> /home/mon/graphite/webapp/content/js/ext/pkgs
copying webapp/content/js/ext/pkgs/direct.js -> /home/mon/graphite/webapp/content/js/ext/pkgs
copying webapp/content/js/ext/pkgs/pkg-grid-property-debug.js -> /home/mon/graphite/webapp/content/js/ext/pkgs
copying webapp/content/js/ext/pkgs/cmp-foundation-debug.js -> /home/mon/graphite/webapp/content/js/ext/pkgs
copying webapp/content/js/ext/pkgs/pkg-buttons.js -> /home/mon/graphite/webapp/content/js/ext/pkgs
copying webapp/content/js/ext/pkgs/pkg-menu-debug.js -> /home/mon/graphite/webapp/content/js/ext/pkgs
copying webapp/content/js/ext/pkgs/pkg-toolbars-debug.js -> /home/mon/graphite/webapp/content/js/ext/pkgs
copying webapp/content/js/ext/pkgs/pkg-charts-debug.js -> /home/mon/graphite/webapp/content/js/ext/pkgs
copying webapp/content/js/ext/pkgs/data-grouping.js -> /home/mon/graphite/webapp/content/js/ext/pkgs
copying webapp/content/js/ext/pkgs/ext-dd.js -> /home/mon/graphite/webapp/content/js/ext/pkgs
copying webapp/content/js/ext/pkgs/pkg-grid-grouping.js -> /home/mon/graphite/webapp/content/js/ext/pkgs
copying webapp/content/js/ext/pkgs/data-json-debug.js -> /home/mon/graphite/webapp/content/js/ext/pkgs
copying webapp/content/js/ext/pkgs/pkg-grid-foundation-debug.js -> /home/mon/graphite/webapp/content/js/ext/pkgs
copying webapp/content/js/ext/pkgs/pkg-buttons-debug.js -> /home/mon/graphite/webapp/content/js/ext/pkgs
copying webapp/content/js/ext/pkgs/ext-core-debug.js -> /home/mon/graphite/webapp/content/js/ext/pkgs
copying webapp/content/js/ext/pkgs/pkg-tabs-debug.js -> /home/mon/graphite/webapp/content/js/ext/pkgs
copying webapp/content/js/ext/pkgs/ext-foundation-debug.js -> /home/mon/graphite/webapp/content/js/ext/pkgs
copying webapp/content/js/ext/pkgs/ext-dd-debug.js -> /home/mon/graphite/webapp/content/js/ext/pkgs
copying webapp/content/js/ext/pkgs/pkg-tips.js -> /home/mon/graphite/webapp/content/js/ext/pkgs
copying webapp/content/js/ext/pkgs/ext-foundation.js -> /home/mon/graphite/webapp/content/js/ext/pkgs
copying webapp/content/js/ext/pkgs/data-foundation-debug.js -> /home/mon/graphite/webapp/content/js/ext/pkgs
copying webapp/content/js/ext/pkgs/data-json.js -> /home/mon/graphite/webapp/content/js/ext/pkgs
copying webapp/content/js/ext/pkgs/state-debug.js -> /home/mon/graphite/webapp/content/js/ext/pkgs
copying webapp/content/js/ext/pkgs/data-xml-debug.js -> /home/mon/graphite/webapp/content/js/ext/pkgs
copying webapp/content/js/ext/pkgs/pkg-grid-editor.js -> /home/mon/graphite/webapp/content/js/ext/pkgs
copying webapp/content/js/ext/pkgs/window-debug.js -> /home/mon/graphite/webapp/content/js/ext/pkgs
copying webapp/content/js/ext/pkgs/data-foundation.js -> /home/mon/graphite/webapp/content/js/ext/pkgs
copying webapp/content/js/ext/pkgs/pkg-toolbars.js -> /home/mon/graphite/webapp/content/js/ext/pkgs
copying webapp/content/js/ext/pkgs/pkg-history-debug.js -> /home/mon/graphite/webapp/content/js/ext/pkgs
copying webapp/content/js/ext/pkgs/pkg-charts.js -> /home/mon/graphite/webapp/content/js/ext/pkgs
creating /home/mon/graphite/webapp/content/html
copying webapp/content/html/timeHelp.html -> /home/mon/graphite/webapp/content/html
copying webapp/content/html/completerHelp.html -> /home/mon/graphite/webapp/content/html
copying webapp/content/html/searchHelp.html -> /home/mon/graphite/webapp/content/html
creating /home/mon/graphite/webapp/content/js/ext/ux
copying webapp/content/js/ext/ux/DataViewTransition.js -> /home/mon/graphite/webapp/content/js/ext/ux
creating /home/mon/graphite/webapp/content/js/ext/resources/images/default/window
copying webapp/content/js/ext/resources/images/default/window/left-right.psd -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/window
copying webapp/content/js/ext/resources/images/default/window/right-corners.psd -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/window
copying webapp/content/js/ext/resources/images/default/window/icon-info.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/window
copying webapp/content/js/ext/resources/images/default/window/right-corners.png -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/window
copying webapp/content/js/ext/resources/images/default/window/left-corners.png -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/window
copying webapp/content/js/ext/resources/images/default/window/top-bottom.png -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/window
copying webapp/content/js/ext/resources/images/default/window/icon-warning.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/window
copying webapp/content/js/ext/resources/images/default/window/top-bottom.psd -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/window
copying webapp/content/js/ext/resources/images/default/window/left-corners.psd -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/window
copying webapp/content/js/ext/resources/images/default/window/icon-error.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/window
copying webapp/content/js/ext/resources/images/default/window/icon-question.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/window
copying webapp/content/js/ext/resources/images/default/window/left-right.png -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/window
creating /home/mon/graphite/webapp/content/js/window
copying webapp/content/js/window/window.js -> /home/mon/graphite/webapp/content/js/window
copying webapp/content/js/window/effects.js -> /home/mon/graphite/webapp/content/js/window
copying webapp/content/js/window/prototype.js -> /home/mon/graphite/webapp/content/js/window
copying webapp/content/js/window/window_effects.js -> /home/mon/graphite/webapp/content/js/window
creating /home/mon/graphite/webapp/content/js/ext/resources/images/default/grid
copying webapp/content/js/ext/resources/images/default/grid/grid-blue-split.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/grid
copying webapp/content/js/ext/resources/images/default/grid/page-first.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/grid
copying webapp/content/js/ext/resources/images/default/grid/grid-vista-hd.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/grid
copying webapp/content/js/ext/resources/images/default/grid/mso-hd.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/grid
copying webapp/content/js/ext/resources/images/default/grid/page-next.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/grid
copying webapp/content/js/ext/resources/images/default/grid/drop-no.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/grid
copying webapp/content/js/ext/resources/images/default/grid/row-expand-sprite.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/grid
copying webapp/content/js/ext/resources/images/default/grid/page-next-disabled.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/grid
copying webapp/content/js/ext/resources/images/default/grid/grid-loading.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/grid
copying webapp/content/js/ext/resources/images/default/grid/grid3-hrow-over.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/grid
copying webapp/content/js/ext/resources/images/default/grid/hmenu-asc.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/grid
copying webapp/content/js/ext/resources/images/default/grid/col-move-bottom.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/grid
copying webapp/content/js/ext/resources/images/default/grid/hmenu-unlock.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/grid
copying webapp/content/js/ext/resources/images/default/grid/done.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/grid
copying webapp/content/js/ext/resources/images/default/grid/grid-blue-hd.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/grid
copying webapp/content/js/ext/resources/images/default/grid/page-first-disabled.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/grid
copying webapp/content/js/ext/resources/images/default/grid/drop-yes.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/grid
copying webapp/content/js/ext/resources/images/default/grid/page-last-disabled.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/grid
copying webapp/content/js/ext/resources/images/default/grid/col-move-top.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/grid
copying webapp/content/js/ext/resources/images/default/grid/arrow-right-white.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/grid
copying webapp/content/js/ext/resources/images/default/grid/group-expand.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/grid
copying webapp/content/js/ext/resources/images/default/grid/hmenu-unlock.png -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/grid
copying webapp/content/js/ext/resources/images/default/grid/nowait.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/grid
copying webapp/content/js/ext/resources/images/default/grid/invalid_line.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/grid
copying webapp/content/js/ext/resources/images/default/grid/footer-bg.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/grid
copying webapp/content/js/ext/resources/images/default/grid/grid3-special-col-sel-bg.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/grid
copying webapp/content/js/ext/resources/images/default/grid/hmenu-lock.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/grid
copying webapp/content/js/ext/resources/images/default/grid/arrow-left-white.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/grid
copying webapp/content/js/ext/resources/images/default/grid/grid3-hd-btn.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/grid
copying webapp/content/js/ext/resources/images/default/grid/row-check-sprite.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/grid
copying webapp/content/js/ext/resources/images/default/grid/group-by.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/grid
copying webapp/content/js/ext/resources/images/default/grid/sort-hd.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/grid
copying webapp/content/js/ext/resources/images/default/grid/grid3-rowheader.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/grid
copying webapp/content/js/ext/resources/images/default/grid/sort_asc.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/grid
copying webapp/content/js/ext/resources/images/default/grid/hmenu-desc.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/grid
copying webapp/content/js/ext/resources/images/default/grid/page-last.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/grid
copying webapp/content/js/ext/resources/images/default/grid/refresh.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/grid
copying webapp/content/js/ext/resources/images/default/grid/group-expand-sprite.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/grid
copying webapp/content/js/ext/resources/images/default/grid/dirty.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/grid
copying webapp/content/js/ext/resources/images/default/grid/grid-split.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/grid
copying webapp/content/js/ext/resources/images/default/grid/row-sel.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/grid
copying webapp/content/js/ext/resources/images/default/grid/pick-button.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/grid
copying webapp/content/js/ext/resources/images/default/grid/row-over.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/grid
copying webapp/content/js/ext/resources/images/default/grid/hd-pop.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/grid
copying webapp/content/js/ext/resources/images/default/grid/wait.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/grid
copying webapp/content/js/ext/resources/images/default/grid/columns.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/grid
copying webapp/content/js/ext/resources/images/default/grid/grid-hrow.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/grid
copying webapp/content/js/ext/resources/images/default/grid/refresh-disabled.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/grid
copying webapp/content/js/ext/resources/images/default/grid/group-collapse.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/grid
copying webapp/content/js/ext/resources/images/default/grid/page-prev-disabled.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/grid
copying webapp/content/js/ext/resources/images/default/grid/grid3-hrow.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/grid
copying webapp/content/js/ext/resources/images/default/grid/grid3-special-col-bg.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/grid
copying webapp/content/js/ext/resources/images/default/grid/sort_desc.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/grid
copying webapp/content/js/ext/resources/images/default/grid/loading.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/grid
copying webapp/content/js/ext/resources/images/default/grid/hmenu-lock.png -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/grid
copying webapp/content/js/ext/resources/images/default/grid/page-prev.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/grid
creating /home/mon/graphite/webapp/content/js/ext/adapter/prototype
copying webapp/content/js/ext/adapter/prototype/ext-prototype-adapter-debug.js -> /home/mon/graphite/webapp/content/js/ext/adapter/prototype
copying webapp/content/js/ext/adapter/prototype/ext-prototype-adapter.js -> /home/mon/graphite/webapp/content/js/ext/adapter/prototype
copying webapp/content/js/ext/resources/expressinstall.swf -> /home/mon/graphite/webapp/content/js/ext/resources
copying webapp/content/js/ext/resources/charts.swf -> /home/mon/graphite/webapp/content/js/ext/resources
copying webapp/content/js/ext/examples/shared/icons/silk.css -> /home/mon/graphite/webapp/content/js/ext/examples/shared/icons
copying webapp/content/js/ext/examples/shared/icons/save.gif -> /home/mon/graphite/webapp/content/js/ext/examples/shared/icons
copying webapp/content/js/ext/examples/shared/icons/arrow-down.gif -> /home/mon/graphite/webapp/content/js/ext/examples/shared/icons
copying webapp/content/js/ext/examples/shared/icons/arrow-up.gif -> /home/mon/graphite/webapp/content/js/ext/examples/shared/icons
creating /home/mon/graphite/webapp/content/js/ext/resources/images/default/toolbar
copying webapp/content/js/ext/resources/images/default/toolbar/gray-bg.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/toolbar
copying webapp/content/js/ext/resources/images/default/toolbar/more.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/toolbar
copying webapp/content/js/ext/resources/images/default/toolbar/tb-xl-btn-sprite.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/toolbar
copying webapp/content/js/ext/resources/images/default/toolbar/btn-arrow-light.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/toolbar
copying webapp/content/js/ext/resources/images/default/toolbar/tb-btn-sprite.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/toolbar
copying webapp/content/js/ext/resources/images/default/toolbar/tb-xl-sep.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/toolbar
copying webapp/content/js/ext/resources/images/default/toolbar/tb-bg.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/toolbar
copying webapp/content/js/ext/resources/images/default/toolbar/btn-arrow.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/toolbar
copying webapp/content/js/ext/resources/images/default/toolbar/bg.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/toolbar
copying webapp/content/js/ext/resources/images/default/toolbar/btn-over-bg.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/toolbar
creating /home/mon/graphite/webapp/content/js/ext/resources/images/default/slider
copying webapp/content/js/ext/resources/images/default/slider/slider-bg.png -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/slider
copying webapp/content/js/ext/resources/images/default/slider/slider-v-bg.png -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/slider
copying webapp/content/js/ext/resources/images/default/slider/slider-v-thumb.png -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/slider
copying webapp/content/js/ext/resources/images/default/slider/slider-thumb.png -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/slider
creating /home/mon/graphite/webapp/content/js/ext/resources/images/default/sizer
copying webapp/content/js/ext/resources/images/default/sizer/ne-handle-dark.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/sizer
copying webapp/content/js/ext/resources/images/default/sizer/nw-handle.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/sizer
copying webapp/content/js/ext/resources/images/default/sizer/sw-handle.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/sizer
copying webapp/content/js/ext/resources/images/default/sizer/s-handle.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/sizer
copying webapp/content/js/ext/resources/images/default/sizer/square.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/sizer
copying webapp/content/js/ext/resources/images/default/sizer/e-handle.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/sizer
copying webapp/content/js/ext/resources/images/default/sizer/s-handle-dark.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/sizer
copying webapp/content/js/ext/resources/images/default/sizer/sw-handle-dark.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/sizer
copying webapp/content/js/ext/resources/images/default/sizer/ne-handle.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/sizer
copying webapp/content/js/ext/resources/images/default/sizer/se-handle-dark.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/sizer
copying webapp/content/js/ext/resources/images/default/sizer/nw-handle-dark.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/sizer
copying webapp/content/js/ext/resources/images/default/sizer/se-handle.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/sizer
copying webapp/content/js/ext/resources/images/default/sizer/e-handle-dark.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/sizer
copying webapp/content/css/jquery.autocomplete.css -> /home/mon/graphite/webapp/content/css
copying webapp/content/css/darkX.css -> /home/mon/graphite/webapp/content/css
copying webapp/content/css/table.css -> /home/mon/graphite/webapp/content/css
copying webapp/content/css/default.css -> /home/mon/graphite/webapp/content/css
copying webapp/content/css/dashboard.css -> /home/mon/graphite/webapp/content/css
copying webapp/content/css/dashboard-white.css -> /home/mon/graphite/webapp/content/css
copying webapp/content/css/cli.css -> /home/mon/graphite/webapp/content/css
copying webapp/content/css/dashboard-default.css -> /home/mon/graphite/webapp/content/css
creating /home/mon/graphite/webapp/content/js/ext/resources/images/default/shared
copying webapp/content/js/ext/resources/images/default/shared/glass-bg.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/shared
copying webapp/content/js/ext/resources/images/default/shared/large-loading.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/shared
copying webapp/content/js/ext/resources/images/default/shared/right-btn.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/shared
copying webapp/content/js/ext/resources/images/default/shared/calendar.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/shared
copying webapp/content/js/ext/resources/images/default/shared/loading-balls.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/shared
copying webapp/content/js/ext/resources/images/default/shared/blue-loading.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/shared
copying webapp/content/js/ext/resources/images/default/shared/warning.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/shared
copying webapp/content/js/ext/resources/images/default/shared/left-btn.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/shared
copying webapp/content/js/ext/resources/images/default/shared/hd-sprite.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/shared
creating /home/mon/graphite/webapp/content/css/darkX
copying webapp/content/css/darkX/titlebar-left-focused.png -> /home/mon/graphite/webapp/content/css/darkX
copying webapp/content/css/darkX/button-close-focused.png -> /home/mon/graphite/webapp/content/css/darkX
copying webapp/content/css/darkX/titlebar-mid-focused.png -> /home/mon/graphite/webapp/content/css/darkX
copying webapp/content/css/darkX/button-maximize-focused.png -> /home/mon/graphite/webapp/content/css/darkX
copying webapp/content/css/darkX/frame-right-focused.png -> /home/mon/graphite/webapp/content/css/darkX
copying webapp/content/css/darkX/frame-bottom-left-focused.png -> /home/mon/graphite/webapp/content/css/darkX
copying webapp/content/css/darkX/frame-bottom-mid-focused.png -> /home/mon/graphite/webapp/content/css/darkX
copying webapp/content/css/darkX/frame-bottom-right-focused.png -> /home/mon/graphite/webapp/content/css/darkX
copying webapp/content/css/darkX/titlebar-right-focused.png -> /home/mon/graphite/webapp/content/css/darkX
copying webapp/content/css/darkX/button-minimize-focused.png -> /home/mon/graphite/webapp/content/css/darkX
copying webapp/content/css/darkX/frame-left-focused.png -> /home/mon/graphite/webapp/content/css/darkX
creating /home/mon/graphite/webapp/content/js/ext/resources/images/default/progress
copying webapp/content/js/ext/resources/images/default/progress/progress-bg.gif -> /home/mon/graphite/webapp/content/js/ext/resources/images/default/progress
creating /home/mon/graphite/storage/ceres
creating /home/mon/graphite/storage/log/webapp
copying conf/dashboard.conf.example -> /home/mon/graphite/conf
copying conf/graphTemplates.conf.example -> /home/mon/graphite/conf
copying conf/graphite.wsgi.example -> /home/mon/graphite/conf
creating /home/mon/graphite/examples
copying examples/example-graphite-vhost.conf -> /home/mon/graphite/examples
copying examples/example-client.py -> /home/mon/graphite/examples
running install_egg_info
Writing /home/mon/graphite/webapp/graphite_web-0.10.0_alpha-py2.6.egg-info
running install
running build
running build_py
creating build
creating build/lib
copying whisper.py -> build/lib
running build_scripts
creating build/scripts-2.6
copying and adjusting bin/whisper-merge.py -> build/scripts-2.6
copying and adjusting bin/whisper-dump.py -> build/scripts-2.6
copying and adjusting bin/whisper-resize.py -> build/scripts-2.6
copying and adjusting bin/whisper-create.py -> build/scripts-2.6
copying and adjusting bin/whisper-fetch.py -> build/scripts-2.6
copying and adjusting bin/whisper-update.py -> build/scripts-2.6
copying and adjusting bin/whisper-set-aggregation-method.py -> build/scripts-2.6
copying and adjusting bin/rrd2whisper.py -> build/scripts-2.6
copying and adjusting bin/whisper-info.py -> build/scripts-2.6
changing mode of build/scripts-2.6/whisper-merge.py from 644 to 755
changing mode of build/scripts-2.6/whisper-dump.py from 644 to 755
changing mode of build/scripts-2.6/whisper-resize.py from 644 to 755
changing mode of build/scripts-2.6/whisper-create.py from 644 to 755
changing mode of build/scripts-2.6/whisper-fetch.py from 644 to 755
changing mode of build/scripts-2.6/whisper-update.py from 644 to 755
changing mode of build/scripts-2.6/whisper-set-aggregation-method.py from 644 to 755
changing mode of build/scripts-2.6/rrd2whisper.py from 644 to 755
changing mode of build/scripts-2.6/whisper-info.py from 644 to 755
running install_lib
copying build/lib/whisper.py -> /home/mon/graphite/lib
byte-compiling /home/mon/graphite/lib/whisper.py to whisper.pyc
running install_scripts
copying build/scripts-2.6/whisper-merge.py -> /home/mon/graphite/bin
copying build/scripts-2.6/whisper-dump.py -> /home/mon/graphite/bin
copying build/scripts-2.6/whisper-resize.py -> /home/mon/graphite/bin
copying build/scripts-2.6/whisper-create.py -> /home/mon/graphite/bin
copying build/scripts-2.6/whisper-fetch.py -> /home/mon/graphite/bin
copying build/scripts-2.6/whisper-update.py -> /home/mon/graphite/bin
copying build/scripts-2.6/whisper-set-aggregation-method.py -> /home/mon/graphite/bin
copying build/scripts-2.6/rrd2whisper.py -> /home/mon/graphite/bin
copying build/scripts-2.6/whisper-info.py -> /home/mon/graphite/bin
changing mode of /home/mon/graphite/bin/whisper-merge.py to 755
changing mode of /home/mon/graphite/bin/whisper-dump.py to 755
changing mode of /home/mon/graphite/bin/whisper-resize.py to 755
changing mode of /home/mon/graphite/bin/whisper-create.py to 755
changing mode of /home/mon/graphite/bin/whisper-fetch.py to 755
changing mode of /home/mon/graphite/bin/whisper-update.py to 755
changing mode of /home/mon/graphite/bin/whisper-set-aggregation-method.py to 755
changing mode of /home/mon/graphite/bin/rrd2whisper.py to 755
changing mode of /home/mon/graphite/bin/whisper-info.py to 755
running install_egg_info
Writing /home/mon/graphite/lib/whisper-0.9.10-py2.6.egg-info
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment