Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 5e0f2fa38b8d7f707584b5206bb468a42b49b843 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
###############################################################################
# Copyright (c) 2012 Red Hat.
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Eclipse Public License v1.0
# which accompanies this distribution, and is available at
# http://www.eclipse.org/legal/epl-v10.html
#
# Contributors:
#     Red Hat - Sami Wagiaalla
###############################################################################

SystemTapScriptGraphOptionsTab_1=Unable to initialize launch configuration tab
SystemTapScriptGraphOptionsTab_2=Graph the output of this script run
SystemTapScriptGraphOptionsTab_3=Graph the output of the script\n\
Make sure your scripts outputs data in columns.\n \
For example:\n \
  1305  2309  4233\n \
  2322  3234  4223\n \
  2321  3123  4533\n \
and enter parsing instructions below
SystemTapScriptGraphOptionsTab_4=Output Parsing:
SystemTapScriptGraphOptionsTab_5=Unable to initialize launch configuration tab
SystemTapScriptGraphOptionsTab_6=Cannot parse an empty string: remove '()'
SystemTapScriptGraphOptionsTab_7=Graphing
SystemTapScriptGraphOptionsTab_8=Some of the graphs created for this expression rely on column data that has been deleted. Either re-add the columns or edit the affected graphs.
SystemTapScriptGraphOptionsTab_9=Please designate the output to graph from this regular expression. Do so by placing parentheses () around what you want to graph.

SystemTapScriptGraphOptionsTab_0=Unable to initialize launch configuration tab
SystemTapScriptGraphOptionsTab_AddGraphButton=Add...
SystemTapScriptGraphOptionsTab_AddGraphButtonToolTip=Add a new graph
SystemTapScriptGraphOptionsTab_DuplicateGraphButton=Duplicate
SystemTapScriptGraphOptionsTab_DuplicateGraphButtonToolTip=Create a duplicate of the selected graph
SystemTapScriptGraphOptionsTab_EditGraphButton=Edit...
SystemTapScriptGraphOptionsTab_EditGraphButtonToolTip=Edit the selected graph
SystemTapScriptGraphOptionsTab_columnTitle=Title
SystemTapScriptGraphOptionsTab_extractedValueLabel=Sample Extracted Value
SystemTapScriptGraphOptionsTab_defaultColumnTitleBase=Column {0}
SystemTapScriptGraphOptionsTab_RemoveGraphButton=Remove
SystemTapScriptGraphOptionsTab_RemoveGraphButtonToolTip=Remove the selected graph
SystemTapScriptGraphOptionsTab_invalidGraph=<Invalid>
SystemTapScriptGraphOptionsTab_regexLabel=Regular Expression:
SystemTapScriptGraphOptionsTab_regexTooltip=Enter a regular expression that will match your expected output. Then add brackets around the values you would like to capture.\n\
For example to extract reads and writes from the string\n\
  "read: 456 write: 789"\n\
use\n\
  "read: (\\d+) write: (\\d+)"\n\
  Note that you may use any number of unique regular expressions to capture multiple formats of data from your output.
SystemTapScriptGraphOptionsTab_regexAddNew=New Regular Expression...
SystemTapScriptGraphOptionsTab_regexRemove=Delete
SystemTapScriptGraphOptionsTab_graphSetTitleBase=Graph Set {0}

SystemTapScriptGraphOptionsTab_removeRegexTitle=Delete Regular Expression
SystemTapScriptGraphOptionsTab_removeRegexAsk=Are you sure you want to delete the regular expression "{0}"?

SystemTapScriptGraphOptionsTab_sampleOutputLabel=Sample Output:
SystemTapScriptGraphOptionsTab_sampleOutputTooltip=Enter a line of output similar to what your script will produce to test out the parsing
SystemTapScriptGraphOptionsTab_sampleOutputNoMatch=<no match found>
SystemTapScriptGraphOptionsTab_sampleOutputIsEmpty=<no sample output entered>

SystemTapScriptLaunchConfigurationTab_0=Systemtap Script:
SystemTapScriptLaunchConfigurationTab_1=Browse...
SystemTapScriptLaunchConfigurationTab_2=Execute script as current user.
SystemTapScriptLaunchConfigurationTab_3=User Name:
SystemTapScriptLaunchConfigurationTab_4=Password:
SystemTapScriptLaunchConfigurationTab_5=User:
SystemTapScriptLaunchConfigurationTab_6=Host:
SystemTapScriptLaunchConfigurationTab_7=Run script on localhost.
SystemTapScriptLaunchConfigurationTab_8=Host Name:
SystemTapScriptLaunchConfigurationTab_9=General
SystemTapScriptLaunchConfigurationTab_10=Systemtap
SystemTapScriptLaunchConfigurationTab_11=Select Systemtap Script
SystemTapScriptLaunchConfigurationTab_errorInitializingTab=Could not initialize tab
SystemTapScriptLaunchConfigurationTab_options=Options:
SystemTapScriptLaunchConfigurationTab_runWithChart=Run the script with a chart.
SystemTapScriptLaunchShortcut_couldNotFindConfig=Could Not Find configuration
SystemTapScriptLaunchShortcut_couldNotLaunchScript=Could Not Launch Script
SystemTapScriptOptionsTab_0=Select target executable.
SystemTapScriptOptionsTab_1=Target Executable (-c)
SystemTapScriptOptionsTab_2=Other Command Options
SystemTapScriptOptionsTab_3=dyninst
SystemTapScriptOptionsTab_4=When using dyninst you must specify a target PID or a target executable
SystemTapScriptOptionsTab_5=Please specify a proper pid
SystemTapScriptOptionsTab_initializeConfigurationFailed=Could not initialize configuration
SystemTapScriptOptionsTab_targetToolTip=Select a target executable to be passed to systemtap using the -c option

Back to the top