*/
public class Main {
public static void main(String[] args) throws Exception {
PennyServer pennyServer = new PennyServer();
String pigScriptFilename = args[0];
ParsedPigScript parsedPigScript = pennyServer.parse(pigScriptFilename);
Map<String, ClassWithArgs> monitorClasses = new HashMap<String, ClassWithArgs>();
for (String alias : parsedPigScript.aliases()) {
// only put agents at the beginning of each task pipeline
// (can't differentiate which step in pipeline is causing delay -- can only tell if a tuple coming into the pipeline is taking longer to go through the pipeline than other tuples)