1NYTPROFCSV(1) User Contributed Perl Documentation NYTPROFCSV(1)
2
3
4
6 nytprofcsv - (DEPRECATED) Devel::NYTProf::Reader CSV format
7 implementation
8
10 $ nytprofcsv [-h] [-d] [-o <output directory>] [-f <input file>]
11
12 perl -d:NYTProf some_perl_app.pl
13 nytprofcsv
14 Generating CSV Output...
15
17 nytprofcsv is deprecated and will be removed in a future release.
18
20 "nytprofcsv" is a script that implements Devel::NYTProf::Reader to
21 create comma-separated value formatted reports from Devel::NYTProf
22 databases.
23
24 See the Devel::NYTProf Perl code profiler for more information.
25
27 These are the command line options understood by "nytprofcsv"
28
29 -f, --file <filename>
30 Specifies the location of the input file. The input file must be
31 the output of fprofpp. Default: nytprof.out
32
33 -o, --out <dir>
34 Where to place the generated report. Default: ./nytprof/
35
36 -d, --delete
37 Purge any existing database located at whatever -o (above) is set
38 to
39
40 -h, --help
41 Print the help message
42
44 # Profile data generated by Devel::NYTProf::Reader v.0.01
45 # Format: time,calls,time/call,code
46 0,0,0,#--------------------------------------------------------------------
47 0,0,0,# My New Source File!
48 0,0,0,#--------------------------------------------------------------------
49 0,0,0,
50 0,0,0,package NYT::Feeds::Util;
51 0.00047,3,0.000156666666666667,use Date::Calc qw(Add_Delta_DHMS);
52 0.00360,3,0.0012,use HTML::Entities;
53 0.00212,3,0.000706666666666667,use Encode;
54 0.00248,3,0.000826666666666667,use utf8;
55 0.00468,3,0.00156,use strict;
56 0,0,0,
57 0.00000,1,0,require Exporter;
58 ... that's enough, get the picture? ...
59
60 Note: The format line indicates what fields the numbers correspond to
61
62 Note2: If the source file is modified between profiling and report
63 generation, the source might be misaligned
64
66 Mailing list and discussion at
67 <http://groups.google.com/group/develnytprof-dev>
68
69 Public Github Repository and hacking instructions at
70 <https://github.com/timbunce/devel-nytprof/>
71
72 Devel::NYTProf Devel::NYTProf::Reader nytprofhtml is an HTML
73 implementation of Devel::NYTProf::Reader
74
76 Adam Kaplan, akaplan at nytimes dotcom
77
79 This program is free software; you can redistribute it and/or modify it
80 under the same terms as Perl itself, either Perl version 5.8.8 or, at
81 your option, any later version of Perl 5 you may have available.
82
83
84
85perl v5.38.0 2023-07-20 NYTPROFCSV(1)