Skip to content

[Cookbook][Profiler] Remove mention of import/export #6577

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 19, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 0 additions & 15 deletions cookbook/profiler/profiling_data.rst
Original file line number Diff line number Diff line change
Expand Up @@ -45,18 +45,3 @@ look for tokens based on some criteria::
// get the latest 10 tokens for requests that happened between 2 and 4 days ago
$tokens = $container->get('profiler')
->find('', '', 10, '4 days ago', '2 days ago');

Lastly, if you want to manipulate profiling data on a different machine than the
one where the information was generated, use the ``profiler:export`` and
``profiler:import`` commands:

.. code-block:: bash

# on the production machine
$ php bin/console profiler:export > profile.data

# on the development machine
$ php bin/console profiler:import /path/to/profile.data

# you can also pipe from the STDIN
$ cat /path/to/profile.data | php bin/console profiler:import