repo
stringlengths
7
58
path
stringlengths
12
218
func_name
stringlengths
3
140
original_string
stringlengths
73
34.1k
language
stringclasses
1 value
code
stringlengths
73
34.1k
code_tokens
list
docstring
stringlengths
3
16k
docstring_tokens
list
sha
stringlengths
40
40
url
stringlengths
105
339
partition
stringclasses
1 value
hawkular/hawkular-apm
client/opentracing/src/main/java/io/opentracing/impl/APMSpan.java
APMSpan.initFollowsFrom
protected void initFollowsFrom(APMSpanBuilder builder, TraceRecorder recorder, Reference ref, ContextSampler sampler) { APMSpan referenced = (APMSpan) ref.getReferredTo(); initTopLevelState(referenced.getTraceContext().getTopSpan(), recorder, sampler); // Top level node in spawned fragment should be a Consumer with correlation id // referencing back to the 'spawned' node String nodeId = referenced.getNodePath(); getNodeBuilder().addCorrelationId(new CorrelationIdentifier(Scope.CausedBy, nodeId)); // Propagate trace id, transaction name and reporting level as creating a // separate trace fragment to represent the 'follows from' activity traceContext.initTraceState(referenced.state()); makeInternalLink(builder); }
java
protected void initFollowsFrom(APMSpanBuilder builder, TraceRecorder recorder, Reference ref, ContextSampler sampler) { APMSpan referenced = (APMSpan) ref.getReferredTo(); initTopLevelState(referenced.getTraceContext().getTopSpan(), recorder, sampler); // Top level node in spawned fragment should be a Consumer with correlation id // referencing back to the 'spawned' node String nodeId = referenced.getNodePath(); getNodeBuilder().addCorrelationId(new CorrelationIdentifier(Scope.CausedBy, nodeId)); // Propagate trace id, transaction name and reporting level as creating a // separate trace fragment to represent the 'follows from' activity traceContext.initTraceState(referenced.state()); makeInternalLink(builder); }
[ "protected", "void", "initFollowsFrom", "(", "APMSpanBuilder", "builder", ",", "TraceRecorder", "recorder", ",", "Reference", "ref", ",", "ContextSampler", "sampler", ")", "{", "APMSpan", "referenced", "=", "(", "APMSpan", ")", "ref", ".", "getReferredTo", "(", ...
This method initialises the span based on a 'follows-from' relationship. @param builder The span builder @param recorder The trace recorder @param ref The 'follows-from' relationship @param sampler The sampler
[ "This", "method", "initialises", "the", "span", "based", "on", "a", "follows", "-", "from", "relationship", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/client/opentracing/src/main/java/io/opentracing/impl/APMSpan.java#L235-L250
train
hawkular/hawkular-apm
client/opentracing/src/main/java/io/opentracing/impl/APMSpan.java
APMSpan.processNoPrimaryReference
protected void processNoPrimaryReference(APMSpanBuilder builder, TraceRecorder recorder, ContextSampler sampler) { // No primary reference found, so means that all references will be treated // as equal, to provide a join construct within a separate fragment. initTopLevelState(this, recorder, sampler); Set<String> traceIds = builder.references.stream().map(ref -> { if (ref.getReferredTo() instanceof APMSpan) { return ((APMSpan) ref.getReferredTo()).getTraceContext().getTraceId(); } else if (ref.getReferredTo() instanceof APMSpanBuilder) { return ((APMSpanBuilder) ref.getReferredTo()).state().get(Constants.HAWKULAR_APM_TRACEID).toString(); } log.warning("Reference refers to an unsupported SpanContext implementation: " + ref.getReferredTo()); return null; }).collect(Collectors.toSet()); if (traceIds.size() > 0) { if (traceIds.size() > 1) { log.warning("References should all belong to the same 'trace' instance"); } if (builder.references.get(0).getReferredTo() instanceof APMSpan) { traceContext.initTraceState(((APMSpan) builder.references.get(0).getReferredTo()).state()); } } processRemainingReferences(builder, null); makeInternalLink(builder); }
java
protected void processNoPrimaryReference(APMSpanBuilder builder, TraceRecorder recorder, ContextSampler sampler) { // No primary reference found, so means that all references will be treated // as equal, to provide a join construct within a separate fragment. initTopLevelState(this, recorder, sampler); Set<String> traceIds = builder.references.stream().map(ref -> { if (ref.getReferredTo() instanceof APMSpan) { return ((APMSpan) ref.getReferredTo()).getTraceContext().getTraceId(); } else if (ref.getReferredTo() instanceof APMSpanBuilder) { return ((APMSpanBuilder) ref.getReferredTo()).state().get(Constants.HAWKULAR_APM_TRACEID).toString(); } log.warning("Reference refers to an unsupported SpanContext implementation: " + ref.getReferredTo()); return null; }).collect(Collectors.toSet()); if (traceIds.size() > 0) { if (traceIds.size() > 1) { log.warning("References should all belong to the same 'trace' instance"); } if (builder.references.get(0).getReferredTo() instanceof APMSpan) { traceContext.initTraceState(((APMSpan) builder.references.get(0).getReferredTo()).state()); } } processRemainingReferences(builder, null); makeInternalLink(builder); }
[ "protected", "void", "processNoPrimaryReference", "(", "APMSpanBuilder", "builder", ",", "TraceRecorder", "recorder", ",", "ContextSampler", "sampler", ")", "{", "// No primary reference found, so means that all references will be treated", "// as equal, to provide a join construct wit...
This method initialises the span based on there being no primary reference. @param builder The span builder @param recorder The trace recorder @param sampler The sampler
[ "This", "method", "initialises", "the", "span", "based", "on", "there", "being", "no", "primary", "reference", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/client/opentracing/src/main/java/io/opentracing/impl/APMSpan.java#L259-L286
train
hawkular/hawkular-apm
client/opentracing/src/main/java/io/opentracing/impl/APMSpan.java
APMSpan.processRemainingReferences
protected void processRemainingReferences(APMSpanBuilder builder, Reference primaryRef) { // Check if other references for (Reference ref : builder.references) { if (primaryRef == ref) { continue; } // Setup correlation ids for other references if (ref.getReferredTo() instanceof APMSpan) { APMSpan referenced = (APMSpan) ref.getReferredTo(); String nodeId = referenced.getNodePath(); getNodeBuilder().addCorrelationId(new CorrelationIdentifier(Scope.CausedBy, nodeId)); } else if (ref.getReferredTo() instanceof APMSpanBuilder && ((APMSpanBuilder) ref.getReferredTo()).state().containsKey(Constants.HAWKULAR_APM_ID)) { getNodeBuilder().addCorrelationId(new CorrelationIdentifier(Scope.Interaction, ((APMSpanBuilder) ref.getReferredTo()).state().get(Constants.HAWKULAR_APM_ID).toString())); } } }
java
protected void processRemainingReferences(APMSpanBuilder builder, Reference primaryRef) { // Check if other references for (Reference ref : builder.references) { if (primaryRef == ref) { continue; } // Setup correlation ids for other references if (ref.getReferredTo() instanceof APMSpan) { APMSpan referenced = (APMSpan) ref.getReferredTo(); String nodeId = referenced.getNodePath(); getNodeBuilder().addCorrelationId(new CorrelationIdentifier(Scope.CausedBy, nodeId)); } else if (ref.getReferredTo() instanceof APMSpanBuilder && ((APMSpanBuilder) ref.getReferredTo()).state().containsKey(Constants.HAWKULAR_APM_ID)) { getNodeBuilder().addCorrelationId(new CorrelationIdentifier(Scope.Interaction, ((APMSpanBuilder) ref.getReferredTo()).state().get(Constants.HAWKULAR_APM_ID).toString())); } } }
[ "protected", "void", "processRemainingReferences", "(", "APMSpanBuilder", "builder", ",", "Reference", "primaryRef", ")", "{", "// Check if other references", "for", "(", "Reference", "ref", ":", "builder", ".", "references", ")", "{", "if", "(", "primaryRef", "==",...
This method processes the remaining references by creating appropriate correlation ids against the current node. @param builder The span builder @param primaryRef The primary reference, if null if one was not found
[ "This", "method", "processes", "the", "remaining", "references", "by", "creating", "appropriate", "correlation", "ids", "against", "the", "current", "node", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/client/opentracing/src/main/java/io/opentracing/impl/APMSpan.java#L295-L314
train
hawkular/hawkular-apm
client/collector/src/main/java/org/hawkular/apm/client/collector/internal/ProcessorManager.java
ProcessorManager.init
public void init(String txn, TransactionConfig btc) { if (log.isLoggable(Level.FINE)) { log.fine("ProcessManager: initialise btxn '" + txn + "' config=" + btc + " processors=" + btc.getProcessors().size()); } if (btc.getProcessors() != null && !btc.getProcessors().isEmpty()) { List<ProcessorWrapper> procs = new ArrayList<ProcessorWrapper>(); for (int i = 0; i < btc.getProcessors().size(); i++) { procs.add(new ProcessorWrapper(btc.getProcessors().get(i))); } synchronized (processors) { processors.put(txn, procs); } } else { synchronized (processors) { processors.remove(txn); } } }
java
public void init(String txn, TransactionConfig btc) { if (log.isLoggable(Level.FINE)) { log.fine("ProcessManager: initialise btxn '" + txn + "' config=" + btc + " processors=" + btc.getProcessors().size()); } if (btc.getProcessors() != null && !btc.getProcessors().isEmpty()) { List<ProcessorWrapper> procs = new ArrayList<ProcessorWrapper>(); for (int i = 0; i < btc.getProcessors().size(); i++) { procs.add(new ProcessorWrapper(btc.getProcessors().get(i))); } synchronized (processors) { processors.put(txn, procs); } } else { synchronized (processors) { processors.remove(txn); } } }
[ "public", "void", "init", "(", "String", "txn", ",", "TransactionConfig", "btc", ")", "{", "if", "(", "log", ".", "isLoggable", "(", "Level", ".", "FINE", ")", ")", "{", "log", ".", "fine", "(", "\"ProcessManager: initialise btxn '\"", "+", "txn", "+", "...
This method initialises the processors associated with the supplied transaction configuration. @param txn The transaction name @param btc The configuration
[ "This", "method", "initialises", "the", "processors", "associated", "with", "the", "supplied", "transaction", "configuration", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/client/collector/src/main/java/org/hawkular/apm/client/collector/internal/ProcessorManager.java#L82-L103
train
hawkular/hawkular-apm
client/collector/src/main/java/org/hawkular/apm/client/collector/internal/ProcessorManager.java
ProcessorManager.process
public void process(Trace trace, Node node, Direction direction, Map<String, ?> headers, Object... values) { if (log.isLoggable(Level.FINEST)) { log.finest("ProcessManager: process trace=" + trace + " node=" + node + " direction=" + direction + " headers=" + headers + " values=" + values + " : available processors=" + processors); } if (trace.getTransaction() != null) { List<ProcessorWrapper> procs = null; synchronized (processors) { procs = processors.get(trace.getTransaction()); } if (log.isLoggable(Level.FINEST)) { log.finest("ProcessManager: trace name=" + trace.getTransaction() + " processors=" + procs); } if (procs != null) { for (int i = 0; i < procs.size(); i++) { procs.get(i).process(trace, node, direction, headers, values); } } } }
java
public void process(Trace trace, Node node, Direction direction, Map<String, ?> headers, Object... values) { if (log.isLoggable(Level.FINEST)) { log.finest("ProcessManager: process trace=" + trace + " node=" + node + " direction=" + direction + " headers=" + headers + " values=" + values + " : available processors=" + processors); } if (trace.getTransaction() != null) { List<ProcessorWrapper> procs = null; synchronized (processors) { procs = processors.get(trace.getTransaction()); } if (log.isLoggable(Level.FINEST)) { log.finest("ProcessManager: trace name=" + trace.getTransaction() + " processors=" + procs); } if (procs != null) { for (int i = 0; i < procs.size(); i++) { procs.get(i).process(trace, node, direction, headers, values); } } } }
[ "public", "void", "process", "(", "Trace", "trace", ",", "Node", "node", ",", "Direction", "direction", ",", "Map", "<", "String", ",", "?", ">", "headers", ",", "Object", "...", "values", ")", "{", "if", "(", "log", ".", "isLoggable", "(", "Level", ...
This method processes the supplied information against the configured processor details for the trace. @param trace The trace @param node The node being processed @param direction The direction @param headers The headers @param values The values
[ "This", "method", "processes", "the", "supplied", "information", "against", "the", "configured", "processor", "details", "for", "the", "trace", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/client/collector/src/main/java/org/hawkular/apm/client/collector/internal/ProcessorManager.java#L195-L221
train
hawkular/hawkular-apm
server/api/src/main/java/org/hawkular/apm/server/api/utils/zipkin/SpanUniqueIdGenerator.java
SpanUniqueIdGenerator.toUnique
public static String toUnique(Span span) { String id = span.getId(); if (span.clientSpan()) { id = getClientId(span.getId()); } return id; }
java
public static String toUnique(Span span) { String id = span.getId(); if (span.clientSpan()) { id = getClientId(span.getId()); } return id; }
[ "public", "static", "String", "toUnique", "(", "Span", "span", ")", "{", "String", "id", "=", "span", ".", "getId", "(", ")", ";", "if", "(", "span", ".", "clientSpan", "(", ")", ")", "{", "id", "=", "getClientId", "(", "span", ".", "getId", "(", ...
Utility method to get unique id of the span. Note that method does not change the span id. @param span Span. @return Unique id of the span.
[ "Utility", "method", "to", "get", "unique", "id", "of", "the", "span", ".", "Note", "that", "method", "does", "not", "change", "the", "span", "id", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/server/api/src/main/java/org/hawkular/apm/server/api/utils/zipkin/SpanUniqueIdGenerator.java#L41-L49
train
hawkular/hawkular-apm
server/jms/src/main/java/org/hawkular/apm/server/jms/AbstractPublisherJMS.java
AbstractPublisherJMS.doPublish
protected void doPublish(String tenantId, List<T> items, String subscriber, int retryCount, long delay) throws Exception { String data = mapper.writeValueAsString(items); TextMessage tm = session.createTextMessage(data); if (tenantId != null) { tm.setStringProperty("tenant", tenantId); } if (subscriber != null) { tm.setStringProperty("subscriber", subscriber); } tm.setIntProperty("retryCount", retryCount); if (delay > 0) { tm.setLongProperty("_AMQ_SCHED_DELIVERY", System.currentTimeMillis() + delay); } if (log.isLoggable(Level.FINEST)) { log.finest("Publish: " + tm); } producer.send(tm); }
java
protected void doPublish(String tenantId, List<T> items, String subscriber, int retryCount, long delay) throws Exception { String data = mapper.writeValueAsString(items); TextMessage tm = session.createTextMessage(data); if (tenantId != null) { tm.setStringProperty("tenant", tenantId); } if (subscriber != null) { tm.setStringProperty("subscriber", subscriber); } tm.setIntProperty("retryCount", retryCount); if (delay > 0) { tm.setLongProperty("_AMQ_SCHED_DELIVERY", System.currentTimeMillis() + delay); } if (log.isLoggable(Level.FINEST)) { log.finest("Publish: " + tm); } producer.send(tm); }
[ "protected", "void", "doPublish", "(", "String", "tenantId", ",", "List", "<", "T", ">", "items", ",", "String", "subscriber", ",", "int", "retryCount", ",", "long", "delay", ")", "throws", "Exception", "{", "String", "data", "=", "mapper", ".", "writeValu...
This method publishes the supplied items. @param tenantId The tenant id @param items The items @param subscriber The optional subscriber name @param retryCount The retry count @param delay The delay @throws Exception Failed to publish
[ "This", "method", "publishes", "the", "supplied", "items", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/server/jms/src/main/java/org/hawkular/apm/server/jms/AbstractPublisherJMS.java#L117-L142
train
hawkular/hawkular-apm
client/kafka/src/main/java/org/hawkular/apm/client/kafka/AbstractPublisherKafka.java
AbstractPublisherKafka.init
protected void init() { Properties props = new Properties(); props.put("bootstrap.servers", PropertyUtil.getProperty(PropertyUtil.HAWKULAR_APM_URI_PUBLISHER, PropertyUtil.getProperty(PropertyUtil.HAWKULAR_APM_URI)) .substring(PropertyUtil.KAFKA_PREFIX.length())); props.put("acks", "all"); props.put("retries", PropertyUtil.getPropertyAsInteger(PropertyUtil.HAWKULAR_APM_KAFKA_PRODUCER_RETRIES, 3)); props.put("batch.size", 16384); props.put("linger.ms", 1); props.put("buffer.memory", 33554432); props.put("key.serializer", "org.apache.kafka.common.serialization.StringSerializer"); props.put("value.serializer", "org.apache.kafka.common.serialization.StringSerializer"); producer = new KafkaProducer<>(props); }
java
protected void init() { Properties props = new Properties(); props.put("bootstrap.servers", PropertyUtil.getProperty(PropertyUtil.HAWKULAR_APM_URI_PUBLISHER, PropertyUtil.getProperty(PropertyUtil.HAWKULAR_APM_URI)) .substring(PropertyUtil.KAFKA_PREFIX.length())); props.put("acks", "all"); props.put("retries", PropertyUtil.getPropertyAsInteger(PropertyUtil.HAWKULAR_APM_KAFKA_PRODUCER_RETRIES, 3)); props.put("batch.size", 16384); props.put("linger.ms", 1); props.put("buffer.memory", 33554432); props.put("key.serializer", "org.apache.kafka.common.serialization.StringSerializer"); props.put("value.serializer", "org.apache.kafka.common.serialization.StringSerializer"); producer = new KafkaProducer<>(props); }
[ "protected", "void", "init", "(", ")", "{", "Properties", "props", "=", "new", "Properties", "(", ")", ";", "props", ".", "put", "(", "\"bootstrap.servers\"", ",", "PropertyUtil", ".", "getProperty", "(", "PropertyUtil", ".", "HAWKULAR_APM_URI_PUBLISHER", ",", ...
This method initialises the publisher.
[ "This", "method", "initialises", "the", "publisher", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/client/kafka/src/main/java/org/hawkular/apm/client/kafka/AbstractPublisherKafka.java#L72-L86
train
hawkular/hawkular-apm
api/src/main/java/org/hawkular/apm/api/services/Criteria.java
Criteria.addProperty
public Criteria addProperty(String name, String value, Operator operator) { properties.add(new PropertyCriteria(name, value, operator)); return this; }
java
public Criteria addProperty(String name, String value, Operator operator) { properties.add(new PropertyCriteria(name, value, operator)); return this; }
[ "public", "Criteria", "addProperty", "(", "String", "name", ",", "String", "value", ",", "Operator", "operator", ")", "{", "properties", ".", "add", "(", "new", "PropertyCriteria", "(", "name", ",", "value", ",", "operator", ")", ")", ";", "return", "this"...
This method adds a new property criteria. @param name The property name @param value The property value @param operator The property operator @return The criteria
[ "This", "method", "adds", "a", "new", "property", "criteria", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/api/src/main/java/org/hawkular/apm/api/services/Criteria.java#L196-L199
train
hawkular/hawkular-apm
api/src/main/java/org/hawkular/apm/api/services/Criteria.java
Criteria.transactionWide
public boolean transactionWide() { return !(!properties.isEmpty() || !correlationIds.isEmpty() || hostName != null || uri != null || operation != null); }
java
public boolean transactionWide() { return !(!properties.isEmpty() || !correlationIds.isEmpty() || hostName != null || uri != null || operation != null); }
[ "public", "boolean", "transactionWide", "(", ")", "{", "return", "!", "(", "!", "properties", ".", "isEmpty", "(", ")", "||", "!", "correlationIds", ".", "isEmpty", "(", ")", "||", "hostName", "!=", "null", "||", "uri", "!=", "null", "||", "operation", ...
This method determines if the specified criteria are relevant to all fragments within an end to end transaction. @return Whether the criteria would apply to all fragments in a transaction
[ "This", "method", "determines", "if", "the", "specified", "criteria", "are", "relevant", "to", "all", "fragments", "within", "an", "end", "to", "end", "transaction", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/api/src/main/java/org/hawkular/apm/api/services/Criteria.java#L403-L406
train
hawkular/hawkular-apm
api/src/main/java/org/hawkular/apm/api/services/Criteria.java
Criteria.deriveTransactionWide
public Criteria deriveTransactionWide() { Criteria ret = new Criteria(); ret.setStartTime(startTime); ret.setEndTime(endTime); ret.setProperties(getProperties().stream().filter(p -> p.getName().equals(Constants.PROP_PRINCIPAL)) .collect(Collectors.toSet())); ret.setTransaction(transaction); return ret; }
java
public Criteria deriveTransactionWide() { Criteria ret = new Criteria(); ret.setStartTime(startTime); ret.setEndTime(endTime); ret.setProperties(getProperties().stream().filter(p -> p.getName().equals(Constants.PROP_PRINCIPAL)) .collect(Collectors.toSet())); ret.setTransaction(transaction); return ret; }
[ "public", "Criteria", "deriveTransactionWide", "(", ")", "{", "Criteria", "ret", "=", "new", "Criteria", "(", ")", ";", "ret", ".", "setStartTime", "(", "startTime", ")", ";", "ret", ".", "setEndTime", "(", "endTime", ")", ";", "ret", ".", "setProperties",...
This method returns the transaction wide version of the current criteria. @return The transaction wide version
[ "This", "method", "returns", "the", "transaction", "wide", "version", "of", "the", "current", "criteria", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/api/src/main/java/org/hawkular/apm/api/services/Criteria.java#L413-L421
train
hawkular/hawkular-apm
api/src/main/java/org/hawkular/apm/api/services/ConfigurationLoader.java
ConfigurationLoader.getConfiguration
public static CollectorConfiguration getConfiguration(String type) { return loadConfig(PropertyUtil.getProperty(HAWKULAR_APM_CONFIG, DEFAULT_URI), type); }
java
public static CollectorConfiguration getConfiguration(String type) { return loadConfig(PropertyUtil.getProperty(HAWKULAR_APM_CONFIG, DEFAULT_URI), type); }
[ "public", "static", "CollectorConfiguration", "getConfiguration", "(", "String", "type", ")", "{", "return", "loadConfig", "(", "PropertyUtil", ".", "getProperty", "(", "HAWKULAR_APM_CONFIG", ",", "DEFAULT_URI", ")", ",", "type", ")", ";", "}" ]
This method returns the collector configuration. @param type The type, or null if default (jvm) @return The collection configuration
[ "This", "method", "returns", "the", "collector", "configuration", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/api/src/main/java/org/hawkular/apm/api/services/ConfigurationLoader.java#L66-L68
train
hawkular/hawkular-apm
api/src/main/java/org/hawkular/apm/api/services/ConfigurationLoader.java
ConfigurationLoader.loadConfig
protected static CollectorConfiguration loadConfig(String uri, String type) { final CollectorConfiguration config = new CollectorConfiguration(); if (type == null) { type = DEFAULT_TYPE; } uri += java.io.File.separator + type; File f = new File(uri); if (!f.isAbsolute()) { if (f.exists()) { uri = f.getAbsolutePath(); } else if (System.getProperties().containsKey("jboss.server.config.dir")) { uri = System.getProperty("jboss.server.config.dir") + java.io.File.separatorChar + uri; } else { try { URL url = Thread.currentThread().getContextClassLoader().getResource(uri); if (url != null) { uri = url.getPath(); } else { log.severe("Failed to get absolute path for uri '" + uri + "'"); } } catch (Exception e) { log.log(Level.SEVERE, "Failed to get absolute path for uri '" + uri + "'", e); uri = null; } } } if (uri != null) { String[] uriParts = uri.split(Matcher.quoteReplacement(File.separator)); int startIndex = 0; // Remove any file prefix if (uriParts[0].equals("file:")) { startIndex++; } try { Path path = getPath(startIndex, uriParts); Files.walkFileTree(path, new FileVisitor<Path>() { @Override public FileVisitResult postVisitDirectory(Path path, IOException exc) throws IOException { return FileVisitResult.CONTINUE; } @Override public FileVisitResult preVisitDirectory(Path path, BasicFileAttributes attrs) throws IOException { return FileVisitResult.CONTINUE; } @Override public FileVisitResult visitFile(Path path, BasicFileAttributes attrs) throws IOException { if (path.toString().endsWith(".json")) { String json = new String(Files.readAllBytes(path)); CollectorConfiguration childConfig = mapper.readValue(json, CollectorConfiguration.class); if (childConfig != null) { config.merge(childConfig, false); } } return FileVisitResult.CONTINUE; } @Override public FileVisitResult visitFileFailed(Path path, IOException exc) throws IOException { return FileVisitResult.CONTINUE; } }); } catch (Throwable e) { log.log(Level.SEVERE, "Failed to load configuration", e); } } return config; }
java
protected static CollectorConfiguration loadConfig(String uri, String type) { final CollectorConfiguration config = new CollectorConfiguration(); if (type == null) { type = DEFAULT_TYPE; } uri += java.io.File.separator + type; File f = new File(uri); if (!f.isAbsolute()) { if (f.exists()) { uri = f.getAbsolutePath(); } else if (System.getProperties().containsKey("jboss.server.config.dir")) { uri = System.getProperty("jboss.server.config.dir") + java.io.File.separatorChar + uri; } else { try { URL url = Thread.currentThread().getContextClassLoader().getResource(uri); if (url != null) { uri = url.getPath(); } else { log.severe("Failed to get absolute path for uri '" + uri + "'"); } } catch (Exception e) { log.log(Level.SEVERE, "Failed to get absolute path for uri '" + uri + "'", e); uri = null; } } } if (uri != null) { String[] uriParts = uri.split(Matcher.quoteReplacement(File.separator)); int startIndex = 0; // Remove any file prefix if (uriParts[0].equals("file:")) { startIndex++; } try { Path path = getPath(startIndex, uriParts); Files.walkFileTree(path, new FileVisitor<Path>() { @Override public FileVisitResult postVisitDirectory(Path path, IOException exc) throws IOException { return FileVisitResult.CONTINUE; } @Override public FileVisitResult preVisitDirectory(Path path, BasicFileAttributes attrs) throws IOException { return FileVisitResult.CONTINUE; } @Override public FileVisitResult visitFile(Path path, BasicFileAttributes attrs) throws IOException { if (path.toString().endsWith(".json")) { String json = new String(Files.readAllBytes(path)); CollectorConfiguration childConfig = mapper.readValue(json, CollectorConfiguration.class); if (childConfig != null) { config.merge(childConfig, false); } } return FileVisitResult.CONTINUE; } @Override public FileVisitResult visitFileFailed(Path path, IOException exc) throws IOException { return FileVisitResult.CONTINUE; } }); } catch (Throwable e) { log.log(Level.SEVERE, "Failed to load configuration", e); } } return config; }
[ "protected", "static", "CollectorConfiguration", "loadConfig", "(", "String", "uri", ",", "String", "type", ")", "{", "final", "CollectorConfiguration", "config", "=", "new", "CollectorConfiguration", "(", ")", ";", "if", "(", "type", "==", "null", ")", "{", "...
This method loads the configuration from the supplied URI. @param uri The URI @param type The type, or null if default (jvm) @return The configuration
[ "This", "method", "loads", "the", "configuration", "from", "the", "supplied", "URI", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/api/src/main/java/org/hawkular/apm/api/services/ConfigurationLoader.java#L77-L156
train
hawkular/hawkular-apm
server/jms/src/main/java/org/hawkular/apm/server/jms/RetryCapableMDB.java
RetryCapableMDB.process
protected void process(String tenantId, List<S> items, int retryCount) throws Exception { ProcessingUnit<S, T> pu = new ProcessingUnit<S, T>(); pu.setProcessor(getProcessor()); pu.setRetrySubscriber(retrySubscriber); pu.setRetryCount(retryCount); pu.setResultHandler( (tid, events) -> getPublisher().publish(tid, events, getPublisher().getInitialRetryCount(), getProcessor().getDeliveryDelay(events)) ); pu.setRetryHandler( (tid, events) -> getRetryPublisher().retry(tid, events, pu.getRetrySubscriber(), pu.getRetryCount() - 1, getProcessor().getRetryDelay(events, pu.getRetryCount() - 1)) ); pu.handle(tenantId, items); }
java
protected void process(String tenantId, List<S> items, int retryCount) throws Exception { ProcessingUnit<S, T> pu = new ProcessingUnit<S, T>(); pu.setProcessor(getProcessor()); pu.setRetrySubscriber(retrySubscriber); pu.setRetryCount(retryCount); pu.setResultHandler( (tid, events) -> getPublisher().publish(tid, events, getPublisher().getInitialRetryCount(), getProcessor().getDeliveryDelay(events)) ); pu.setRetryHandler( (tid, events) -> getRetryPublisher().retry(tid, events, pu.getRetrySubscriber(), pu.getRetryCount() - 1, getProcessor().getRetryDelay(events, pu.getRetryCount() - 1)) ); pu.handle(tenantId, items); }
[ "protected", "void", "process", "(", "String", "tenantId", ",", "List", "<", "S", ">", "items", ",", "int", "retryCount", ")", "throws", "Exception", "{", "ProcessingUnit", "<", "S", ",", "T", ">", "pu", "=", "new", "ProcessingUnit", "<", "S", ",", "T"...
This method processes the received list of items. @param tenantId The optional tenant id @param items The items @param retryCount The remaining retry count @throws Failed to process items
[ "This", "method", "processes", "the", "received", "list", "of", "items", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/server/jms/src/main/java/org/hawkular/apm/server/jms/RetryCapableMDB.java#L173-L192
train
hawkular/hawkular-apm
server/api/src/main/java/org/hawkular/apm/server/api/utils/SourceInfoUtil.java
SourceInfoUtil.getSourceInfo
public static List<SourceInfo> getSourceInfo(String tenantId, List<Trace> items) throws RetryAttemptException { List<SourceInfo> sourceInfoList = new ArrayList<SourceInfo>(); int curpos=0; // This method initialises the deriver with a list of trace fragments // that will need to be referenced when correlating a consumer with a producer for (int i = 0; i < items.size(); i++) { // Need to check for Producer nodes Trace trace = items.get(i); StringBuffer nodeId = new StringBuffer(trace.getFragmentId()); for (int j = 0; j < trace.getNodes().size(); j++) { Node node = trace.getNodes().get(j); int len = nodeId.length(); initialiseSourceInfo(sourceInfoList, tenantId, trace, nodeId, j, node); // Trim the node id for use with next node nodeId.delete(len, nodeId.length()); } // Apply origin information to the source info EndpointRef ep = EndpointUtil.getSourceEndpoint(trace); for (int j=curpos; j < sourceInfoList.size(); j++) { SourceInfo si = sourceInfoList.get(j); si.setEndpoint(ep); } curpos = sourceInfoList.size(); } return sourceInfoList; }
java
public static List<SourceInfo> getSourceInfo(String tenantId, List<Trace> items) throws RetryAttemptException { List<SourceInfo> sourceInfoList = new ArrayList<SourceInfo>(); int curpos=0; // This method initialises the deriver with a list of trace fragments // that will need to be referenced when correlating a consumer with a producer for (int i = 0; i < items.size(); i++) { // Need to check for Producer nodes Trace trace = items.get(i); StringBuffer nodeId = new StringBuffer(trace.getFragmentId()); for (int j = 0; j < trace.getNodes().size(); j++) { Node node = trace.getNodes().get(j); int len = nodeId.length(); initialiseSourceInfo(sourceInfoList, tenantId, trace, nodeId, j, node); // Trim the node id for use with next node nodeId.delete(len, nodeId.length()); } // Apply origin information to the source info EndpointRef ep = EndpointUtil.getSourceEndpoint(trace); for (int j=curpos; j < sourceInfoList.size(); j++) { SourceInfo si = sourceInfoList.get(j); si.setEndpoint(ep); } curpos = sourceInfoList.size(); } return sourceInfoList; }
[ "public", "static", "List", "<", "SourceInfo", ">", "getSourceInfo", "(", "String", "tenantId", ",", "List", "<", "Trace", ">", "items", ")", "throws", "RetryAttemptException", "{", "List", "<", "SourceInfo", ">", "sourceInfoList", "=", "new", "ArrayList", "<"...
This method gets the source information associated with the supplied traces. @param tenantId The tenant id @param items The trace instances @return The source info @throws RetryAttemptException Failed to initialise source information
[ "This", "method", "gets", "the", "source", "information", "associated", "with", "the", "supplied", "traces", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/server/api/src/main/java/org/hawkular/apm/server/api/utils/SourceInfoUtil.java#L63-L99
train
hawkular/hawkular-apm
server/api/src/main/java/org/hawkular/apm/server/api/utils/SourceInfoUtil.java
SourceInfoUtil.initialiseSourceInfo
protected static void initialiseSourceInfo(List<SourceInfo> sourceInfoList, String tenantId, Trace trace, StringBuffer parentNodeId, int pos, Node node) { SourceInfo si = new SourceInfo(); parentNodeId.append(':'); parentNodeId.append(pos); si.setId(parentNodeId.toString()); si.setTimestamp(node.getTimestamp()); si.setDuration(node.getDuration()); si.setTraceId(trace.getTraceId()); si.setFragmentId(trace.getFragmentId()); si.setHostName(trace.getHostName()); si.setHostAddress(trace.getHostAddress()); si.setMultipleConsumers(true); // Multiple links could reference same node si.setProperties(node.getProperties()); // Just reference, to avoid unnecessary copying // TODO: HWKBTM-348: Should be configurable based on the wait interval plus // some margin of error - primarily for cases where a job scheduler // is used. If direct communications, then only need to cater for // latency. if (log.isLoggable(Level.FINEST)) { log.finest("Adding source information for node id=" + si.getId() + " si=" + si); } sourceInfoList.add(si); // If node is a Producer, then check if other correlation ids are available if (node.getClass() == Producer.class) { List<CorrelationIdentifier> cids = node.findCorrelationIds(Scope.Interaction, Scope.ControlFlow); if (!cids.isEmpty()) { for (int i = 0; i < cids.size(); i++) { CorrelationIdentifier cid = cids.get(i); SourceInfo copy = new SourceInfo(si); copy.setId(cid.getValue()); copy.setMultipleConsumers(((Producer)node).multipleConsumers()); if (log.isLoggable(Level.FINEST)) { log.finest("Extra source information for scope=" + cid.getScope() + " id=" + copy.getId() + " si=" + copy); } sourceInfoList.add(copy); } } } if (node instanceof ContainerNode) { int nodeIdLen = parentNodeId.length(); for (int j = 0; j < ((ContainerNode) node).getNodes().size(); j++) { initialiseSourceInfo(sourceInfoList, tenantId, trace, parentNodeId, j, ((ContainerNode) node).getNodes().get(j)); // Restore parent node id parentNodeId.delete(nodeIdLen, parentNodeId.length()); } } }
java
protected static void initialiseSourceInfo(List<SourceInfo> sourceInfoList, String tenantId, Trace trace, StringBuffer parentNodeId, int pos, Node node) { SourceInfo si = new SourceInfo(); parentNodeId.append(':'); parentNodeId.append(pos); si.setId(parentNodeId.toString()); si.setTimestamp(node.getTimestamp()); si.setDuration(node.getDuration()); si.setTraceId(trace.getTraceId()); si.setFragmentId(trace.getFragmentId()); si.setHostName(trace.getHostName()); si.setHostAddress(trace.getHostAddress()); si.setMultipleConsumers(true); // Multiple links could reference same node si.setProperties(node.getProperties()); // Just reference, to avoid unnecessary copying // TODO: HWKBTM-348: Should be configurable based on the wait interval plus // some margin of error - primarily for cases where a job scheduler // is used. If direct communications, then only need to cater for // latency. if (log.isLoggable(Level.FINEST)) { log.finest("Adding source information for node id=" + si.getId() + " si=" + si); } sourceInfoList.add(si); // If node is a Producer, then check if other correlation ids are available if (node.getClass() == Producer.class) { List<CorrelationIdentifier> cids = node.findCorrelationIds(Scope.Interaction, Scope.ControlFlow); if (!cids.isEmpty()) { for (int i = 0; i < cids.size(); i++) { CorrelationIdentifier cid = cids.get(i); SourceInfo copy = new SourceInfo(si); copy.setId(cid.getValue()); copy.setMultipleConsumers(((Producer)node).multipleConsumers()); if (log.isLoggable(Level.FINEST)) { log.finest("Extra source information for scope=" + cid.getScope() + " id=" + copy.getId() + " si=" + copy); } sourceInfoList.add(copy); } } } if (node instanceof ContainerNode) { int nodeIdLen = parentNodeId.length(); for (int j = 0; j < ((ContainerNode) node).getNodes().size(); j++) { initialiseSourceInfo(sourceInfoList, tenantId, trace, parentNodeId, j, ((ContainerNode) node).getNodes().get(j)); // Restore parent node id parentNodeId.delete(nodeIdLen, parentNodeId.length()); } } }
[ "protected", "static", "void", "initialiseSourceInfo", "(", "List", "<", "SourceInfo", ">", "sourceInfoList", ",", "String", "tenantId", ",", "Trace", "trace", ",", "StringBuffer", "parentNodeId", ",", "int", "pos", ",", "Node", "node", ")", "{", "SourceInfo", ...
This method initialises an individual node within a trace. @param sourceInfoList The source info list @param tenantId The tenant id @param trace The trace @param parentNodeId The parent node id @param node The node
[ "This", "method", "initialises", "an", "individual", "node", "within", "a", "trace", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/server/api/src/main/java/org/hawkular/apm/server/api/utils/SourceInfoUtil.java#L110-L169
train
hawkular/hawkular-apm
server/api/src/main/java/org/hawkular/apm/server/api/utils/SourceInfoUtil.java
SourceInfoUtil.findRootOrServerSpan
protected static Span findRootOrServerSpan(String tenantId, Span span, SpanCache spanCache) { while (span != null && !span.serverSpan() && !span.topLevelSpan()) { span = spanCache.get(tenantId, span.getParentId()); } return span; }
java
protected static Span findRootOrServerSpan(String tenantId, Span span, SpanCache spanCache) { while (span != null && !span.serverSpan() && !span.topLevelSpan()) { span = spanCache.get(tenantId, span.getParentId()); } return span; }
[ "protected", "static", "Span", "findRootOrServerSpan", "(", "String", "tenantId", ",", "Span", "span", ",", "SpanCache", "spanCache", ")", "{", "while", "(", "span", "!=", "null", "&&", "!", "span", ".", "serverSpan", "(", ")", "&&", "!", "span", ".", "t...
This method identifies the root or enclosing server span that contains the supplied client span. @param tenantId The tenant id @param span The client span @param spanCache The span cache @return The root or enclosing server span, or null if not found
[ "This", "method", "identifies", "the", "root", "or", "enclosing", "server", "span", "that", "contains", "the", "supplied", "client", "span", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/server/api/src/main/java/org/hawkular/apm/server/api/utils/SourceInfoUtil.java#L180-L186
train
hawkular/hawkular-apm
server/api/src/main/java/org/hawkular/apm/server/api/utils/SourceInfoUtil.java
SourceInfoUtil.getSourceInfo
public static SourceInfo getSourceInfo(String tenantId, Span serverSpan, SpanCache spanCache) { String clientSpanId = SpanUniqueIdGenerator.getClientId(serverSpan.getId()); if (spanCache != null && clientSpanId != null) { Span clientSpan = spanCache.get(tenantId, clientSpanId); // Work up span hierarchy until find a server span, or top level span Span rootOrServerSpan = findRootOrServerSpan(tenantId, clientSpan, spanCache); if (rootOrServerSpan != null) { // Build source information SourceInfo si = new SourceInfo(); if (clientSpan.getDuration() != null) { si.setDuration(clientSpan.getDuration()); } if (clientSpan.getTimestamp() != null) { si.setTimestamp(clientSpan.getTimestamp()); } si.setTraceId(clientSpan.getTraceId()); si.setFragmentId(clientSpan.getId()); si.getProperties().addAll(clientSpan.binaryAnnotationMapping().getProperties()); si.setHostAddress(clientSpan.ipv4()); if (clientSpan.service() != null) { si.getProperties().add(new Property(Constants.PROP_SERVICE_NAME, clientSpan.service())); } si.setId(clientSpan.getId()); si.setMultipleConsumers(false); URL url = rootOrServerSpan.url(); si.setEndpoint(new EndpointRef((url != null ? url.getPath() : null), SpanDeriverUtil.deriveOperation(rootOrServerSpan), !rootOrServerSpan.serverSpan())); return si; } } return null; }
java
public static SourceInfo getSourceInfo(String tenantId, Span serverSpan, SpanCache spanCache) { String clientSpanId = SpanUniqueIdGenerator.getClientId(serverSpan.getId()); if (spanCache != null && clientSpanId != null) { Span clientSpan = spanCache.get(tenantId, clientSpanId); // Work up span hierarchy until find a server span, or top level span Span rootOrServerSpan = findRootOrServerSpan(tenantId, clientSpan, spanCache); if (rootOrServerSpan != null) { // Build source information SourceInfo si = new SourceInfo(); if (clientSpan.getDuration() != null) { si.setDuration(clientSpan.getDuration()); } if (clientSpan.getTimestamp() != null) { si.setTimestamp(clientSpan.getTimestamp()); } si.setTraceId(clientSpan.getTraceId()); si.setFragmentId(clientSpan.getId()); si.getProperties().addAll(clientSpan.binaryAnnotationMapping().getProperties()); si.setHostAddress(clientSpan.ipv4()); if (clientSpan.service() != null) { si.getProperties().add(new Property(Constants.PROP_SERVICE_NAME, clientSpan.service())); } si.setId(clientSpan.getId()); si.setMultipleConsumers(false); URL url = rootOrServerSpan.url(); si.setEndpoint(new EndpointRef((url != null ? url.getPath() : null), SpanDeriverUtil.deriveOperation(rootOrServerSpan), !rootOrServerSpan.serverSpan())); return si; } } return null; }
[ "public", "static", "SourceInfo", "getSourceInfo", "(", "String", "tenantId", ",", "Span", "serverSpan", ",", "SpanCache", "spanCache", ")", "{", "String", "clientSpanId", "=", "SpanUniqueIdGenerator", ".", "getClientId", "(", "serverSpan", ".", "getId", "(", ")",...
This method attempts to derive the Source Information for the supplied server span. If the information is not available, then a null will be returned, which can be used to trigger a retry attempt if appropriate. @param tenantId The tenant id @param serverSpan The server span @param spanCache The cache @return The source information, or null if not found
[ "This", "method", "attempts", "to", "derive", "the", "Source", "Information", "for", "the", "supplied", "server", "span", ".", "If", "the", "information", "is", "not", "available", "then", "a", "null", "will", "be", "returned", "which", "can", "be", "used", ...
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/server/api/src/main/java/org/hawkular/apm/server/api/utils/SourceInfoUtil.java#L198-L238
train
hawkular/hawkular-apm
api/src/main/java/org/hawkular/apm/api/internal/actions/ProcessorActionHandlerFactory.java
ProcessorActionHandlerFactory.getHandler
public static ProcessorActionHandler getHandler(ProcessorAction action) { ProcessorActionHandler ret = null; Class<? extends ProcessorActionHandler> cls = handlers.get(action.getClass()); if (cls != null) { try { Constructor<? extends ProcessorActionHandler> con = cls.getConstructor(ProcessorAction.class); ret = con.newInstance(action); } catch (Exception e) { log.log(Level.SEVERE, "Failed to instantiate handler for action '" + action + "'", e); } } return ret; }
java
public static ProcessorActionHandler getHandler(ProcessorAction action) { ProcessorActionHandler ret = null; Class<? extends ProcessorActionHandler> cls = handlers.get(action.getClass()); if (cls != null) { try { Constructor<? extends ProcessorActionHandler> con = cls.getConstructor(ProcessorAction.class); ret = con.newInstance(action); } catch (Exception e) { log.log(Level.SEVERE, "Failed to instantiate handler for action '" + action + "'", e); } } return ret; }
[ "public", "static", "ProcessorActionHandler", "getHandler", "(", "ProcessorAction", "action", ")", "{", "ProcessorActionHandler", "ret", "=", "null", ";", "Class", "<", "?", "extends", "ProcessorActionHandler", ">", "cls", "=", "handlers", ".", "get", "(", "action...
This method returns an action handler for the supplied action. @param action The action @return The handler
[ "This", "method", "returns", "an", "action", "handler", "for", "the", "supplied", "action", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/api/src/main/java/org/hawkular/apm/api/internal/actions/ProcessorActionHandlerFactory.java#L57-L69
train
hawkular/hawkular-apm
client/instrumenter/src/main/java/org/hawkular/apm/instrumenter/ClientManager.java
ClientManager.processConfig
protected static boolean processConfig() { // Read configuration CollectorConfiguration config = configService.getCollector(null, null, null, null); if (config != null) { try { updateInstrumentation(config); } catch (Exception e) { log.severe("Failed to update instrumentation rules: " + e); } } return config != null; }
java
protected static boolean processConfig() { // Read configuration CollectorConfiguration config = configService.getCollector(null, null, null, null); if (config != null) { try { updateInstrumentation(config); } catch (Exception e) { log.severe("Failed to update instrumentation rules: " + e); } } return config != null; }
[ "protected", "static", "boolean", "processConfig", "(", ")", "{", "// Read configuration", "CollectorConfiguration", "config", "=", "configService", ".", "getCollector", "(", "null", ",", "null", ",", "null", ",", "null", ")", ";", "if", "(", "config", "!=", "...
This method attempts to retrieve and process the instrumentation information contained within the collector configuration. @return Whether the configuration has been retrieved and processed
[ "This", "method", "attempts", "to", "retrieve", "and", "process", "the", "instrumentation", "information", "contained", "within", "the", "collector", "configuration", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/client/instrumenter/src/main/java/org/hawkular/apm/instrumenter/ClientManager.java#L125-L138
train
hawkular/hawkular-apm
client/instrumenter/src/main/java/org/hawkular/apm/instrumenter/ClientManager.java
ClientManager.updateInstrumentation
public static void updateInstrumentation(CollectorConfiguration config) throws Exception { List<String> scripts = new ArrayList<String>(); List<String> scriptNames = new ArrayList<String>(); Map<String, Instrumentation> instrumentTypes=config.getInstrumentation(); for (Map.Entry<String, Instrumentation> stringInstrumentationEntry : instrumentTypes.entrySet()) { Instrumentation types = stringInstrumentationEntry.getValue(); String rules = ruleTransformer.transform(stringInstrumentationEntry.getKey(), types, config.getProperty("version."+ stringInstrumentationEntry.getKey(), null)); if (log.isLoggable(Level.FINER)) { log.finer("Update instrumentation script name=" + stringInstrumentationEntry.getKey() + " rules=" + rules); } if (rules != null) { scriptNames.add(stringInstrumentationEntry.getKey()); scripts.add(rules); } } PrintWriter writer = new PrintWriter(new StringWriter()); transformer.installScript(scripts, scriptNames, writer); writer.close(); }
java
public static void updateInstrumentation(CollectorConfiguration config) throws Exception { List<String> scripts = new ArrayList<String>(); List<String> scriptNames = new ArrayList<String>(); Map<String, Instrumentation> instrumentTypes=config.getInstrumentation(); for (Map.Entry<String, Instrumentation> stringInstrumentationEntry : instrumentTypes.entrySet()) { Instrumentation types = stringInstrumentationEntry.getValue(); String rules = ruleTransformer.transform(stringInstrumentationEntry.getKey(), types, config.getProperty("version."+ stringInstrumentationEntry.getKey(), null)); if (log.isLoggable(Level.FINER)) { log.finer("Update instrumentation script name=" + stringInstrumentationEntry.getKey() + " rules=" + rules); } if (rules != null) { scriptNames.add(stringInstrumentationEntry.getKey()); scripts.add(rules); } } PrintWriter writer = new PrintWriter(new StringWriter()); transformer.installScript(scripts, scriptNames, writer); writer.close(); }
[ "public", "static", "void", "updateInstrumentation", "(", "CollectorConfiguration", "config", ")", "throws", "Exception", "{", "List", "<", "String", ">", "scripts", "=", "new", "ArrayList", "<", "String", ">", "(", ")", ";", "List", "<", "String", ">", "scr...
This method updates the instrumentation instructions. @param config The collector configuration @throws Exception Failed to update instrumentation rules
[ "This", "method", "updates", "the", "instrumentation", "instructions", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/client/instrumenter/src/main/java/org/hawkular/apm/instrumenter/ClientManager.java#L146-L171
train
hawkular/hawkular-apm
client/opentracing/src/main/java/org/hawkular/apm/client/opentracing/NodeBuilder.java
NodeBuilder.build
public Node build() { ContainerNode ret = null; if (nodeType == NodeType.Component) { ret = new Component(); ((Component) ret).setComponentType(componentType); } else if (nodeType == NodeType.Consumer) { ret = new Consumer(); ((Consumer) ret).setEndpointType(endpointType); } else if (nodeType == NodeType.Producer) { ret = new Producer(); ((Producer) ret).setEndpointType(endpointType); } ret.setCorrelationIds(correlationIds); ret.setOperation(operation); ret.setProperties(properties); ret.setUri(uri); ret.setDuration(duration); ret.setTimestamp(timestamp); for (int i = 0; i < nodes.size(); i++) { ret.getNodes().add(nodes.get(i).build()); } // Check if template has been supplied for URI NodeUtil.rewriteURI(ret); return ret; }
java
public Node build() { ContainerNode ret = null; if (nodeType == NodeType.Component) { ret = new Component(); ((Component) ret).setComponentType(componentType); } else if (nodeType == NodeType.Consumer) { ret = new Consumer(); ((Consumer) ret).setEndpointType(endpointType); } else if (nodeType == NodeType.Producer) { ret = new Producer(); ((Producer) ret).setEndpointType(endpointType); } ret.setCorrelationIds(correlationIds); ret.setOperation(operation); ret.setProperties(properties); ret.setUri(uri); ret.setDuration(duration); ret.setTimestamp(timestamp); for (int i = 0; i < nodes.size(); i++) { ret.getNodes().add(nodes.get(i).build()); } // Check if template has been supplied for URI NodeUtil.rewriteURI(ret); return ret; }
[ "public", "Node", "build", "(", ")", "{", "ContainerNode", "ret", "=", "null", ";", "if", "(", "nodeType", "==", "NodeType", ".", "Component", ")", "{", "ret", "=", "new", "Component", "(", ")", ";", "(", "(", "Component", ")", "ret", ")", ".", "se...
This method builds the node hierarchy. @return The node hierarchy
[ "This", "method", "builds", "the", "node", "hierarchy", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/client/opentracing/src/main/java/org/hawkular/apm/client/opentracing/NodeBuilder.java#L202-L230
train
hawkular/hawkular-apm
client/opentracing/src/main/java/org/hawkular/apm/client/opentracing/TraceContext.java
TraceContext.endProcessingNode
public void endProcessingNode() { if (nodeCount.decrementAndGet() == 0 && recorder != null) { Node node = rootNode.build(); trace.setTimestamp(node.getTimestamp()); trace.setTransaction(getTransaction()); trace.getNodes().add(node); if (checkForSamplingProperties(node)) { reportingLevel = ReportingLevel.All; } boolean sampled = sampler.isSampled(trace, reportingLevel); if (sampled && reportingLevel == null) { reportingLevel = ReportingLevel.All; } if (sampled) { recorder.record(trace); } } }
java
public void endProcessingNode() { if (nodeCount.decrementAndGet() == 0 && recorder != null) { Node node = rootNode.build(); trace.setTimestamp(node.getTimestamp()); trace.setTransaction(getTransaction()); trace.getNodes().add(node); if (checkForSamplingProperties(node)) { reportingLevel = ReportingLevel.All; } boolean sampled = sampler.isSampled(trace, reportingLevel); if (sampled && reportingLevel == null) { reportingLevel = ReportingLevel.All; } if (sampled) { recorder.record(trace); } } }
[ "public", "void", "endProcessingNode", "(", ")", "{", "if", "(", "nodeCount", ".", "decrementAndGet", "(", ")", "==", "0", "&&", "recorder", "!=", "null", ")", "{", "Node", "node", "=", "rootNode", ".", "build", "(", ")", ";", "trace", ".", "setTimesta...
This method indicates the end of processing a node within the trace instance. Once all nodes for a trace have completed being processed, the trace will be reported.
[ "This", "method", "indicates", "the", "end", "of", "processing", "a", "node", "within", "the", "trace", "instance", ".", "Once", "all", "nodes", "for", "a", "trace", "have", "completed", "being", "processed", "the", "trace", "will", "be", "reported", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/client/opentracing/src/main/java/org/hawkular/apm/client/opentracing/TraceContext.java#L108-L129
train
hawkular/hawkular-apm
client/opentracing/src/main/java/org/hawkular/apm/client/opentracing/TraceContext.java
TraceContext.getSourceEndpoint
public EndpointRef getSourceEndpoint() { return new EndpointRef(TagUtil.getUriPath(topSpan.getTags()), topSpan.getOperationName(), false); }
java
public EndpointRef getSourceEndpoint() { return new EndpointRef(TagUtil.getUriPath(topSpan.getTags()), topSpan.getOperationName(), false); }
[ "public", "EndpointRef", "getSourceEndpoint", "(", ")", "{", "return", "new", "EndpointRef", "(", "TagUtil", ".", "getUriPath", "(", "topSpan", ".", "getTags", "(", ")", ")", ",", "topSpan", ".", "getOperationName", "(", ")", ",", "false", ")", ";", "}" ]
This method returns the source endpoint for the root trace fragment generated by the service invocation. @return The source endpoint
[ "This", "method", "returns", "the", "source", "endpoint", "for", "the", "root", "trace", "fragment", "generated", "by", "the", "service", "invocation", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/client/opentracing/src/main/java/org/hawkular/apm/client/opentracing/TraceContext.java#L202-L204
train
hawkular/hawkular-apm
client/opentracing/src/main/java/org/hawkular/apm/client/opentracing/TraceContext.java
TraceContext.initTraceState
public void initTraceState(Map<String, Object> state) { Object traceId = state.get(Constants.HAWKULAR_APM_TRACEID); Object transaction = state.get(Constants.HAWKULAR_APM_TXN); Object level = state.get(Constants.HAWKULAR_APM_LEVEL); if (traceId != null) { setTraceId(traceId.toString()); } else { log.severe("Trace id has not been propagated"); } if (transaction != null) { setTransaction(transaction.toString()); } if (level != null) { setReportingLevel(ReportingLevel.valueOf(level.toString())); } }
java
public void initTraceState(Map<String, Object> state) { Object traceId = state.get(Constants.HAWKULAR_APM_TRACEID); Object transaction = state.get(Constants.HAWKULAR_APM_TXN); Object level = state.get(Constants.HAWKULAR_APM_LEVEL); if (traceId != null) { setTraceId(traceId.toString()); } else { log.severe("Trace id has not been propagated"); } if (transaction != null) { setTransaction(transaction.toString()); } if (level != null) { setReportingLevel(ReportingLevel.valueOf(level.toString())); } }
[ "public", "void", "initTraceState", "(", "Map", "<", "String", ",", "Object", ">", "state", ")", "{", "Object", "traceId", "=", "state", ".", "get", "(", "Constants", ".", "HAWKULAR_APM_TRACEID", ")", ";", "Object", "transaction", "=", "state", ".", "get",...
Initialise the trace state from the supplied state. @param state The propagated state
[ "Initialise", "the", "trace", "state", "from", "the", "supplied", "state", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/client/opentracing/src/main/java/org/hawkular/apm/client/opentracing/TraceContext.java#L211-L226
train
hawkular/hawkular-apm
client/opentracing/src/main/java/org/hawkular/apm/client/opentracing/TraceContext.java
TraceContext.checkForSamplingProperties
private static boolean checkForSamplingProperties(Node node) { Set<Property> samplingProperties = node instanceof ContainerNode ? ((ContainerNode) node).getPropertiesIncludingDescendants(Tags.SAMPLING_PRIORITY.getKey()) : node.getProperties(Tags.SAMPLING_PRIORITY.getKey()); for (Property prop: samplingProperties) { int priority = 0; try { priority = Integer.parseInt(prop.getValue()); } catch (NumberFormatException ex) { // continue on error } if (priority > 0) { return true; } } return false; }
java
private static boolean checkForSamplingProperties(Node node) { Set<Property> samplingProperties = node instanceof ContainerNode ? ((ContainerNode) node).getPropertiesIncludingDescendants(Tags.SAMPLING_PRIORITY.getKey()) : node.getProperties(Tags.SAMPLING_PRIORITY.getKey()); for (Property prop: samplingProperties) { int priority = 0; try { priority = Integer.parseInt(prop.getValue()); } catch (NumberFormatException ex) { // continue on error } if (priority > 0) { return true; } } return false; }
[ "private", "static", "boolean", "checkForSamplingProperties", "(", "Node", "node", ")", "{", "Set", "<", "Property", ">", "samplingProperties", "=", "node", "instanceof", "ContainerNode", "?", "(", "(", "ContainerNode", ")", "node", ")", ".", "getPropertiesIncludi...
This method is looking for sampling tag in nodes properties to override current sampling. @param node It sh @return boolean whether trace should be sampled or not
[ "This", "method", "is", "looking", "for", "sampling", "tag", "in", "nodes", "properties", "to", "override", "current", "sampling", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/client/opentracing/src/main/java/org/hawkular/apm/client/opentracing/TraceContext.java#L234-L253
train
hawkular/hawkular-apm
api/src/main/java/org/hawkular/apm/api/utils/EndpointUtil.java
EndpointUtil.encodeEndpoint
public static String encodeEndpoint(String uri, String operation) { StringBuilder buf=new StringBuilder(); if (uri != null && !uri.trim().isEmpty()) { buf.append(uri); } if (operation != null && !operation.trim().isEmpty()) { buf.append('['); buf.append(operation); buf.append(']'); } return buf.toString(); }
java
public static String encodeEndpoint(String uri, String operation) { StringBuilder buf=new StringBuilder(); if (uri != null && !uri.trim().isEmpty()) { buf.append(uri); } if (operation != null && !operation.trim().isEmpty()) { buf.append('['); buf.append(operation); buf.append(']'); } return buf.toString(); }
[ "public", "static", "String", "encodeEndpoint", "(", "String", "uri", ",", "String", "operation", ")", "{", "StringBuilder", "buf", "=", "new", "StringBuilder", "(", ")", ";", "if", "(", "uri", "!=", "null", "&&", "!", "uri", ".", "trim", "(", ")", "."...
This method converts the supplied URI and optional operation into an endpoint descriptor. @param uri The URI @param operation The optional operation @return The endpoint descriptor
[ "This", "method", "converts", "the", "supplied", "URI", "and", "optional", "operation", "into", "an", "endpoint", "descriptor", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/api/src/main/java/org/hawkular/apm/api/utils/EndpointUtil.java#L40-L51
train
hawkular/hawkular-apm
api/src/main/java/org/hawkular/apm/api/utils/EndpointUtil.java
EndpointUtil.decodeEndpointURI
public static String decodeEndpointURI(String endpoint) { int ind=endpoint.indexOf('['); if (ind == 0) { return null; } else if (ind != -1) { return endpoint.substring(0, ind); } return endpoint; }
java
public static String decodeEndpointURI(String endpoint) { int ind=endpoint.indexOf('['); if (ind == 0) { return null; } else if (ind != -1) { return endpoint.substring(0, ind); } return endpoint; }
[ "public", "static", "String", "decodeEndpointURI", "(", "String", "endpoint", ")", "{", "int", "ind", "=", "endpoint", ".", "indexOf", "(", "'", "'", ")", ";", "if", "(", "ind", "==", "0", ")", "{", "return", "null", ";", "}", "else", "if", "(", "i...
This method returns the URI part of the supplied endpoint. @param endpoint The endpoint @return The URI, or null if endpoint starts with '[' (operation prefix)
[ "This", "method", "returns", "the", "URI", "part", "of", "the", "supplied", "endpoint", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/api/src/main/java/org/hawkular/apm/api/utils/EndpointUtil.java#L59-L67
train
hawkular/hawkular-apm
api/src/main/java/org/hawkular/apm/api/utils/EndpointUtil.java
EndpointUtil.decodeEndpointOperation
public static String decodeEndpointOperation(String endpoint, boolean stripped) { int ind=endpoint.indexOf('['); if (ind != -1) { if (stripped) { return endpoint.substring(ind+1, endpoint.length()-1); } return endpoint.substring(ind); } return null; }
java
public static String decodeEndpointOperation(String endpoint, boolean stripped) { int ind=endpoint.indexOf('['); if (ind != -1) { if (stripped) { return endpoint.substring(ind+1, endpoint.length()-1); } return endpoint.substring(ind); } return null; }
[ "public", "static", "String", "decodeEndpointOperation", "(", "String", "endpoint", ",", "boolean", "stripped", ")", "{", "int", "ind", "=", "endpoint", ".", "indexOf", "(", "'", "'", ")", ";", "if", "(", "ind", "!=", "-", "1", ")", "{", "if", "(", "...
This method returns the operation part of the supplied endpoint. @param endpoint The endpoint @param stripped Whether brackets should be stripped @return The operation
[ "This", "method", "returns", "the", "operation", "part", "of", "the", "supplied", "endpoint", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/api/src/main/java/org/hawkular/apm/api/utils/EndpointUtil.java#L76-L85
train
hawkular/hawkular-apm
api/src/main/java/org/hawkular/apm/api/utils/EndpointUtil.java
EndpointUtil.encodeClientURI
public static String encodeClientURI(String uri) { if (uri == null) { return Constants.URI_CLIENT_PREFIX; } return Constants.URI_CLIENT_PREFIX + uri; }
java
public static String encodeClientURI(String uri) { if (uri == null) { return Constants.URI_CLIENT_PREFIX; } return Constants.URI_CLIENT_PREFIX + uri; }
[ "public", "static", "String", "encodeClientURI", "(", "String", "uri", ")", "{", "if", "(", "uri", "==", "null", ")", "{", "return", "Constants", ".", "URI_CLIENT_PREFIX", ";", "}", "return", "Constants", ".", "URI_CLIENT_PREFIX", "+", "uri", ";", "}" ]
This method provides a client based encoding of an URI. This is required to identify the client node invoking a service using a particular URI. @param uri The original URI @return The client side version of the URI
[ "This", "method", "provides", "a", "client", "based", "encoding", "of", "an", "URI", ".", "This", "is", "required", "to", "identify", "the", "client", "node", "invoking", "a", "service", "using", "a", "particular", "URI", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/api/src/main/java/org/hawkular/apm/api/utils/EndpointUtil.java#L94-L99
train
hawkular/hawkular-apm
api/src/main/java/org/hawkular/apm/api/utils/EndpointUtil.java
EndpointUtil.decodeClientURI
public static String decodeClientURI(String clientUri) { return clientUri.startsWith(Constants.URI_CLIENT_PREFIX) ? clientUri.substring(Constants.URI_CLIENT_PREFIX.length()): clientUri; }
java
public static String decodeClientURI(String clientUri) { return clientUri.startsWith(Constants.URI_CLIENT_PREFIX) ? clientUri.substring(Constants.URI_CLIENT_PREFIX.length()): clientUri; }
[ "public", "static", "String", "decodeClientURI", "(", "String", "clientUri", ")", "{", "return", "clientUri", ".", "startsWith", "(", "Constants", ".", "URI_CLIENT_PREFIX", ")", "?", "clientUri", ".", "substring", "(", "Constants", ".", "URI_CLIENT_PREFIX", ".", ...
This method provides a decoding of a client based URI. @param clientUri The client URI @return The original URI
[ "This", "method", "provides", "a", "decoding", "of", "a", "client", "based", "URI", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/api/src/main/java/org/hawkular/apm/api/utils/EndpointUtil.java#L107-L110
train
hawkular/hawkular-apm
api/src/main/java/org/hawkular/apm/api/utils/EndpointUtil.java
EndpointUtil.getSourceEndpoint
public static EndpointRef getSourceEndpoint(Trace fragment) { Node rootNode = fragment.getNodes().isEmpty() ? null : fragment.getNodes().get(0); if (rootNode == null) { return null; } // Create endpoint reference. If initial fragment and root node is a Producer, // then define it as a 'client' endpoint to distinguish it from the same // endpoint representing the server return new EndpointRef(rootNode.getUri(), rootNode.getOperation(), fragment.initialFragment() && rootNode instanceof Producer); }
java
public static EndpointRef getSourceEndpoint(Trace fragment) { Node rootNode = fragment.getNodes().isEmpty() ? null : fragment.getNodes().get(0); if (rootNode == null) { return null; } // Create endpoint reference. If initial fragment and root node is a Producer, // then define it as a 'client' endpoint to distinguish it from the same // endpoint representing the server return new EndpointRef(rootNode.getUri(), rootNode.getOperation(), fragment.initialFragment() && rootNode instanceof Producer); }
[ "public", "static", "EndpointRef", "getSourceEndpoint", "(", "Trace", "fragment", ")", "{", "Node", "rootNode", "=", "fragment", ".", "getNodes", "(", ")", ".", "isEmpty", "(", ")", "?", "null", ":", "fragment", ".", "getNodes", "(", ")", ".", "get", "("...
This method determines the source URI that should be attributed to the supplied fragment. If the top level fragment just contains a Producer, then prefix with 'client' to distinguish it from the same endpoint for the service. @param fragment The trace fragment @return The source endpoint
[ "This", "method", "determines", "the", "source", "URI", "that", "should", "be", "attributed", "to", "the", "supplied", "fragment", ".", "If", "the", "top", "level", "fragment", "just", "contains", "a", "Producer", "then", "prefix", "with", "client", "to", "d...
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/api/src/main/java/org/hawkular/apm/api/utils/EndpointUtil.java#L120-L130
train
hawkular/hawkular-apm
client/api/src/main/java/org/hawkular/apm/client/api/recorder/BatchTraceRecorder.java
BatchTraceRecorder.submitTraces
protected void submitTraces() { if (!traces.isEmpty()) { // Locally store list and create new list for subsequent traces List<Trace> toSend = traces; traces = new ArrayList<>(batchSize + 1); executor.execute(new Runnable() { @Override public void run() { try { tracePublisher.publish(tenantId, toSend); } catch (Exception e) { // TODO: Retain for retry log.log(Level.SEVERE, "Failed to publish traces", e); } } }); } }
java
protected void submitTraces() { if (!traces.isEmpty()) { // Locally store list and create new list for subsequent traces List<Trace> toSend = traces; traces = new ArrayList<>(batchSize + 1); executor.execute(new Runnable() { @Override public void run() { try { tracePublisher.publish(tenantId, toSend); } catch (Exception e) { // TODO: Retain for retry log.log(Level.SEVERE, "Failed to publish traces", e); } } }); } }
[ "protected", "void", "submitTraces", "(", ")", "{", "if", "(", "!", "traces", ".", "isEmpty", "(", ")", ")", "{", "// Locally store list and create new list for subsequent traces", "List", "<", "Trace", ">", "toSend", "=", "traces", ";", "traces", "=", "new", ...
This method submits the current list of traces
[ "This", "method", "submits", "the", "current", "list", "of", "traces" ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/client/api/src/main/java/org/hawkular/apm/client/api/recorder/BatchTraceRecorder.java#L147-L165
train
hawkular/hawkular-apm
server/api/src/main/java/org/hawkular/apm/server/api/utils/zipkin/SpanHttpDeriverUtil.java
SpanHttpDeriverUtil.getHttpStatusCodes
public static List<HttpCode> getHttpStatusCodes(List<BinaryAnnotation> binaryAnnotations) { if (binaryAnnotations == null) { return Collections.emptyList(); } List<HttpCode> httpCodes = new ArrayList<>(); for (BinaryAnnotation binaryAnnotation: binaryAnnotations) { if (Constants.ZIPKIN_BIN_ANNOTATION_HTTP_STATUS_CODE.equals(binaryAnnotation.getKey()) && binaryAnnotation.getValue() != null) { String strHttpCode = binaryAnnotation.getValue(); Integer httpCode = toInt(strHttpCode.trim()); if (httpCode != null) { String description = EnglishReasonPhraseCatalog.INSTANCE.getReason(httpCode, Locale.ENGLISH); httpCodes.add(new HttpCode(httpCode, description)); } } } return httpCodes; }
java
public static List<HttpCode> getHttpStatusCodes(List<BinaryAnnotation> binaryAnnotations) { if (binaryAnnotations == null) { return Collections.emptyList(); } List<HttpCode> httpCodes = new ArrayList<>(); for (BinaryAnnotation binaryAnnotation: binaryAnnotations) { if (Constants.ZIPKIN_BIN_ANNOTATION_HTTP_STATUS_CODE.equals(binaryAnnotation.getKey()) && binaryAnnotation.getValue() != null) { String strHttpCode = binaryAnnotation.getValue(); Integer httpCode = toInt(strHttpCode.trim()); if (httpCode != null) { String description = EnglishReasonPhraseCatalog.INSTANCE.getReason(httpCode, Locale.ENGLISH); httpCodes.add(new HttpCode(httpCode, description)); } } } return httpCodes; }
[ "public", "static", "List", "<", "HttpCode", ">", "getHttpStatusCodes", "(", "List", "<", "BinaryAnnotation", ">", "binaryAnnotations", ")", "{", "if", "(", "binaryAnnotations", "==", "null", ")", "{", "return", "Collections", ".", "emptyList", "(", ")", ";", ...
Method returns list of http status codes. @param binaryAnnotations zipkin binary annotations @return http status codes
[ "Method", "returns", "list", "of", "http", "status", "codes", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/server/api/src/main/java/org/hawkular/apm/server/api/utils/zipkin/SpanHttpDeriverUtil.java#L53-L75
train
hawkular/hawkular-apm
server/api/src/main/java/org/hawkular/apm/server/api/utils/zipkin/SpanHttpDeriverUtil.java
SpanHttpDeriverUtil.getClientOrServerErrors
public static List<HttpCode> getClientOrServerErrors(List<HttpCode> httpCodes) { return httpCodes.stream() .filter(x -> x.isClientOrServerError()) .collect(Collectors.toList()); }
java
public static List<HttpCode> getClientOrServerErrors(List<HttpCode> httpCodes) { return httpCodes.stream() .filter(x -> x.isClientOrServerError()) .collect(Collectors.toList()); }
[ "public", "static", "List", "<", "HttpCode", ">", "getClientOrServerErrors", "(", "List", "<", "HttpCode", ">", "httpCodes", ")", "{", "return", "httpCodes", ".", "stream", "(", ")", ".", "filter", "(", "x", "->", "x", ".", "isClientOrServerError", "(", ")...
Method returns only client or sever http errors. @param httpCodes list of http codes @return Http client and server errors
[ "Method", "returns", "only", "client", "or", "sever", "http", "errors", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/server/api/src/main/java/org/hawkular/apm/server/api/utils/zipkin/SpanHttpDeriverUtil.java#L83-L87
train
hawkular/hawkular-apm
server/api/src/main/java/org/hawkular/apm/server/api/utils/zipkin/SpanHttpDeriverUtil.java
SpanHttpDeriverUtil.getHttpMethod
public static String getHttpMethod(Span span) { if (isHttp(span)) { BinaryAnnotation ba = span.getBinaryAnnotation("http.method"); String httpMethod = null; if (ba != null) { httpMethod = ba.getValue().toUpperCase(); } else if (span.getName() != null) { httpMethod = span.getName().toUpperCase(); } if (HTTP_METHODS.contains(httpMethod)) { return httpMethod; } } return null; }
java
public static String getHttpMethod(Span span) { if (isHttp(span)) { BinaryAnnotation ba = span.getBinaryAnnotation("http.method"); String httpMethod = null; if (ba != null) { httpMethod = ba.getValue().toUpperCase(); } else if (span.getName() != null) { httpMethod = span.getName().toUpperCase(); } if (HTTP_METHODS.contains(httpMethod)) { return httpMethod; } } return null; }
[ "public", "static", "String", "getHttpMethod", "(", "Span", "span", ")", "{", "if", "(", "isHttp", "(", "span", ")", ")", "{", "BinaryAnnotation", "ba", "=", "span", ".", "getBinaryAnnotation", "(", "\"http.method\"", ")", ";", "String", "httpMethod", "=", ...
Derives HTTP operation from Span's binary annotations. @param span the span @return HTTP method
[ "Derives", "HTTP", "operation", "from", "Span", "s", "binary", "annotations", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/server/api/src/main/java/org/hawkular/apm/server/api/utils/zipkin/SpanHttpDeriverUtil.java#L95-L111
train
hawkular/hawkular-apm
server/api/src/main/java/org/hawkular/apm/server/api/utils/zipkin/SpanHttpDeriverUtil.java
SpanHttpDeriverUtil.toInt
private static Integer toInt(String str) { Integer num = null; try { num = Integer.parseInt(str); } catch (NumberFormatException ex) { log.severe(String.format("failed to convert str: %s to integer", str)); } return num; }
java
private static Integer toInt(String str) { Integer num = null; try { num = Integer.parseInt(str); } catch (NumberFormatException ex) { log.severe(String.format("failed to convert str: %s to integer", str)); } return num; }
[ "private", "static", "Integer", "toInt", "(", "String", "str", ")", "{", "Integer", "num", "=", "null", ";", "try", "{", "num", "=", "Integer", ".", "parseInt", "(", "str", ")", ";", "}", "catch", "(", "NumberFormatException", "ex", ")", "{", "log", ...
Converts string to a number. @param str The string @return number or null if conversion failed
[ "Converts", "string", "to", "a", "number", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/server/api/src/main/java/org/hawkular/apm/server/api/utils/zipkin/SpanHttpDeriverUtil.java#L130-L140
train
hawkular/hawkular-apm
api/src/main/java/org/hawkular/apm/api/internal/actions/helpers/Text.java
Text.serialize
public static String serialize(Object value) { if (value instanceof String) { return (String) value; } else if (value instanceof byte[]) { return new String((byte[]) value); }
java
public static String serialize(Object value) { if (value instanceof String) { return (String) value; } else if (value instanceof byte[]) { return new String((byte[]) value); }
[ "public", "static", "String", "serialize", "(", "Object", "value", ")", "{", "if", "(", "value", "instanceof", "String", ")", "{", "return", "(", "String", ")", "value", ";", "}", "else", "if", "(", "value", "instanceof", "byte", "[", "]", ")", "{", ...
This method converts the supplied object to a string. @param value The value @return The string, or null if an error occurred
[ "This", "method", "converts", "the", "supplied", "object", "to", "a", "string", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/api/src/main/java/org/hawkular/apm/api/internal/actions/helpers/Text.java#L36-L41
train
hawkular/hawkular-apm
api/src/main/java/org/hawkular/apm/api/model/trace/Trace.java
Trace.allProperties
public Set<Property> allProperties() { Set<Property> properties = new HashSet<Property>(); for (Node n : nodes) { n.includeProperties(properties); } return Collections.unmodifiableSet(properties); }
java
public Set<Property> allProperties() { Set<Property> properties = new HashSet<Property>(); for (Node n : nodes) { n.includeProperties(properties); } return Collections.unmodifiableSet(properties); }
[ "public", "Set", "<", "Property", ">", "allProperties", "(", ")", "{", "Set", "<", "Property", ">", "properties", "=", "new", "HashSet", "<", "Property", ">", "(", ")", ";", "for", "(", "Node", "n", ":", "nodes", ")", "{", "n", ".", "includePropertie...
This method returns all properties contained in the node hierarchy that can be used to search for the trace. @return Aggregated list of all the properties in the node hierarchy
[ "This", "method", "returns", "all", "properties", "contained", "in", "the", "node", "hierarchy", "that", "can", "be", "used", "to", "search", "for", "the", "trace", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/api/src/main/java/org/hawkular/apm/api/model/trace/Trace.java#L200-L206
train
hawkular/hawkular-apm
api/src/main/java/org/hawkular/apm/api/model/trace/Trace.java
Trace.calculateDuration
public long calculateDuration() { if (!nodes.isEmpty()) { long endTime = 0; for (int i = 0; i < getNodes().size(); i++) { Node node = getNodes().get(i); long nodeEndTime = node.overallEndTime(); if (nodeEndTime > endTime) { endTime = nodeEndTime; } } return endTime - getNodes().get(0).getTimestamp(); } return 0L; }
java
public long calculateDuration() { if (!nodes.isEmpty()) { long endTime = 0; for (int i = 0; i < getNodes().size(); i++) { Node node = getNodes().get(i); long nodeEndTime = node.overallEndTime(); if (nodeEndTime > endTime) { endTime = nodeEndTime; } } return endTime - getNodes().get(0).getTimestamp(); } return 0L; }
[ "public", "long", "calculateDuration", "(", ")", "{", "if", "(", "!", "nodes", ".", "isEmpty", "(", ")", ")", "{", "long", "endTime", "=", "0", ";", "for", "(", "int", "i", "=", "0", ";", "i", "<", "getNodes", "(", ")", ".", "size", "(", ")", ...
This method returns the duration of the trace fragment. @return The duration (in microseconds), or 0 if no nodes defined
[ "This", "method", "returns", "the", "duration", "of", "the", "trace", "fragment", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/api/src/main/java/org/hawkular/apm/api/model/trace/Trace.java#L265-L282
train
hawkular/hawkular-apm
api/src/main/java/org/hawkular/apm/api/model/trace/Trace.java
Trace.getCorrelatedNodes
public Set<Node> getCorrelatedNodes(CorrelationIdentifier cid) { Set<Node> ret = new HashSet<Node>(); for (Node n : getNodes()) { n.findCorrelatedNodes(cid, ret); } return ret; }
java
public Set<Node> getCorrelatedNodes(CorrelationIdentifier cid) { Set<Node> ret = new HashSet<Node>(); for (Node n : getNodes()) { n.findCorrelatedNodes(cid, ret); } return ret; }
[ "public", "Set", "<", "Node", ">", "getCorrelatedNodes", "(", "CorrelationIdentifier", "cid", ")", "{", "Set", "<", "Node", ">", "ret", "=", "new", "HashSet", "<", "Node", ">", "(", ")", ";", "for", "(", "Node", "n", ":", "getNodes", "(", ")", ")", ...
This method locates any node within the trace that is associated with the supplied correlation id. @param cid The correlation identifier @return The nodes that were correlated with the supplied correlation identifier
[ "This", "method", "locates", "any", "node", "within", "the", "trace", "that", "is", "associated", "with", "the", "supplied", "correlation", "id", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/api/src/main/java/org/hawkular/apm/api/model/trace/Trace.java#L291-L299
train
hawkular/hawkular-apm
server/elasticsearch/src/main/java/org/hawkular/apm/server/elasticsearch/ElasticsearchEmbeddedNode.java
ElasticsearchEmbeddedNode.initNode
protected void initNode() { /** * quick fix for integration tests. if hosts property set to "embedded" then a local node is start. * maven dependencies need to be defined correctly for this to work */ ClassLoader cl = Thread.currentThread().getContextClassLoader(); try { // Need to use the classloader for Elasticsearch to pick up the property files when // running in an OSGi environment Thread.currentThread().setContextClassLoader(TransportClient.class.getClassLoader()); final Properties properties = new Properties(); try { InputStream stream = null; if (System.getProperties().containsKey("jboss.server.config.dir")) { File file = new File(System.getProperty("jboss.server.config.dir") + File.separatorChar + HAWKULAR_ELASTICSEARCH_PROPERTIES); stream = new FileInputStream(file); } else { stream = this.getClass().getResourceAsStream(File.separatorChar + HAWKULAR_ELASTICSEARCH_PROPERTIES); } properties.load(stream); stream.close(); } catch (IOException e) { log.log(Level.SEVERE, "Failed to load elasticsearch properties", e); } node = NodeBuilder.nodeBuilder() .settings(ImmutableSettings.settingsBuilder() .put(properties)).node(); node.start(); client = node.client(); } finally { Thread.currentThread().setContextClassLoader(cl); } if (log.isLoggable(Level.FINEST)) { log.finest("Initialized Elasticsearch node=" + node + " client=" + client); } }
java
protected void initNode() { /** * quick fix for integration tests. if hosts property set to "embedded" then a local node is start. * maven dependencies need to be defined correctly for this to work */ ClassLoader cl = Thread.currentThread().getContextClassLoader(); try { // Need to use the classloader for Elasticsearch to pick up the property files when // running in an OSGi environment Thread.currentThread().setContextClassLoader(TransportClient.class.getClassLoader()); final Properties properties = new Properties(); try { InputStream stream = null; if (System.getProperties().containsKey("jboss.server.config.dir")) { File file = new File(System.getProperty("jboss.server.config.dir") + File.separatorChar + HAWKULAR_ELASTICSEARCH_PROPERTIES); stream = new FileInputStream(file); } else { stream = this.getClass().getResourceAsStream(File.separatorChar + HAWKULAR_ELASTICSEARCH_PROPERTIES); } properties.load(stream); stream.close(); } catch (IOException e) { log.log(Level.SEVERE, "Failed to load elasticsearch properties", e); } node = NodeBuilder.nodeBuilder() .settings(ImmutableSettings.settingsBuilder() .put(properties)).node(); node.start(); client = node.client(); } finally { Thread.currentThread().setContextClassLoader(cl); } if (log.isLoggable(Level.FINEST)) { log.finest("Initialized Elasticsearch node=" + node + " client=" + client); } }
[ "protected", "void", "initNode", "(", ")", "{", "/**\n * quick fix for integration tests. if hosts property set to \"embedded\" then a local node is start.\n * maven dependencies need to be defined correctly for this to work\n */", "ClassLoader", "cl", "=", "Thread", "....
This method initializes the node.
[ "This", "method", "initializes", "the", "node", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/server/elasticsearch/src/main/java/org/hawkular/apm/server/elasticsearch/ElasticsearchEmbeddedNode.java#L58-L101
train
hawkular/hawkular-apm
server/elasticsearch/src/main/java/org/hawkular/apm/server/elasticsearch/ElasticsearchEmbeddedNode.java
ElasticsearchEmbeddedNode.close
public void close() { if (log.isLoggable(Level.FINEST)) { log.finest("Close Elasticsearch node=" + node + " client=" + client); } if (client != null) { client.close(); client = null; } if (node != null) { node.stop(); node = null; } }
java
public void close() { if (log.isLoggable(Level.FINEST)) { log.finest("Close Elasticsearch node=" + node + " client=" + client); } if (client != null) { client.close(); client = null; } if (node != null) { node.stop(); node = null; } }
[ "public", "void", "close", "(", ")", "{", "if", "(", "log", ".", "isLoggable", "(", "Level", ".", "FINEST", ")", ")", "{", "log", ".", "finest", "(", "\"Close Elasticsearch node=\"", "+", "node", "+", "\" client=\"", "+", "client", ")", ";", "}", "if",...
This method closes the elasticsearch node.
[ "This", "method", "closes", "the", "elasticsearch", "node", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/server/elasticsearch/src/main/java/org/hawkular/apm/server/elasticsearch/ElasticsearchEmbeddedNode.java#L106-L120
train
hawkular/hawkular-apm
client/instrumenter/src/main/java/org/hawkular/apm/instrumenter/RuleHelper.java
RuleHelper.cast
public <T> T cast(Object obj, Class<T> clz) { if (!clz.isAssignableFrom(obj.getClass())) { return null; } return clz.cast(obj); }
java
public <T> T cast(Object obj, Class<T> clz) { if (!clz.isAssignableFrom(obj.getClass())) { return null; } return clz.cast(obj); }
[ "public", "<", "T", ">", "T", "cast", "(", "Object", "obj", ",", "Class", "<", "T", ">", "clz", ")", "{", "if", "(", "!", "clz", ".", "isAssignableFrom", "(", "obj", ".", "getClass", "(", ")", ")", ")", "{", "return", "null", ";", "}", "return"...
This method casts the supplied object to the nominated class. If the object cannot be cast to the provided type, then a null will be returned. @param obj The object @param clz The class to cast to @return The cast object, or null if the object cannot be cast
[ "This", "method", "casts", "the", "supplied", "object", "to", "the", "nominated", "class", ".", "If", "the", "object", "cannot", "be", "cast", "to", "the", "provided", "type", "then", "a", "null", "will", "be", "returned", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/client/instrumenter/src/main/java/org/hawkular/apm/instrumenter/RuleHelper.java#L142-L147
train
hawkular/hawkular-apm
client/instrumenter/src/main/java/org/hawkular/apm/instrumenter/RuleHelper.java
RuleHelper.formatSQL
public String formatSQL(Object obj, Object expr) { String sql = null; // Check whether an SQL statement has been provided if (expr instanceof String) { sql = (String)expr; if (log.isLoggable(Level.FINEST)) { log.finest("SQL retrieved from state = "+sql); } } else if (obj != null) { sql = toString(obj); if (sql != null) { if (sql.startsWith("prep")) { sql = sql.replaceFirst("prep[0-9]*: ", ""); } sql = sql.replaceAll("X'.*'", BINARY_SQL_MARKER); } if (log.isLoggable(Level.FINEST)) { log.finest("SQL derived from context = "+sql); } } return sql; }
java
public String formatSQL(Object obj, Object expr) { String sql = null; // Check whether an SQL statement has been provided if (expr instanceof String) { sql = (String)expr; if (log.isLoggable(Level.FINEST)) { log.finest("SQL retrieved from state = "+sql); } } else if (obj != null) { sql = toString(obj); if (sql != null) { if (sql.startsWith("prep")) { sql = sql.replaceFirst("prep[0-9]*: ", ""); } sql = sql.replaceAll("X'.*'", BINARY_SQL_MARKER); } if (log.isLoggable(Level.FINEST)) { log.finest("SQL derived from context = "+sql); } } return sql; }
[ "public", "String", "formatSQL", "(", "Object", "obj", ",", "Object", "expr", ")", "{", "String", "sql", "=", "null", ";", "// Check whether an SQL statement has been provided", "if", "(", "expr", "instanceof", "String", ")", "{", "sql", "=", "(", "String", ")...
This method attempts to return a SQL statement. If an expression is supplied, and is string, it will be used. Otherwise the method will attempt to derive an expression from the supplied object. @param obj The object @param expr The optional expression to use @return The SQL statement
[ "This", "method", "attempts", "to", "return", "a", "SQL", "statement", ".", "If", "an", "expression", "is", "supplied", "and", "is", "string", "it", "will", "be", "used", ".", "Otherwise", "the", "method", "will", "attempt", "to", "derive", "an", "expressi...
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/client/instrumenter/src/main/java/org/hawkular/apm/instrumenter/RuleHelper.java#L191-L217
train
hawkular/hawkular-apm
client/instrumenter/src/main/java/org/hawkular/apm/instrumenter/RuleHelper.java
RuleHelper.getFaultDescriptor
protected FaultDescriptor getFaultDescriptor(Object fault) { for (int i = 0; i < faultDescriptors.size(); i++) { if (faultDescriptors.get(i).isValid(fault)) { return faultDescriptors.get(i); } } return null; }
java
protected FaultDescriptor getFaultDescriptor(Object fault) { for (int i = 0; i < faultDescriptors.size(); i++) { if (faultDescriptors.get(i).isValid(fault)) { return faultDescriptors.get(i); } } return null; }
[ "protected", "FaultDescriptor", "getFaultDescriptor", "(", "Object", "fault", ")", "{", "for", "(", "int", "i", "=", "0", ";", "i", "<", "faultDescriptors", ".", "size", "(", ")", ";", "i", "++", ")", "{", "if", "(", "faultDescriptors", ".", "get", "("...
This method attempts to locate a descriptor for the fault. @param fault The fault @return The descriptor, or null if not found
[ "This", "method", "attempts", "to", "locate", "a", "descriptor", "for", "the", "fault", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/client/instrumenter/src/main/java/org/hawkular/apm/instrumenter/RuleHelper.java#L225-L232
train
hawkular/hawkular-apm
client/instrumenter/src/main/java/org/hawkular/apm/instrumenter/RuleHelper.java
RuleHelper.faultName
public String faultName(Object fault) { FaultDescriptor fd = getFaultDescriptor(fault); if (fd != null) { return fd.getName(fault); } return fault.getClass().getSimpleName(); }
java
public String faultName(Object fault) { FaultDescriptor fd = getFaultDescriptor(fault); if (fd != null) { return fd.getName(fault); } return fault.getClass().getSimpleName(); }
[ "public", "String", "faultName", "(", "Object", "fault", ")", "{", "FaultDescriptor", "fd", "=", "getFaultDescriptor", "(", "fault", ")", ";", "if", "(", "fd", "!=", "null", ")", "{", "return", "fd", ".", "getName", "(", "fault", ")", ";", "}", "return...
This method gets the name of the supplied fault. @param fault The fault @return The name
[ "This", "method", "gets", "the", "name", "of", "the", "supplied", "fault", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/client/instrumenter/src/main/java/org/hawkular/apm/instrumenter/RuleHelper.java#L240-L246
train
hawkular/hawkular-apm
client/instrumenter/src/main/java/org/hawkular/apm/instrumenter/RuleHelper.java
RuleHelper.faultDescription
public String faultDescription(Object fault) { FaultDescriptor fd = getFaultDescriptor(fault); if (fd != null) { return fd.getDescription(fault); } return fault.toString(); }
java
public String faultDescription(Object fault) { FaultDescriptor fd = getFaultDescriptor(fault); if (fd != null) { return fd.getDescription(fault); } return fault.toString(); }
[ "public", "String", "faultDescription", "(", "Object", "fault", ")", "{", "FaultDescriptor", "fd", "=", "getFaultDescriptor", "(", "fault", ")", ";", "if", "(", "fd", "!=", "null", ")", "{", "return", "fd", ".", "getDescription", "(", "fault", ")", ";", ...
This method gets the description of the supplied fault. @param fault The fault @return The description
[ "This", "method", "gets", "the", "description", "of", "the", "supplied", "fault", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/client/instrumenter/src/main/java/org/hawkular/apm/instrumenter/RuleHelper.java#L254-L260
train
hawkular/hawkular-apm
client/instrumenter/src/main/java/org/hawkular/apm/instrumenter/RuleHelper.java
RuleHelper.removeAfter
public String removeAfter(String original, String marker) { int index = original.indexOf(marker); if (index != -1) { return original.substring(0, index); } return original; }
java
public String removeAfter(String original, String marker) { int index = original.indexOf(marker); if (index != -1) { return original.substring(0, index); } return original; }
[ "public", "String", "removeAfter", "(", "String", "original", ",", "String", "marker", ")", "{", "int", "index", "=", "original", ".", "indexOf", "(", "marker", ")", ";", "if", "(", "index", "!=", "-", "1", ")", "{", "return", "original", ".", "substri...
This method removes the end part of a string beginning at a specified marker. @param original The original string @param marker The marker identifying the point to remove from @return The modified string
[ "This", "method", "removes", "the", "end", "part", "of", "a", "string", "beginning", "at", "a", "specified", "marker", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/client/instrumenter/src/main/java/org/hawkular/apm/instrumenter/RuleHelper.java#L285-L291
train
hawkular/hawkular-apm
client/instrumenter/src/main/java/org/hawkular/apm/instrumenter/RuleHelper.java
RuleHelper.getHeaders
public Map<String, String> getHeaders(String type, Object target) { HeadersAccessor accessor = getHeadersAccessor(type); if (accessor != null) { Map<String, String> ret = accessor.getHeaders(target); return ret; } return null; }
java
public Map<String, String> getHeaders(String type, Object target) { HeadersAccessor accessor = getHeadersAccessor(type); if (accessor != null) { Map<String, String> ret = accessor.getHeaders(target); return ret; } return null; }
[ "public", "Map", "<", "String", ",", "String", ">", "getHeaders", "(", "String", "type", ",", "Object", "target", ")", "{", "HeadersAccessor", "accessor", "=", "getHeadersAccessor", "(", "type", ")", ";", "if", "(", "accessor", "!=", "null", ")", "{", "M...
This method attempts to provide headers for the supplied target object. @param type The target type @param target The target instance @return The header map
[ "This", "method", "attempts", "to", "provide", "headers", "for", "the", "supplied", "target", "object", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/client/instrumenter/src/main/java/org/hawkular/apm/instrumenter/RuleHelper.java#L310-L317
train
hawkular/hawkular-apm
server/api/src/main/java/org/hawkular/apm/server/api/utils/zipkin/BinaryAnnotationMappingDeriver.java
BinaryAnnotationMappingDeriver.getInstance
public static BinaryAnnotationMappingDeriver getInstance(String path) { if (instance == null) { synchronized (LOCK) { if (instance == null) { instance = path == null ? new BinaryAnnotationMappingDeriver() : new BinaryAnnotationMappingDeriver(path); } } } return instance; }
java
public static BinaryAnnotationMappingDeriver getInstance(String path) { if (instance == null) { synchronized (LOCK) { if (instance == null) { instance = path == null ? new BinaryAnnotationMappingDeriver() : new BinaryAnnotationMappingDeriver(path); } } } return instance; }
[ "public", "static", "BinaryAnnotationMappingDeriver", "getInstance", "(", "String", "path", ")", "{", "if", "(", "instance", "==", "null", ")", "{", "synchronized", "(", "LOCK", ")", "{", "if", "(", "instance", "==", "null", ")", "{", "instance", "=", "pat...
Returns instance of mapping deriver. @param path path to the mapping file @return binary annotation mapping deriver
[ "Returns", "instance", "of", "mapping", "deriver", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/server/api/src/main/java/org/hawkular/apm/server/api/utils/zipkin/BinaryAnnotationMappingDeriver.java#L63-L74
train
hawkular/hawkular-apm
server/api/src/main/java/org/hawkular/apm/server/api/utils/zipkin/BinaryAnnotationMappingDeriver.java
BinaryAnnotationMappingDeriver.mappingResult
public MappingResult mappingResult(List<BinaryAnnotation> binaryAnnotations) { if (binaryAnnotations == null) { return new MappingResult(); } List<String> componentTypes = new ArrayList<>(); List<String> endpointTypes = new ArrayList<>(); MappingResult.Builder mappingBuilder = MappingResult.builder(); for (BinaryAnnotation binaryAnnotation: binaryAnnotations) { if (binaryAnnotation.getKey() == null) { continue; } BinaryAnnotationMapping mapping = mappingStorage.getKeyBasedMappings().get(binaryAnnotation.getKey()); if (mapping != null && mapping.isIgnore()) { continue; } if (mapping == null || mapping.getProperty() == null) { // If no mapping, then just store property mappingBuilder.addProperty(new Property(binaryAnnotation.getKey(), binaryAnnotation.getValue(), AnnotationTypeUtil.toPropertyType(binaryAnnotation.getType()))); } if (mapping != null) { if (mapping.getComponentType() != null) { componentTypes.add(mapping.getComponentType()); } if (mapping.getEndpointType() != null) { endpointTypes.add(mapping.getEndpointType()); } if (mapping.getProperty() != null && !mapping.getProperty().isExclude()) { String key = mapping.getProperty().getKey() != null ? mapping.getProperty().getKey() : binaryAnnotation.getKey(); mappingBuilder.addProperty(new Property(key, binaryAnnotation.getValue(), AnnotationTypeUtil.toPropertyType(binaryAnnotation.getType()))); } } } if (!componentTypes.isEmpty()) { mappingBuilder.withComponentType(componentTypes.get(0)); } if (!endpointTypes.isEmpty()) { mappingBuilder.withEndpointType(endpointTypes.get(0)); } return mappingBuilder.build(); }
java
public MappingResult mappingResult(List<BinaryAnnotation> binaryAnnotations) { if (binaryAnnotations == null) { return new MappingResult(); } List<String> componentTypes = new ArrayList<>(); List<String> endpointTypes = new ArrayList<>(); MappingResult.Builder mappingBuilder = MappingResult.builder(); for (BinaryAnnotation binaryAnnotation: binaryAnnotations) { if (binaryAnnotation.getKey() == null) { continue; } BinaryAnnotationMapping mapping = mappingStorage.getKeyBasedMappings().get(binaryAnnotation.getKey()); if (mapping != null && mapping.isIgnore()) { continue; } if (mapping == null || mapping.getProperty() == null) { // If no mapping, then just store property mappingBuilder.addProperty(new Property(binaryAnnotation.getKey(), binaryAnnotation.getValue(), AnnotationTypeUtil.toPropertyType(binaryAnnotation.getType()))); } if (mapping != null) { if (mapping.getComponentType() != null) { componentTypes.add(mapping.getComponentType()); } if (mapping.getEndpointType() != null) { endpointTypes.add(mapping.getEndpointType()); } if (mapping.getProperty() != null && !mapping.getProperty().isExclude()) { String key = mapping.getProperty().getKey() != null ? mapping.getProperty().getKey() : binaryAnnotation.getKey(); mappingBuilder.addProperty(new Property(key, binaryAnnotation.getValue(), AnnotationTypeUtil.toPropertyType(binaryAnnotation.getType()))); } } } if (!componentTypes.isEmpty()) { mappingBuilder.withComponentType(componentTypes.get(0)); } if (!endpointTypes.isEmpty()) { mappingBuilder.withEndpointType(endpointTypes.get(0)); } return mappingBuilder.build(); }
[ "public", "MappingResult", "mappingResult", "(", "List", "<", "BinaryAnnotation", ">", "binaryAnnotations", ")", "{", "if", "(", "binaryAnnotations", "==", "null", ")", "{", "return", "new", "MappingResult", "(", ")", ";", "}", "List", "<", "String", ">", "c...
Creates a mapping result from supplied binary annotations. @param binaryAnnotations binary annotations of span @return mapping result
[ "Creates", "a", "mapping", "result", "from", "supplied", "binary", "annotations", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/server/api/src/main/java/org/hawkular/apm/server/api/utils/zipkin/BinaryAnnotationMappingDeriver.java#L82-L134
train
hawkular/hawkular-apm
server/processors/src/main/java/org/hawkular/apm/server/processor/nodedetails/NodeDetailsDeriver.java
NodeDetailsDeriver.deriveNodeDetails
protected void deriveNodeDetails(Trace trace, List<Node> nodes, List<NodeDetails> rts, boolean initial, Set<Property> commonProperties) { for (int i = 0; i < nodes.size(); i++) { Node n = nodes.get(i); // If consumer or producer, check that endpoint type has been set, // otherwise indicates internal communication between spawned // fragments, which should not be recorded as nodes, as they will // distort derived statistics. See HWKBTM-434. boolean ignoreNode = false; boolean ignoreChildNodes = false; if (n.getClass() == Consumer.class && ((Consumer) n).getEndpointType() == null) { ignoreNode = true; } else if (n.getClass() == Producer.class && ((Producer) n).getEndpointType() == null) { ignoreNode = true; ignoreChildNodes = true; } if (!ignoreNode) { NodeDetails nd = new NodeDetails(); nd.setId(UUID.randomUUID().toString()); nd.setTraceId(trace.getTraceId()); nd.setFragmentId(trace.getFragmentId()); nd.setTransaction(trace.getTransaction()); nd.setCorrelationIds(n.getCorrelationIds()); nd.setElapsed(n.getDuration()); nd.setActual(calculateActualTime(n)); if (n.getType() == NodeType.Component) { nd.setComponentType(((Component) n).getComponentType()); } else { nd.setComponentType(n.getType().name()); } if (trace.getHostName() != null && !trace.getHostName().trim().isEmpty()) { nd.setHostName(trace.getHostName()); } // Interim solution before discussion HWKAPM-778 resolved. Previously // all NodeDetails derived from a fragment had all of the properties in the // fragment, but this has now been changed so that only the initial node // associated with a fragment will have all the properties for the fragment, // to add filtering for construction of the service dependency diagram. if (initial) { nd.setProperties(trace.allProperties()); nd.setInitial(true); } else { nd.getProperties().addAll(n.getProperties()); nd.getProperties().addAll(commonProperties); } nd.setTimestamp(n.getTimestamp()); nd.setType(n.getType()); nd.setUri(n.getUri()); nd.setOperation(n.getOperation()); rts.add(nd); } initial = false; if (!ignoreChildNodes && n.interactionNode()) { deriveNodeDetails(trace, ((InteractionNode) n).getNodes(), rts, initial, commonProperties); } } }
java
protected void deriveNodeDetails(Trace trace, List<Node> nodes, List<NodeDetails> rts, boolean initial, Set<Property> commonProperties) { for (int i = 0; i < nodes.size(); i++) { Node n = nodes.get(i); // If consumer or producer, check that endpoint type has been set, // otherwise indicates internal communication between spawned // fragments, which should not be recorded as nodes, as they will // distort derived statistics. See HWKBTM-434. boolean ignoreNode = false; boolean ignoreChildNodes = false; if (n.getClass() == Consumer.class && ((Consumer) n).getEndpointType() == null) { ignoreNode = true; } else if (n.getClass() == Producer.class && ((Producer) n).getEndpointType() == null) { ignoreNode = true; ignoreChildNodes = true; } if (!ignoreNode) { NodeDetails nd = new NodeDetails(); nd.setId(UUID.randomUUID().toString()); nd.setTraceId(trace.getTraceId()); nd.setFragmentId(trace.getFragmentId()); nd.setTransaction(trace.getTransaction()); nd.setCorrelationIds(n.getCorrelationIds()); nd.setElapsed(n.getDuration()); nd.setActual(calculateActualTime(n)); if (n.getType() == NodeType.Component) { nd.setComponentType(((Component) n).getComponentType()); } else { nd.setComponentType(n.getType().name()); } if (trace.getHostName() != null && !trace.getHostName().trim().isEmpty()) { nd.setHostName(trace.getHostName()); } // Interim solution before discussion HWKAPM-778 resolved. Previously // all NodeDetails derived from a fragment had all of the properties in the // fragment, but this has now been changed so that only the initial node // associated with a fragment will have all the properties for the fragment, // to add filtering for construction of the service dependency diagram. if (initial) { nd.setProperties(trace.allProperties()); nd.setInitial(true); } else { nd.getProperties().addAll(n.getProperties()); nd.getProperties().addAll(commonProperties); } nd.setTimestamp(n.getTimestamp()); nd.setType(n.getType()); nd.setUri(n.getUri()); nd.setOperation(n.getOperation()); rts.add(nd); } initial = false; if (!ignoreChildNodes && n.interactionNode()) { deriveNodeDetails(trace, ((InteractionNode) n).getNodes(), rts, initial, commonProperties); } } }
[ "protected", "void", "deriveNodeDetails", "(", "Trace", "trace", ",", "List", "<", "Node", ">", "nodes", ",", "List", "<", "NodeDetails", ">", "rts", ",", "boolean", "initial", ",", "Set", "<", "Property", ">", "commonProperties", ")", "{", "for", "(", "...
This method recursively derives the node details metrics for the supplied nodes. @param trace The trace @param nodes The nodes @param rts The list of node details @param initial Whether the first node in the list is the initial node @param commonProperties A set of properties to be applied to all derived NodeDetail objects
[ "This", "method", "recursively", "derives", "the", "node", "details", "metrics", "for", "the", "supplied", "nodes", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/server/processors/src/main/java/org/hawkular/apm/server/processor/nodedetails/NodeDetailsDeriver.java#L81-L147
train
hawkular/hawkular-apm
server/processors/src/main/java/org/hawkular/apm/server/processor/nodedetails/NodeDetailsDeriver.java
NodeDetailsDeriver.obtainCommonProperties
protected Set<Property> obtainCommonProperties(Trace trace) { Set<Property> commonProperties = trace.getProperties(Constants.PROP_SERVICE_NAME); commonProperties.addAll(trace.getProperties(Constants.PROP_BUILD_STAMP)); commonProperties.addAll(trace.getProperties(Constants.PROP_PRINCIPAL)); return commonProperties; }
java
protected Set<Property> obtainCommonProperties(Trace trace) { Set<Property> commonProperties = trace.getProperties(Constants.PROP_SERVICE_NAME); commonProperties.addAll(trace.getProperties(Constants.PROP_BUILD_STAMP)); commonProperties.addAll(trace.getProperties(Constants.PROP_PRINCIPAL)); return commonProperties; }
[ "protected", "Set", "<", "Property", ">", "obtainCommonProperties", "(", "Trace", "trace", ")", "{", "Set", "<", "Property", ">", "commonProperties", "=", "trace", ".", "getProperties", "(", "Constants", ".", "PROP_SERVICE_NAME", ")", ";", "commonProperties", "....
Obtain any properties from the trace that should be applied to all derived NodeDetails. @param trace The trace @return The set of properties to be applied to all derived NodeDetails
[ "Obtain", "any", "properties", "from", "the", "trace", "that", "should", "be", "applied", "to", "all", "derived", "NodeDetails", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/server/processors/src/main/java/org/hawkular/apm/server/processor/nodedetails/NodeDetailsDeriver.java#L155-L160
train
hawkular/hawkular-apm
server/processors/src/main/java/org/hawkular/apm/server/processor/nodedetails/NodeDetailsDeriver.java
NodeDetailsDeriver.calculateActualTime
protected long calculateActualTime(Node n) { long childElapsed = 0; if (n.containerNode()) { long startTime=n.getTimestamp() + n.getDuration(); long endTime = n.getTimestamp(); for (int i = 0; i < ((ContainerNode) n).getNodes().size(); i++) { Node child = ((ContainerNode) n).getNodes().get(i); if (child.getTimestamp() < startTime) { startTime = child.getTimestamp(); } if (endTime < (child.getTimestamp() + child.getDuration())) { endTime = child.getTimestamp() + child.getDuration(); } childElapsed += child.getDuration(); } // Check if child accumulated elapsed time is greater than parent duration // indicating that some/all of the children were concurrently performed. if (childElapsed > n.getDuration()) { // Set child elapsed time to zero, so parent time childElapsed = endTime - startTime; if (childElapsed < 0 || childElapsed > n.getDuration()) { // If child durations are greater than the parent, then // just set actual time to same as parent (i.e. so child // elapsed is considered as 0). childElapsed = 0; } } else if (endTime > n.getTimestamp() + n.getDuration()) { // Child end time after parent end time, so must be async childElapsed = 0; } } return n.getDuration() - childElapsed; }
java
protected long calculateActualTime(Node n) { long childElapsed = 0; if (n.containerNode()) { long startTime=n.getTimestamp() + n.getDuration(); long endTime = n.getTimestamp(); for (int i = 0; i < ((ContainerNode) n).getNodes().size(); i++) { Node child = ((ContainerNode) n).getNodes().get(i); if (child.getTimestamp() < startTime) { startTime = child.getTimestamp(); } if (endTime < (child.getTimestamp() + child.getDuration())) { endTime = child.getTimestamp() + child.getDuration(); } childElapsed += child.getDuration(); } // Check if child accumulated elapsed time is greater than parent duration // indicating that some/all of the children were concurrently performed. if (childElapsed > n.getDuration()) { // Set child elapsed time to zero, so parent time childElapsed = endTime - startTime; if (childElapsed < 0 || childElapsed > n.getDuration()) { // If child durations are greater than the parent, then // just set actual time to same as parent (i.e. so child // elapsed is considered as 0). childElapsed = 0; } } else if (endTime > n.getTimestamp() + n.getDuration()) { // Child end time after parent end time, so must be async childElapsed = 0; } } return n.getDuration() - childElapsed; }
[ "protected", "long", "calculateActualTime", "(", "Node", "n", ")", "{", "long", "childElapsed", "=", "0", ";", "if", "(", "n", ".", "containerNode", "(", ")", ")", "{", "long", "startTime", "=", "n", ".", "getTimestamp", "(", ")", "+", "n", ".", "get...
This method calculates the actual time associated with the supplied node. @param n The node @return The actual time spent in the node
[ "This", "method", "calculates", "the", "actual", "time", "associated", "with", "the", "supplied", "node", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/server/processors/src/main/java/org/hawkular/apm/server/processor/nodedetails/NodeDetailsDeriver.java#L169-L201
train
hawkular/hawkular-apm
api/src/main/java/org/hawkular/apm/api/internal/actions/ProcessorActionHandler.java
ProcessorActionHandler.process
public boolean process(Trace trace, Node node, Direction direction, Map<String, ?> headers, Object[] values) { if (predicate != null) { return predicate.test(trace, node, direction, headers, values); } return true; }
java
public boolean process(Trace trace, Node node, Direction direction, Map<String, ?> headers, Object[] values) { if (predicate != null) { return predicate.test(trace, node, direction, headers, values); } return true; }
[ "public", "boolean", "process", "(", "Trace", "trace", ",", "Node", "node", ",", "Direction", "direction", ",", "Map", "<", "String", ",", "?", ">", "headers", ",", "Object", "[", "]", "values", ")", "{", "if", "(", "predicate", "!=", "null", ")", "{...
This method processes the supplied information to extract the relevant details. @param trace The trace @param node The node @param direction The direction @param headers The optional headers @param values The values @return Whether the data was processed
[ "This", "method", "processes", "the", "supplied", "information", "to", "extract", "the", "relevant", "details", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/api/src/main/java/org/hawkular/apm/api/internal/actions/ProcessorActionHandler.java#L138-L146
train
hawkular/hawkular-apm
api/src/main/java/org/hawkular/apm/api/model/config/instrumentation/jvm/JVM.java
JVM.isVersionValid
public boolean isVersionValid(String version) { if (fromVersion != null && version != null) { if (version.compareTo(fromVersion) < 0) { return false; } } if (toVersion != null) { if (version == null || version.compareTo(toVersion) >= 0) { return false; } } return true; }
java
public boolean isVersionValid(String version) { if (fromVersion != null && version != null) { if (version.compareTo(fromVersion) < 0) { return false; } } if (toVersion != null) { if (version == null || version.compareTo(toVersion) >= 0) { return false; } } return true; }
[ "public", "boolean", "isVersionValid", "(", "String", "version", ")", "{", "if", "(", "fromVersion", "!=", "null", "&&", "version", "!=", "null", ")", "{", "if", "(", "version", ".", "compareTo", "(", "fromVersion", ")", "<", "0", ")", "{", "return", "...
This method determines if the rule is valid for the supplied version. If the supplied version is null, then it is assumed to represent 'latest version' and therefore any rule with a 'toVersion' set will not be valid. @param version The version @return Whether the rule is valid for the supplied version
[ "This", "method", "determines", "if", "the", "rule", "is", "valid", "for", "the", "supplied", "version", ".", "If", "the", "supplied", "version", "is", "null", "then", "it", "is", "assumed", "to", "represent", "latest", "version", "and", "therefore", "any", ...
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/api/src/main/java/org/hawkular/apm/api/model/config/instrumentation/jvm/JVM.java#L233-L245
train
hawkular/hawkular-apm
api/src/main/java/org/hawkular/apm/api/logging/Logger.java
Logger.finest
public void finest(String mesg, Throwable t) { log(Level.FINEST, mesg, t); }
java
public void finest(String mesg, Throwable t) { log(Level.FINEST, mesg, t); }
[ "public", "void", "finest", "(", "String", "mesg", ",", "Throwable", "t", ")", "{", "log", "(", "Level", ".", "FINEST", ",", "mesg", ",", "t", ")", ";", "}" ]
This method logs a message at the FINEST level. @param mesg The message @param t exception to log
[ "This", "method", "logs", "a", "message", "at", "the", "FINEST", "level", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/api/src/main/java/org/hawkular/apm/api/logging/Logger.java#L123-L125
train
hawkular/hawkular-apm
api/src/main/java/org/hawkular/apm/api/logging/Logger.java
Logger.finer
public void finer(String mesg, Throwable t) { log(Level.FINER, mesg, t); }
java
public void finer(String mesg, Throwable t) { log(Level.FINER, mesg, t); }
[ "public", "void", "finer", "(", "String", "mesg", ",", "Throwable", "t", ")", "{", "log", "(", "Level", ".", "FINER", ",", "mesg", ",", "t", ")", ";", "}" ]
This method logs a message at the FINER level. @param mesg The message @param t exception to log
[ "This", "method", "logs", "a", "message", "at", "the", "FINER", "level", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/api/src/main/java/org/hawkular/apm/api/logging/Logger.java#L142-L144
train
hawkular/hawkular-apm
api/src/main/java/org/hawkular/apm/api/logging/Logger.java
Logger.fine
public void fine(String mesg, Throwable t) { log(Level.FINE, mesg, t); }
java
public void fine(String mesg, Throwable t) { log(Level.FINE, mesg, t); }
[ "public", "void", "fine", "(", "String", "mesg", ",", "Throwable", "t", ")", "{", "log", "(", "Level", ".", "FINE", ",", "mesg", ",", "t", ")", ";", "}" ]
This method logs a message at the FINE level. @param mesg The message @param t exception to log
[ "This", "method", "logs", "a", "message", "at", "the", "FINE", "level", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/api/src/main/java/org/hawkular/apm/api/logging/Logger.java#L161-L163
train
hawkular/hawkular-apm
api/src/main/java/org/hawkular/apm/api/logging/Logger.java
Logger.info
public void info(String mesg, Throwable t) { log(Level.INFO, mesg, t); }
java
public void info(String mesg, Throwable t) { log(Level.INFO, mesg, t); }
[ "public", "void", "info", "(", "String", "mesg", ",", "Throwable", "t", ")", "{", "log", "(", "Level", ".", "INFO", ",", "mesg", ",", "t", ")", ";", "}" ]
This method logs a message at the INFO level. @param mesg The message @param t exception to log
[ "This", "method", "logs", "a", "message", "at", "the", "INFO", "level", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/api/src/main/java/org/hawkular/apm/api/logging/Logger.java#L180-L182
train
hawkular/hawkular-apm
api/src/main/java/org/hawkular/apm/api/logging/Logger.java
Logger.warning
public void warning(String mesg, Throwable t) { log(Level.WARNING, mesg, t); }
java
public void warning(String mesg, Throwable t) { log(Level.WARNING, mesg, t); }
[ "public", "void", "warning", "(", "String", "mesg", ",", "Throwable", "t", ")", "{", "log", "(", "Level", ".", "WARNING", ",", "mesg", ",", "t", ")", ";", "}" ]
This method logs a message at the WARNING level. @param mesg The message @param t exception to log
[ "This", "method", "logs", "a", "message", "at", "the", "WARNING", "level", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/api/src/main/java/org/hawkular/apm/api/logging/Logger.java#L199-L201
train
hawkular/hawkular-apm
api/src/main/java/org/hawkular/apm/api/logging/Logger.java
Logger.severe
public void severe(String mesg, Throwable t) { log(Level.SEVERE, mesg, t); }
java
public void severe(String mesg, Throwable t) { log(Level.SEVERE, mesg, t); }
[ "public", "void", "severe", "(", "String", "mesg", ",", "Throwable", "t", ")", "{", "log", "(", "Level", ".", "SEVERE", ",", "mesg", ",", "t", ")", ";", "}" ]
This method logs a message at the SEVERE level. @param mesg The message @param t exception to log
[ "This", "method", "logs", "a", "message", "at", "the", "SEVERE", "level", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/api/src/main/java/org/hawkular/apm/api/logging/Logger.java#L218-L220
train
hawkular/hawkular-apm
api/src/main/java/org/hawkular/apm/api/logging/Logger.java
Logger.log
public void log(Level mesgLevel, String mesg, Throwable t) { if (mesgLevel.ordinal() >= level.ordinal()) { StringBuilder builder = new StringBuilder(); builder.append(mesgLevel.name()); builder.append(": ["); builder.append(simpleClassName != null ? simpleClassName : className); builder.append("] ["); builder.append(Thread.currentThread()); builder.append("] "); builder.append(mesg); if (mesgLevel == Level.SEVERE) { if (julLogger != null) { julLogger.log(java.util.logging.Level.SEVERE, builder.toString(), t); } else { System.err.println(builder.toString()); } } else { if (julLogger != null) { julLogger.info(builder.toString()); } else { System.out.println(builder.toString()); } } if (t != null) { t.printStackTrace(); } } }
java
public void log(Level mesgLevel, String mesg, Throwable t) { if (mesgLevel.ordinal() >= level.ordinal()) { StringBuilder builder = new StringBuilder(); builder.append(mesgLevel.name()); builder.append(": ["); builder.append(simpleClassName != null ? simpleClassName : className); builder.append("] ["); builder.append(Thread.currentThread()); builder.append("] "); builder.append(mesg); if (mesgLevel == Level.SEVERE) { if (julLogger != null) { julLogger.log(java.util.logging.Level.SEVERE, builder.toString(), t); } else { System.err.println(builder.toString()); } } else { if (julLogger != null) { julLogger.info(builder.toString()); } else { System.out.println(builder.toString()); } } if (t != null) { t.printStackTrace(); } } }
[ "public", "void", "log", "(", "Level", "mesgLevel", ",", "String", "mesg", ",", "Throwable", "t", ")", "{", "if", "(", "mesgLevel", ".", "ordinal", "(", ")", ">=", "level", ".", "ordinal", "(", ")", ")", "{", "StringBuilder", "builder", "=", "new", "...
This method logs a message at the supplied message level with an optional exception. @param mesgLevel The level @param mesg The message @param t The optional exception
[ "This", "method", "logs", "a", "message", "at", "the", "supplied", "message", "level", "with", "an", "optional", "exception", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/api/src/main/java/org/hawkular/apm/api/logging/Logger.java#L230-L259
train
hawkular/hawkular-apm
server/api/src/main/java/org/hawkular/apm/server/api/utils/zipkin/SpanDeriverUtil.java
SpanDeriverUtil.deriveOperation
public static String deriveOperation(Span span) { if (SpanHttpDeriverUtil.isHttp(span)) { return SpanHttpDeriverUtil.getHttpMethod(span); } return span.getName(); }
java
public static String deriveOperation(Span span) { if (SpanHttpDeriverUtil.isHttp(span)) { return SpanHttpDeriverUtil.getHttpMethod(span); } return span.getName(); }
[ "public", "static", "String", "deriveOperation", "(", "Span", "span", ")", "{", "if", "(", "SpanHttpDeriverUtil", ".", "isHttp", "(", "span", ")", ")", "{", "return", "SpanHttpDeriverUtil", ".", "getHttpMethod", "(", "span", ")", ";", "}", "return", "span", ...
Derives an operation from supplied span. @param span the Span @return operation (e.g. HTTP method)
[ "Derives", "an", "operation", "from", "supplied", "span", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/server/api/src/main/java/org/hawkular/apm/server/api/utils/zipkin/SpanDeriverUtil.java#L39-L44
train
hawkular/hawkular-apm
client/collector/src/main/java/org/hawkular/apm/client/collector/internal/FragmentBuilder.java
FragmentBuilder.isCompleteExceptIgnoredNodes
public boolean isCompleteExceptIgnoredNodes() { synchronized (nodeStack) { if (nodeStack.isEmpty() && retainedNodes.isEmpty()) { return true; } else { // Check that remaining nodes can be ignored for (int i=0; i < nodeStack.size(); i++) { if (!ignoredNodes.contains(nodeStack.get(i))) { return false; } } for (int i=0; i < retainedNodes.size(); i++) { if (!ignoredNodes.contains(retainedNodes.get(i))) { return false; } } return true; } } }
java
public boolean isCompleteExceptIgnoredNodes() { synchronized (nodeStack) { if (nodeStack.isEmpty() && retainedNodes.isEmpty()) { return true; } else { // Check that remaining nodes can be ignored for (int i=0; i < nodeStack.size(); i++) { if (!ignoredNodes.contains(nodeStack.get(i))) { return false; } } for (int i=0; i < retainedNodes.size(); i++) { if (!ignoredNodes.contains(retainedNodes.get(i))) { return false; } } return true; } } }
[ "public", "boolean", "isCompleteExceptIgnoredNodes", "(", ")", "{", "synchronized", "(", "nodeStack", ")", "{", "if", "(", "nodeStack", ".", "isEmpty", "(", ")", "&&", "retainedNodes", ".", "isEmpty", "(", ")", ")", "{", "return", "true", ";", "}", "else",...
This method determines if the fragment is complete with the exception of ignored nodes. @return Whether the fragment is complete with the exception of ignored nodes
[ "This", "method", "determines", "if", "the", "fragment", "is", "complete", "with", "the", "exception", "of", "ignored", "nodes", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/client/collector/src/main/java/org/hawkular/apm/client/collector/internal/FragmentBuilder.java#L108-L127
train
hawkular/hawkular-apm
client/collector/src/main/java/org/hawkular/apm/client/collector/internal/FragmentBuilder.java
FragmentBuilder.pushNode
public void pushNode(Node node) { initNode(node); // Reset in stream inStream = null; synchronized (nodeStack) { // Clear popped stack poppedNodes.clear(); // Check if fragment is in suppression mode if (suppress) { suppressedNodeStack.push(node); return; } if (nodeStack.isEmpty()) { if (log.isLoggable(Level.FINEST)) { log.finest("Pushing top level node: " + node + " for txn: " + trace); } trace.getNodes().add(node); } else { Node parent = nodeStack.peek(); if (parent instanceof ContainerNode) { if (log.isLoggable(Level.FINEST)) { log.finest("Add node: " + node + " to parent: " + parent + " in txn: " + trace); } ((ContainerNode) parent).getNodes().add(node); } else { log.severe("Attempt to add node '" + node + "' under non-container node '" + parent + "'"); } } nodeStack.push(node); } }
java
public void pushNode(Node node) { initNode(node); // Reset in stream inStream = null; synchronized (nodeStack) { // Clear popped stack poppedNodes.clear(); // Check if fragment is in suppression mode if (suppress) { suppressedNodeStack.push(node); return; } if (nodeStack.isEmpty()) { if (log.isLoggable(Level.FINEST)) { log.finest("Pushing top level node: " + node + " for txn: " + trace); } trace.getNodes().add(node); } else { Node parent = nodeStack.peek(); if (parent instanceof ContainerNode) { if (log.isLoggable(Level.FINEST)) { log.finest("Add node: " + node + " to parent: " + parent + " in txn: " + trace); } ((ContainerNode) parent).getNodes().add(node); } else { log.severe("Attempt to add node '" + node + "' under non-container node '" + parent + "'"); } } nodeStack.push(node); } }
[ "public", "void", "pushNode", "(", "Node", "node", ")", "{", "initNode", "(", "node", ")", ";", "// Reset in stream", "inStream", "=", "null", ";", "synchronized", "(", "nodeStack", ")", "{", "// Clear popped stack", "poppedNodes", ".", "clear", "(", ")", ";...
This method pushes a new node into the trace fragment hierarchy. @param node The new node
[ "This", "method", "pushes", "a", "new", "node", "into", "the", "trace", "fragment", "hierarchy", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/client/collector/src/main/java/org/hawkular/apm/client/collector/internal/FragmentBuilder.java#L236-L272
train
hawkular/hawkular-apm
client/collector/src/main/java/org/hawkular/apm/client/collector/internal/FragmentBuilder.java
FragmentBuilder.popNode
public Node popNode(Class<? extends Node> cls, String uri) { synchronized (nodeStack) { // Check if fragment is in suppression mode if (suppress) { if (!suppressedNodeStack.isEmpty()) { // Check if node is on the suppressed stack Node suppressed = popNode(suppressedNodeStack, cls, uri); if (suppressed != null) { // Popped node from suppressed stack return suppressed; } } else { // If suppression parent popped, then cancel the suppress mode suppress = false; } } return popNode(nodeStack, cls, uri); } }
java
public Node popNode(Class<? extends Node> cls, String uri) { synchronized (nodeStack) { // Check if fragment is in suppression mode if (suppress) { if (!suppressedNodeStack.isEmpty()) { // Check if node is on the suppressed stack Node suppressed = popNode(suppressedNodeStack, cls, uri); if (suppressed != null) { // Popped node from suppressed stack return suppressed; } } else { // If suppression parent popped, then cancel the suppress mode suppress = false; } } return popNode(nodeStack, cls, uri); } }
[ "public", "Node", "popNode", "(", "Class", "<", "?", "extends", "Node", ">", "cls", ",", "String", "uri", ")", "{", "synchronized", "(", "nodeStack", ")", "{", "// Check if fragment is in suppression mode", "if", "(", "suppress", ")", "{", "if", "(", "!", ...
This method pops the latest node from the trace fragment hierarchy. @param cls The type of node to pop @param uri The optional uri to match @return The node
[ "This", "method", "pops", "the", "latest", "node", "from", "the", "trace", "fragment", "hierarchy", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/client/collector/src/main/java/org/hawkular/apm/client/collector/internal/FragmentBuilder.java#L282-L303
train
hawkular/hawkular-apm
client/collector/src/main/java/org/hawkular/apm/client/collector/internal/FragmentBuilder.java
FragmentBuilder.popNode
protected Node popNode(Stack<Node> stack, Class<? extends Node> cls, String uri) { Node top = stack.isEmpty() ? null : stack.peek(); if (top != null) { if (nodeMatches(top, cls, uri)) { Node node = stack.pop(); poppedNodes.push(node); return node; } else { // Scan for potential match, from -2 so don't repeat // check of top node for (int i = stack.size() - 2; i >= 0; i--) { if (nodeMatches(stack.get(i), cls, uri)) { Node node = stack.remove(i); poppedNodes.push(node); return node; } } } } return null; }
java
protected Node popNode(Stack<Node> stack, Class<? extends Node> cls, String uri) { Node top = stack.isEmpty() ? null : stack.peek(); if (top != null) { if (nodeMatches(top, cls, uri)) { Node node = stack.pop(); poppedNodes.push(node); return node; } else { // Scan for potential match, from -2 so don't repeat // check of top node for (int i = stack.size() - 2; i >= 0; i--) { if (nodeMatches(stack.get(i), cls, uri)) { Node node = stack.remove(i); poppedNodes.push(node); return node; } } } } return null; }
[ "protected", "Node", "popNode", "(", "Stack", "<", "Node", ">", "stack", ",", "Class", "<", "?", "extends", "Node", ">", "cls", ",", "String", "uri", ")", "{", "Node", "top", "=", "stack", ".", "isEmpty", "(", ")", "?", "null", ":", "stack", ".", ...
This method pops a node of the defined class and optional uri from the stack. If the uri is not defined, then the latest node of the approach class will be chosen. @param stack The stack @param cls The node type @param uri The optional uri to match @return The node, or null if no suitable candidate is found
[ "This", "method", "pops", "a", "node", "of", "the", "defined", "class", "and", "optional", "uri", "from", "the", "stack", ".", "If", "the", "uri", "is", "not", "defined", "then", "the", "latest", "node", "of", "the", "approach", "class", "will", "be", ...
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/client/collector/src/main/java/org/hawkular/apm/client/collector/internal/FragmentBuilder.java#L315-L337
train
hawkular/hawkular-apm
client/collector/src/main/java/org/hawkular/apm/client/collector/internal/FragmentBuilder.java
FragmentBuilder.nodeMatches
protected boolean nodeMatches(Node node, Class<? extends Node> cls, String uri) { if (node.getClass() == cls) { return uri == null || NodeUtil.isOriginalURI(node, uri); } return false; }
java
protected boolean nodeMatches(Node node, Class<? extends Node> cls, String uri) { if (node.getClass() == cls) { return uri == null || NodeUtil.isOriginalURI(node, uri); } return false; }
[ "protected", "boolean", "nodeMatches", "(", "Node", "node", ",", "Class", "<", "?", "extends", "Node", ">", "cls", ",", "String", "uri", ")", "{", "if", "(", "node", ".", "getClass", "(", ")", "==", "cls", ")", "{", "return", "uri", "==", "null", "...
This method determines whether the supplied node matches the specified class and optional URI. @param node The node @param cls The class @param uri The optional URI @return Whether the node is of the correct type and matches the optional URI
[ "This", "method", "determines", "whether", "the", "supplied", "node", "matches", "the", "specified", "class", "and", "optional", "URI", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/client/collector/src/main/java/org/hawkular/apm/client/collector/internal/FragmentBuilder.java#L348-L354
train
hawkular/hawkular-apm
client/collector/src/main/java/org/hawkular/apm/client/collector/internal/FragmentBuilder.java
FragmentBuilder.retainNode
public void retainNode(String id) { synchronized (retainedNodes) { Node current = getCurrentNode(); if (current != null) { retainedNodes.put(id, current); } } }
java
public void retainNode(String id) { synchronized (retainedNodes) { Node current = getCurrentNode(); if (current != null) { retainedNodes.put(id, current); } } }
[ "public", "void", "retainNode", "(", "String", "id", ")", "{", "synchronized", "(", "retainedNodes", ")", "{", "Node", "current", "=", "getCurrentNode", "(", ")", ";", "if", "(", "current", "!=", "null", ")", "{", "retainedNodes", ".", "put", "(", "id", ...
This method indicates that the current node, for this thread of execution, should be retained temporarily pending further changes. @param id The identifier used to later on to identify the node
[ "This", "method", "indicates", "that", "the", "current", "node", "for", "this", "thread", "of", "execution", "should", "be", "retained", "temporarily", "pending", "further", "changes", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/client/collector/src/main/java/org/hawkular/apm/client/collector/internal/FragmentBuilder.java#L362-L370
train
hawkular/hawkular-apm
client/collector/src/main/java/org/hawkular/apm/client/collector/internal/FragmentBuilder.java
FragmentBuilder.addUncompletedCorrelationId
public void addUncompletedCorrelationId(String id, Node node, int position) { NodePlaceholder placeholder = new NodePlaceholder(); placeholder.setNode(node); placeholder.setPosition(position); uncompletedCorrelationIdsNodeMap.put(id, placeholder); }
java
public void addUncompletedCorrelationId(String id, Node node, int position) { NodePlaceholder placeholder = new NodePlaceholder(); placeholder.setNode(node); placeholder.setPosition(position); uncompletedCorrelationIdsNodeMap.put(id, placeholder); }
[ "public", "void", "addUncompletedCorrelationId", "(", "String", "id", ",", "Node", "node", ",", "int", "position", ")", "{", "NodePlaceholder", "placeholder", "=", "new", "NodePlaceholder", "(", ")", ";", "placeholder", ".", "setNode", "(", "node", ")", ";", ...
This method associates a parent node and child position with a correlation id. @param id The correlation id @param node The parent node @param position The child node position within the parent node
[ "This", "method", "associates", "a", "parent", "node", "and", "child", "position", "with", "a", "correlation", "id", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/client/collector/src/main/java/org/hawkular/apm/client/collector/internal/FragmentBuilder.java#L406-L411
train
hawkular/hawkular-apm
client/collector/src/main/java/org/hawkular/apm/client/collector/internal/FragmentBuilder.java
FragmentBuilder.getUncompletedCorrelationIdPosition
public int getUncompletedCorrelationIdPosition(String id) { if (uncompletedCorrelationIdsNodeMap.containsKey(id)) { return uncompletedCorrelationIdsNodeMap.get(id).getPosition(); } return -1; }
java
public int getUncompletedCorrelationIdPosition(String id) { if (uncompletedCorrelationIdsNodeMap.containsKey(id)) { return uncompletedCorrelationIdsNodeMap.get(id).getPosition(); } return -1; }
[ "public", "int", "getUncompletedCorrelationIdPosition", "(", "String", "id", ")", "{", "if", "(", "uncompletedCorrelationIdsNodeMap", ".", "containsKey", "(", "id", ")", ")", "{", "return", "uncompletedCorrelationIdsNodeMap", ".", "get", "(", "id", ")", ".", "getP...
This method returns the child position associated with the supplied correlation id. @param id The correlation id @return The child node position, or -1 if unknown
[ "This", "method", "returns", "the", "child", "position", "associated", "with", "the", "supplied", "correlation", "id", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/client/collector/src/main/java/org/hawkular/apm/client/collector/internal/FragmentBuilder.java#L429-L434
train
hawkular/hawkular-apm
client/collector/src/main/java/org/hawkular/apm/client/collector/internal/FragmentBuilder.java
FragmentBuilder.removeUncompletedCorrelationId
public Node removeUncompletedCorrelationId(String id) { NodePlaceholder placeholder=uncompletedCorrelationIdsNodeMap.remove(id); if (placeholder != null) { return placeholder.getNode(); } return null; }
java
public Node removeUncompletedCorrelationId(String id) { NodePlaceholder placeholder=uncompletedCorrelationIdsNodeMap.remove(id); if (placeholder != null) { return placeholder.getNode(); } return null; }
[ "public", "Node", "removeUncompletedCorrelationId", "(", "String", "id", ")", "{", "NodePlaceholder", "placeholder", "=", "uncompletedCorrelationIdsNodeMap", ".", "remove", "(", "id", ")", ";", "if", "(", "placeholder", "!=", "null", ")", "{", "return", "placehold...
This method removes the uncompleted correlation id and its associated information. @param id The correlation id @return The node associated with the correlation id
[ "This", "method", "removes", "the", "uncompleted", "correlation", "id", "and", "its", "associated", "information", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/client/collector/src/main/java/org/hawkular/apm/client/collector/internal/FragmentBuilder.java#L443-L449
train
hawkular/hawkular-apm
client/collector/src/main/java/org/hawkular/apm/client/collector/internal/FragmentBuilder.java
FragmentBuilder.writeInData
public void writeInData(int hashCode, byte[] b, int offset, int len) { if (inStream != null && (hashCode == -1 || hashCode == inHashCode)) { inStream.write(b, offset, len); } }
java
public void writeInData(int hashCode, byte[] b, int offset, int len) { if (inStream != null && (hashCode == -1 || hashCode == inHashCode)) { inStream.write(b, offset, len); } }
[ "public", "void", "writeInData", "(", "int", "hashCode", ",", "byte", "[", "]", "b", ",", "int", "offset", ",", "int", "len", ")", "{", "if", "(", "inStream", "!=", "null", "&&", "(", "hashCode", "==", "-", "1", "||", "hashCode", "==", "inHashCode", ...
This method writes data to the in buffer. @param hashCode The hash code, or -1 to ignore the hash code @param b The bytes @param offset The offset @param len The length
[ "This", "method", "writes", "data", "to", "the", "in", "buffer", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/client/collector/src/main/java/org/hawkular/apm/client/collector/internal/FragmentBuilder.java#L508-L512
train
hawkular/hawkular-apm
client/collector/src/main/java/org/hawkular/apm/client/collector/internal/FragmentBuilder.java
FragmentBuilder.getInData
public byte[] getInData(int hashCode) { if (inStream != null && (hashCode == -1 || hashCode == inHashCode)) { try { inStream.close(); } catch (IOException e) { log.severe("Failed to close in data stream: " + e); } byte[] b = inStream.toByteArray(); inStream = null; return b; } return null; }
java
public byte[] getInData(int hashCode) { if (inStream != null && (hashCode == -1 || hashCode == inHashCode)) { try { inStream.close(); } catch (IOException e) { log.severe("Failed to close in data stream: " + e); } byte[] b = inStream.toByteArray(); inStream = null; return b; } return null; }
[ "public", "byte", "[", "]", "getInData", "(", "int", "hashCode", ")", "{", "if", "(", "inStream", "!=", "null", "&&", "(", "hashCode", "==", "-", "1", "||", "hashCode", "==", "inHashCode", ")", ")", "{", "try", "{", "inStream", ".", "close", "(", "...
This method returns the data associated with the in buffer and resets the buffer to be inactive. @param hashCode The hash code, or -1 to ignore the hash code @return The data
[ "This", "method", "returns", "the", "data", "associated", "with", "the", "in", "buffer", "and", "resets", "the", "buffer", "to", "be", "inactive", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/client/collector/src/main/java/org/hawkular/apm/client/collector/internal/FragmentBuilder.java#L521-L533
train
hawkular/hawkular-apm
client/collector/src/main/java/org/hawkular/apm/client/collector/internal/FragmentBuilder.java
FragmentBuilder.writeOutData
public void writeOutData(int hashCode, byte[] b, int offset, int len) { if (outStream != null && (hashCode == -1 || hashCode == outHashCode)) { outStream.write(b, offset, len); } }
java
public void writeOutData(int hashCode, byte[] b, int offset, int len) { if (outStream != null && (hashCode == -1 || hashCode == outHashCode)) { outStream.write(b, offset, len); } }
[ "public", "void", "writeOutData", "(", "int", "hashCode", ",", "byte", "[", "]", "b", ",", "int", "offset", ",", "int", "len", ")", "{", "if", "(", "outStream", "!=", "null", "&&", "(", "hashCode", "==", "-", "1", "||", "hashCode", "==", "outHashCode...
This method writes data to the out buffer. @param hashCode The hash code, or -1 to ignore the hash code @param b The bytes @param offset The offset @param len The length
[ "This", "method", "writes", "data", "to", "the", "out", "buffer", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/client/collector/src/main/java/org/hawkular/apm/client/collector/internal/FragmentBuilder.java#L563-L567
train
hawkular/hawkular-apm
client/collector/src/main/java/org/hawkular/apm/client/collector/internal/FragmentBuilder.java
FragmentBuilder.getOutData
public byte[] getOutData(int hashCode) { if (outStream != null && (hashCode == -1 || hashCode == outHashCode)) { try { outStream.close(); } catch (IOException e) { log.severe("Failed to close out data stream: " + e); } byte[] b = outStream.toByteArray(); outStream = null; return b; } return null; }
java
public byte[] getOutData(int hashCode) { if (outStream != null && (hashCode == -1 || hashCode == outHashCode)) { try { outStream.close(); } catch (IOException e) { log.severe("Failed to close out data stream: " + e); } byte[] b = outStream.toByteArray(); outStream = null; return b; } return null; }
[ "public", "byte", "[", "]", "getOutData", "(", "int", "hashCode", ")", "{", "if", "(", "outStream", "!=", "null", "&&", "(", "hashCode", "==", "-", "1", "||", "hashCode", "==", "outHashCode", ")", ")", "{", "try", "{", "outStream", ".", "close", "(",...
This method returns the data associated with the out buffer and resets the buffer to be inactive. @param hashCode The hash code, or -1 to ignore the hash code @return The data
[ "This", "method", "returns", "the", "data", "associated", "with", "the", "out", "buffer", "and", "resets", "the", "buffer", "to", "be", "inactive", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/client/collector/src/main/java/org/hawkular/apm/client/collector/internal/FragmentBuilder.java#L576-L588
train
hawkular/hawkular-apm
client/collector/src/main/java/org/hawkular/apm/client/collector/internal/FragmentBuilder.java
FragmentBuilder.setState
public void setState(Object context, String name, Object value) { StateInformation si = stateInformation.get(name); if (si == null) { si = new StateInformation(); stateInformation.put(name, si); } si.set(context, value); }
java
public void setState(Object context, String name, Object value) { StateInformation si = stateInformation.get(name); if (si == null) { si = new StateInformation(); stateInformation.put(name, si); } si.set(context, value); }
[ "public", "void", "setState", "(", "Object", "context", ",", "String", "name", ",", "Object", "value", ")", "{", "StateInformation", "si", "=", "stateInformation", ".", "get", "(", "name", ")", ";", "if", "(", "si", "==", "null", ")", "{", "si", "=", ...
This method stores state information associated with the name and optional context. @param context The optional context @param name The name @param value The value
[ "This", "method", "stores", "state", "information", "associated", "with", "the", "name", "and", "optional", "context", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/client/collector/src/main/java/org/hawkular/apm/client/collector/internal/FragmentBuilder.java#L598-L605
train
hawkular/hawkular-apm
client/collector/src/main/java/org/hawkular/apm/client/collector/internal/FragmentBuilder.java
FragmentBuilder.getState
public Object getState(Object context, String name) { StateInformation si = stateInformation.get(name); if (si == null) { return null; } return si.get(context); }
java
public Object getState(Object context, String name) { StateInformation si = stateInformation.get(name); if (si == null) { return null; } return si.get(context); }
[ "public", "Object", "getState", "(", "Object", "context", ",", "String", "name", ")", "{", "StateInformation", "si", "=", "stateInformation", ".", "get", "(", "name", ")", ";", "if", "(", "si", "==", "null", ")", "{", "return", "null", ";", "}", "retur...
This method returns the state associated with the name and optional context. @param context The optional context @param name The name @return The state, or null if not found
[ "This", "method", "returns", "the", "state", "associated", "with", "the", "name", "and", "optional", "context", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/client/collector/src/main/java/org/hawkular/apm/client/collector/internal/FragmentBuilder.java#L615-L621
train
hawkular/hawkular-apm
client/opentracing/src/main/java/org/hawkular/apm/client/opentracing/TagUtil.java
TagUtil.getUriPath
public static String getUriPath(String value) { try { URL url = new URL(value); return url.getPath(); } catch (MalformedURLException e) { return value; } }
java
public static String getUriPath(String value) { try { URL url = new URL(value); return url.getPath(); } catch (MalformedURLException e) { return value; } }
[ "public", "static", "String", "getUriPath", "(", "String", "value", ")", "{", "try", "{", "URL", "url", "=", "new", "URL", "(", "value", ")", ";", "return", "url", ".", "getPath", "(", ")", ";", "}", "catch", "(", "MalformedURLException", "e", ")", "...
This method extracts the 'path' component of a URL. If the supplied value is not a valid URL format, then it will simply return the supplied value. @param value The URI value @return The path of a URL, or the value returned as is
[ "This", "method", "extracts", "the", "path", "component", "of", "a", "URL", ".", "If", "the", "supplied", "value", "is", "not", "a", "valid", "URL", "format", "then", "it", "will", "simply", "return", "the", "supplied", "value", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/client/opentracing/src/main/java/org/hawkular/apm/client/opentracing/TagUtil.java#L64-L71
train
hawkular/hawkular-apm
client/opentracing/src/main/java/org/hawkular/apm/client/opentracing/TagUtil.java
TagUtil.getUriPath
public static String getUriPath(Map<String, Object> tags) { for (Map.Entry<String,Object> entry : tags.entrySet()) { if (isUriKey(entry.getKey())) { return getUriPath(entry.getValue().toString()); } } return null; }
java
public static String getUriPath(Map<String, Object> tags) { for (Map.Entry<String,Object> entry : tags.entrySet()) { if (isUriKey(entry.getKey())) { return getUriPath(entry.getValue().toString()); } } return null; }
[ "public", "static", "String", "getUriPath", "(", "Map", "<", "String", ",", "Object", ">", "tags", ")", "{", "for", "(", "Map", ".", "Entry", "<", "String", ",", "Object", ">", "entry", ":", "tags", ".", "entrySet", "(", ")", ")", "{", "if", "(", ...
This method returns the URI value from a set of supplied tags, by first identifying which tag relates to a URI and then returning its path value. @param tags The tags @return The URI path, or null if not found
[ "This", "method", "returns", "the", "URI", "value", "from", "a", "set", "of", "supplied", "tags", "by", "first", "identifying", "which", "tag", "relates", "to", "a", "URI", "and", "then", "returning", "its", "path", "value", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/client/opentracing/src/main/java/org/hawkular/apm/client/opentracing/TagUtil.java#L81-L88
train
hawkular/hawkular-apm
api/src/main/java/org/hawkular/apm/api/utils/NodeUtil.java
NodeUtil.rewriteURI
@Deprecated public static void rewriteURI(Node node, String uri) { node.getProperties().add(new Property(APM_ORIGINAL_URI, node.getUri())); node.setUri(uri); }
java
@Deprecated public static void rewriteURI(Node node, String uri) { node.getProperties().add(new Property(APM_ORIGINAL_URI, node.getUri())); node.setUri(uri); }
[ "@", "Deprecated", "public", "static", "void", "rewriteURI", "(", "Node", "node", ",", "String", "uri", ")", "{", "node", ".", "getProperties", "(", ")", ".", "add", "(", "new", "Property", "(", "APM_ORIGINAL_URI", ",", "node", ".", "getUri", "(", ")", ...
This method rewrites the URI associated with the supplied node and stores the original in the node's details. @param node The node @param uri The new URI @deprecated Only used in original JavaAgent. Not to be used with OpenTracing.
[ "This", "method", "rewrites", "the", "URI", "associated", "with", "the", "supplied", "node", "and", "stores", "the", "original", "in", "the", "node", "s", "details", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/api/src/main/java/org/hawkular/apm/api/utils/NodeUtil.java#L65-L69
train
hawkular/hawkular-apm
api/src/main/java/org/hawkular/apm/api/utils/NodeUtil.java
NodeUtil.isOriginalURI
@Deprecated public static boolean isOriginalURI(Node node, String uri) { if (node.getUri().equals(uri)) { return true; } if (node.hasProperty(APM_ORIGINAL_URI)) { return node.getProperties(APM_ORIGINAL_URI).iterator().next().getValue().equals(uri); } return false; }
java
@Deprecated public static boolean isOriginalURI(Node node, String uri) { if (node.getUri().equals(uri)) { return true; } if (node.hasProperty(APM_ORIGINAL_URI)) { return node.getProperties(APM_ORIGINAL_URI).iterator().next().getValue().equals(uri); } return false; }
[ "@", "Deprecated", "public", "static", "boolean", "isOriginalURI", "(", "Node", "node", ",", "String", "uri", ")", "{", "if", "(", "node", ".", "getUri", "(", ")", ".", "equals", "(", "uri", ")", ")", "{", "return", "true", ";", "}", "if", "(", "no...
This method determines whether the supplied URI matches the original URI on the node. @param node The node @param uri The URI @return Whether the supplied URI is the same as the node's original @deprecated Only used in original JavaAgent. Not to be used with OpenTracing.
[ "This", "method", "determines", "whether", "the", "supplied", "URI", "matches", "the", "original", "URI", "on", "the", "node", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/api/src/main/java/org/hawkular/apm/api/utils/NodeUtil.java#L80-L89
train
hawkular/hawkular-apm
api/src/main/java/org/hawkular/apm/api/internal/actions/DataExpressionHandler.java
DataExpressionHandler.getDataValue
protected Object getDataValue(Trace trace, Node node, Direction direction, Map<String, ?> headers, Object[] values) { if (source == DataSource.Content) { return values[index]; } else if (source == DataSource.Header) { return headers.get(key); } return null; }
java
protected Object getDataValue(Trace trace, Node node, Direction direction, Map<String, ?> headers, Object[] values) { if (source == DataSource.Content) { return values[index]; } else if (source == DataSource.Header) { return headers.get(key); } return null; }
[ "protected", "Object", "getDataValue", "(", "Trace", "trace", ",", "Node", "node", ",", "Direction", "direction", ",", "Map", "<", "String", ",", "?", ">", "headers", ",", "Object", "[", "]", "values", ")", "{", "if", "(", "source", "==", "DataSource", ...
This method returns the data value associated with the requested data source and key.. @param trace The trace @param node The node @param direction The direction @param headers The optional headers @param values The values @return The required data value
[ "This", "method", "returns", "the", "data", "value", "associated", "with", "the", "requested", "data", "source", "and", "key", ".." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/api/src/main/java/org/hawkular/apm/api/internal/actions/DataExpressionHandler.java#L95-L103
train
hawkular/hawkular-apm
api/src/main/java/org/hawkular/apm/api/model/trace/ContainerNode.java
ContainerNode.includeProperties
@Override protected void includeProperties(Set<Property> allProperties) { super.includeProperties(allProperties); nodes.forEach(n -> n.includeProperties(allProperties)); }
java
@Override protected void includeProperties(Set<Property> allProperties) { super.includeProperties(allProperties); nodes.forEach(n -> n.includeProperties(allProperties)); }
[ "@", "Override", "protected", "void", "includeProperties", "(", "Set", "<", "Property", ">", "allProperties", ")", "{", "super", ".", "includeProperties", "(", "allProperties", ")", ";", "nodes", ".", "forEach", "(", "n", "->", "n", ".", "includeProperties", ...
This method adds the properties for this node to the supplied set. @param allProperties The aggregated set of properties
[ "This", "method", "adds", "the", "properties", "for", "this", "node", "to", "the", "supplied", "set", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/api/src/main/java/org/hawkular/apm/api/model/trace/ContainerNode.java#L85-L89
train
hawkular/hawkular-apm
api/src/main/java/org/hawkular/apm/api/model/trace/ContainerNode.java
ContainerNode.overallEndTime
@Override protected long overallEndTime() { long ret = super.overallEndTime(); for (Node child : nodes) { long childEndTime = child.overallEndTime(); if (childEndTime > ret) { ret = childEndTime; } } return ret; }
java
@Override protected long overallEndTime() { long ret = super.overallEndTime(); for (Node child : nodes) { long childEndTime = child.overallEndTime(); if (childEndTime > ret) { ret = childEndTime; } } return ret; }
[ "@", "Override", "protected", "long", "overallEndTime", "(", ")", "{", "long", "ret", "=", "super", ".", "overallEndTime", "(", ")", ";", "for", "(", "Node", "child", ":", "nodes", ")", "{", "long", "childEndTime", "=", "child", ".", "overallEndTime", "(...
This method determines the overall end time of this node. @return The overall end time
[ "This", "method", "determines", "the", "overall", "end", "time", "of", "this", "node", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/api/src/main/java/org/hawkular/apm/api/model/trace/ContainerNode.java#L96-L109
train
hawkular/hawkular-apm
server/elasticsearch/src/main/java/org/hawkular/apm/server/elasticsearch/AnalyticsServiceElasticsearch.java
AnalyticsServiceElasticsearch.doGetCommunicationSummaryStatistics
protected Collection<CommunicationSummaryStatistics> doGetCommunicationSummaryStatistics(String tenantId, Criteria criteria) { String index = client.getIndex(tenantId); Map<String, CommunicationSummaryStatistics> stats = new HashMap<>(); if (!criteria.transactionWide()) { Criteria txnWideCriteria = criteria.deriveTransactionWide(); buildCommunicationSummaryStatistics(stats, index, txnWideCriteria, false); } buildCommunicationSummaryStatistics(stats, index, criteria, true); return stats.values(); }
java
protected Collection<CommunicationSummaryStatistics> doGetCommunicationSummaryStatistics(String tenantId, Criteria criteria) { String index = client.getIndex(tenantId); Map<String, CommunicationSummaryStatistics> stats = new HashMap<>(); if (!criteria.transactionWide()) { Criteria txnWideCriteria = criteria.deriveTransactionWide(); buildCommunicationSummaryStatistics(stats, index, txnWideCriteria, false); } buildCommunicationSummaryStatistics(stats, index, criteria, true); return stats.values(); }
[ "protected", "Collection", "<", "CommunicationSummaryStatistics", ">", "doGetCommunicationSummaryStatistics", "(", "String", "tenantId", ",", "Criteria", "criteria", ")", "{", "String", "index", "=", "client", ".", "getIndex", "(", "tenantId", ")", ";", "Map", "<", ...
This method returns the flat list of communication summary stats. @param tenantId The tenant id @param criteria The criteria @return The list of communication summary nodes
[ "This", "method", "returns", "the", "flat", "list", "of", "communication", "summary", "stats", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/server/elasticsearch/src/main/java/org/hawkular/apm/server/elasticsearch/AnalyticsServiceElasticsearch.java#L567-L578
train
hawkular/hawkular-apm
server/elasticsearch/src/main/java/org/hawkular/apm/server/elasticsearch/AnalyticsServiceElasticsearch.java
AnalyticsServiceElasticsearch.buildCommunicationSummaryStatistics
private void buildCommunicationSummaryStatistics(Map<String, CommunicationSummaryStatistics> stats, String index, Criteria criteria, boolean addMetrics) { if (!refresh(index)) { return; } // Don't specify target class, so that query provided that can be used with // CommunicationDetails and CompletionTime BoolQueryBuilder query = buildQuery(criteria, ElasticsearchUtil.TRANSACTION_FIELD, null); // Only want external communications query = query.mustNot(QueryBuilders.matchQuery("internal", "true")); StatsBuilder latencyBuilder = AggregationBuilders .stats("latency") .field(ElasticsearchUtil.LATENCY_FIELD); TermsBuilder targetBuilder = AggregationBuilders .terms("target") .field(ElasticsearchUtil.TARGET_FIELD) .size(criteria.getMaxResponseSize()) .subAggregation(latencyBuilder); TermsBuilder sourceBuilder = AggregationBuilders .terms("source") .field(ElasticsearchUtil.SOURCE_FIELD) .size(criteria.getMaxResponseSize()) .subAggregation(targetBuilder); SearchRequestBuilder request = getBaseSearchRequestBuilder(COMMUNICATION_DETAILS_TYPE, index, criteria, query, 0) .addAggregation(sourceBuilder); SearchResponse response = getSearchResponse(request); for (Terms.Bucket sourceBucket : response.getAggregations().<Terms>get("source").getBuckets()) { Terms targets = sourceBucket.getAggregations().get("target"); CommunicationSummaryStatistics css = stats.get(sourceBucket.getKey()); if (css == null) { css = new CommunicationSummaryStatistics(); css.setId(sourceBucket.getKey()); css.setUri(EndpointUtil.decodeEndpointURI(css.getId())); css.setOperation(EndpointUtil.decodeEndpointOperation(css.getId(), true)); stats.put(css.getId(), css); } if (addMetrics) { css.setCount(sourceBucket.getDocCount()); } for (Terms.Bucket targetBucket : targets.getBuckets()) { Stats latency = targetBucket.getAggregations().get("latency"); String linkId = targetBucket.getKey(); ConnectionStatistics con = css.getOutbound().get(linkId); if (con == null) { con = new ConnectionStatistics(); css.getOutbound().put(linkId, con); } if (addMetrics) { con.setMinimumLatency((long)latency.getMin()); con.setAverageLatency((long)latency.getAvg()); con.setMaximumLatency((long)latency.getMax()); con.setCount(targetBucket.getDocCount()); } } } addNodeInformation(stats, index, criteria, addMetrics, false); addNodeInformation(stats, index, criteria, addMetrics, true); }
java
private void buildCommunicationSummaryStatistics(Map<String, CommunicationSummaryStatistics> stats, String index, Criteria criteria, boolean addMetrics) { if (!refresh(index)) { return; } // Don't specify target class, so that query provided that can be used with // CommunicationDetails and CompletionTime BoolQueryBuilder query = buildQuery(criteria, ElasticsearchUtil.TRANSACTION_FIELD, null); // Only want external communications query = query.mustNot(QueryBuilders.matchQuery("internal", "true")); StatsBuilder latencyBuilder = AggregationBuilders .stats("latency") .field(ElasticsearchUtil.LATENCY_FIELD); TermsBuilder targetBuilder = AggregationBuilders .terms("target") .field(ElasticsearchUtil.TARGET_FIELD) .size(criteria.getMaxResponseSize()) .subAggregation(latencyBuilder); TermsBuilder sourceBuilder = AggregationBuilders .terms("source") .field(ElasticsearchUtil.SOURCE_FIELD) .size(criteria.getMaxResponseSize()) .subAggregation(targetBuilder); SearchRequestBuilder request = getBaseSearchRequestBuilder(COMMUNICATION_DETAILS_TYPE, index, criteria, query, 0) .addAggregation(sourceBuilder); SearchResponse response = getSearchResponse(request); for (Terms.Bucket sourceBucket : response.getAggregations().<Terms>get("source").getBuckets()) { Terms targets = sourceBucket.getAggregations().get("target"); CommunicationSummaryStatistics css = stats.get(sourceBucket.getKey()); if (css == null) { css = new CommunicationSummaryStatistics(); css.setId(sourceBucket.getKey()); css.setUri(EndpointUtil.decodeEndpointURI(css.getId())); css.setOperation(EndpointUtil.decodeEndpointOperation(css.getId(), true)); stats.put(css.getId(), css); } if (addMetrics) { css.setCount(sourceBucket.getDocCount()); } for (Terms.Bucket targetBucket : targets.getBuckets()) { Stats latency = targetBucket.getAggregations().get("latency"); String linkId = targetBucket.getKey(); ConnectionStatistics con = css.getOutbound().get(linkId); if (con == null) { con = new ConnectionStatistics(); css.getOutbound().put(linkId, con); } if (addMetrics) { con.setMinimumLatency((long)latency.getMin()); con.setAverageLatency((long)latency.getAvg()); con.setMaximumLatency((long)latency.getMax()); con.setCount(targetBucket.getDocCount()); } } } addNodeInformation(stats, index, criteria, addMetrics, false); addNodeInformation(stats, index, criteria, addMetrics, true); }
[ "private", "void", "buildCommunicationSummaryStatistics", "(", "Map", "<", "String", ",", "CommunicationSummaryStatistics", ">", "stats", ",", "String", "index", ",", "Criteria", "criteria", ",", "boolean", "addMetrics", ")", "{", "if", "(", "!", "refresh", "(", ...
This method builds a map of communication summary stats related to the supplied criteria. @param stats The map of communication summary stats @param index The index @param criteria The criteria @param addMetrics Whether to add metrics on the nodes/links
[ "This", "method", "builds", "a", "map", "of", "communication", "summary", "stats", "related", "to", "the", "supplied", "criteria", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/server/elasticsearch/src/main/java/org/hawkular/apm/server/elasticsearch/AnalyticsServiceElasticsearch.java#L589-L661
train
hawkular/hawkular-apm
client/opentracing/src/main/java/org/hawkular/apm/client/opentracing/DeploymentMetaData.java
DeploymentMetaData.getServiceFromBuildName
static String getServiceFromBuildName(String buildName) { if (null == buildName || buildName.isEmpty()) { return buildName; } return buildName.substring(0, buildName.lastIndexOf('-')); }
java
static String getServiceFromBuildName(String buildName) { if (null == buildName || buildName.isEmpty()) { return buildName; } return buildName.substring(0, buildName.lastIndexOf('-')); }
[ "static", "String", "getServiceFromBuildName", "(", "String", "buildName", ")", "{", "if", "(", "null", "==", "buildName", "||", "buildName", ".", "isEmpty", "(", ")", ")", "{", "return", "buildName", ";", "}", "return", "buildName", ".", "substring", "(", ...
Converts an OpenShift build name into a service name @param buildName the build name, such as "hawkular-apm-1" @return the service name, such as "hawkular-apm"
[ "Converts", "an", "OpenShift", "build", "name", "into", "a", "service", "name" ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/client/opentracing/src/main/java/org/hawkular/apm/client/opentracing/DeploymentMetaData.java#L124-L130
train
hawkular/hawkular-apm
examples/polyglot-zipkin/java-dropwizard/src/main/java/org/hawkular/apm/example/dropwizard/util/DatabaseUtils.java
DatabaseUtils.executeDatabaseScript
public static void executeDatabaseScript(String script) throws SQLException, MalformedURLException { File file = new File(script); DatabaseUtils.executeSqlScript(DatabaseUtils.getDBConnection(null), file.toURI().toURL()); }
java
public static void executeDatabaseScript(String script) throws SQLException, MalformedURLException { File file = new File(script); DatabaseUtils.executeSqlScript(DatabaseUtils.getDBConnection(null), file.toURI().toURL()); }
[ "public", "static", "void", "executeDatabaseScript", "(", "String", "script", ")", "throws", "SQLException", ",", "MalformedURLException", "{", "File", "file", "=", "new", "File", "(", "script", ")", ";", "DatabaseUtils", ".", "executeSqlScript", "(", "DatabaseUti...
Executes database script from resources directory
[ "Executes", "database", "script", "from", "resources", "directory" ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/examples/polyglot-zipkin/java-dropwizard/src/main/java/org/hawkular/apm/example/dropwizard/util/DatabaseUtils.java#L39-L42
train
hawkular/hawkular-apm
examples/polyglot-zipkin/java-dropwizard/src/main/java/org/hawkular/apm/example/dropwizard/util/DatabaseUtils.java
DatabaseUtils.executeSqlScript
private static void executeSqlScript(Connection connection, URL scriptUrl) throws SQLException { for (String sqlStatement : readSqlStatements(scriptUrl)) { if (!sqlStatement.trim().isEmpty()) { connection.prepareStatement(sqlStatement).executeUpdate(); } } }
java
private static void executeSqlScript(Connection connection, URL scriptUrl) throws SQLException { for (String sqlStatement : readSqlStatements(scriptUrl)) { if (!sqlStatement.trim().isEmpty()) { connection.prepareStatement(sqlStatement).executeUpdate(); } } }
[ "private", "static", "void", "executeSqlScript", "(", "Connection", "connection", ",", "URL", "scriptUrl", ")", "throws", "SQLException", "{", "for", "(", "String", "sqlStatement", ":", "readSqlStatements", "(", "scriptUrl", ")", ")", "{", "if", "(", "!", "sql...
Executes SQL script.
[ "Executes", "SQL", "script", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/examples/polyglot-zipkin/java-dropwizard/src/main/java/org/hawkular/apm/example/dropwizard/util/DatabaseUtils.java#L47-L53
train
hawkular/hawkular-apm
examples/polyglot-zipkin/java-dropwizard/src/main/java/org/hawkular/apm/example/dropwizard/util/DatabaseUtils.java
DatabaseUtils.readSqlStatements
private static String[] readSqlStatements(URL url) { try { char buffer[] = new char[256]; StringBuilder result = new StringBuilder(); InputStreamReader reader = new InputStreamReader(url.openStream(), "UTF-8"); while (true) { int count = reader.read(buffer); if (count < 0) { break; } result.append(buffer, 0, count); } return result.toString().split(";"); } catch (IOException ex) { throw new RuntimeException("Cannot read " + url, ex); } }
java
private static String[] readSqlStatements(URL url) { try { char buffer[] = new char[256]; StringBuilder result = new StringBuilder(); InputStreamReader reader = new InputStreamReader(url.openStream(), "UTF-8"); while (true) { int count = reader.read(buffer); if (count < 0) { break; } result.append(buffer, 0, count); } return result.toString().split(";"); } catch (IOException ex) { throw new RuntimeException("Cannot read " + url, ex); } }
[ "private", "static", "String", "[", "]", "readSqlStatements", "(", "URL", "url", ")", "{", "try", "{", "char", "buffer", "[", "]", "=", "new", "char", "[", "256", "]", ";", "StringBuilder", "result", "=", "new", "StringBuilder", "(", ")", ";", "InputSt...
Reads SQL statements from file. SQL commands in file must be separated by a semicolon. @param url url of the file @return array of command strings
[ "Reads", "SQL", "statements", "from", "file", ".", "SQL", "commands", "in", "file", "must", "be", "separated", "by", "a", "semicolon", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/examples/polyglot-zipkin/java-dropwizard/src/main/java/org/hawkular/apm/example/dropwizard/util/DatabaseUtils.java#L74-L90
train
hawkular/hawkular-apm
performance/server/src/main/java/org/hawkular/apm/performance/server/Service.java
Service.call
public void call(Message mesg, String interactionId, String btxnName) { boolean activated = collector.session().activate(uri, null, interactionId); if (activated) { collector.consumerStart(null, uri, "Test", null, interactionId); collector.setTransaction(null, btxnName); } if (calledServices != null) { String calledServiceName = calledServices.get(mesg.getType()); // Introduce a delay related to the business logic synchronized (this) { try { wait(((int) Math.random() % 300) + 50); } catch (Exception e) { e.printStackTrace(); } } if (calledServiceName != null) { Service calledService = registry.getServiceInstance(calledServiceName); String nextInteractionId = UUID.randomUUID().toString(); if (activated) { collector.producerStart(null, calledService.getUri(), "Test", null, nextInteractionId); } // Introduce a delay related to the latency synchronized (this) { try { wait(((int) Math.random() % 100) + 10); } catch (Exception e) { e.printStackTrace(); } } calledService.call(mesg, nextInteractionId, collector.getTransaction()); if (activated) { collector.producerEnd(null, calledService.getUri(), "Test", null); } } } if (activated) { collector.consumerEnd(null, uri, "Test", null); } setLastUsed(System.currentTimeMillis()); // Return instance to stack registry.returnServiceInstance(this); }
java
public void call(Message mesg, String interactionId, String btxnName) { boolean activated = collector.session().activate(uri, null, interactionId); if (activated) { collector.consumerStart(null, uri, "Test", null, interactionId); collector.setTransaction(null, btxnName); } if (calledServices != null) { String calledServiceName = calledServices.get(mesg.getType()); // Introduce a delay related to the business logic synchronized (this) { try { wait(((int) Math.random() % 300) + 50); } catch (Exception e) { e.printStackTrace(); } } if (calledServiceName != null) { Service calledService = registry.getServiceInstance(calledServiceName); String nextInteractionId = UUID.randomUUID().toString(); if (activated) { collector.producerStart(null, calledService.getUri(), "Test", null, nextInteractionId); } // Introduce a delay related to the latency synchronized (this) { try { wait(((int) Math.random() % 100) + 10); } catch (Exception e) { e.printStackTrace(); } } calledService.call(mesg, nextInteractionId, collector.getTransaction()); if (activated) { collector.producerEnd(null, calledService.getUri(), "Test", null); } } } if (activated) { collector.consumerEnd(null, uri, "Test", null); } setLastUsed(System.currentTimeMillis()); // Return instance to stack registry.returnServiceInstance(this); }
[ "public", "void", "call", "(", "Message", "mesg", ",", "String", "interactionId", ",", "String", "btxnName", ")", "{", "boolean", "activated", "=", "collector", ".", "session", "(", ")", ".", "activate", "(", "uri", ",", "null", ",", "interactionId", ")", ...
This method simulates calling the service. @param mesg The message to be exchanged @param interactionId The interaction id, or null if initial call @param btxnName The optional business txn name
[ "This", "method", "simulates", "calling", "the", "service", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/performance/server/src/main/java/org/hawkular/apm/performance/server/Service.java#L143-L197
train
hawkular/hawkular-apm
api/src/main/java/org/hawkular/apm/api/model/trace/Node.java
Node.addInteractionCorrelationId
public Node addInteractionCorrelationId(String id) { this.correlationIds.add(new CorrelationIdentifier(Scope.Interaction, id)); return this; }
java
public Node addInteractionCorrelationId(String id) { this.correlationIds.add(new CorrelationIdentifier(Scope.Interaction, id)); return this; }
[ "public", "Node", "addInteractionCorrelationId", "(", "String", "id", ")", "{", "this", ".", "correlationIds", ".", "add", "(", "new", "CorrelationIdentifier", "(", "Scope", ".", "Interaction", ",", "id", ")", ")", ";", "return", "this", ";", "}" ]
This method adds an interaction scoped correlation id. @param id The id @return The node
[ "This", "method", "adds", "an", "interaction", "scoped", "correlation", "id", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/api/src/main/java/org/hawkular/apm/api/model/trace/Node.java#L255-L258
train
hawkular/hawkular-apm
api/src/main/java/org/hawkular/apm/api/model/trace/Node.java
Node.addControlFlowCorrelationId
public Node addControlFlowCorrelationId(String id) { this.correlationIds.add(new CorrelationIdentifier(Scope.ControlFlow, id)); return this; }
java
public Node addControlFlowCorrelationId(String id) { this.correlationIds.add(new CorrelationIdentifier(Scope.ControlFlow, id)); return this; }
[ "public", "Node", "addControlFlowCorrelationId", "(", "String", "id", ")", "{", "this", ".", "correlationIds", ".", "add", "(", "new", "CorrelationIdentifier", "(", "Scope", ".", "ControlFlow", ",", "id", ")", ")", ";", "return", "this", ";", "}" ]
This method adds a control flow scoped correlation id. @param id The id @return The node
[ "This", "method", "adds", "a", "control", "flow", "scoped", "correlation", "id", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/api/src/main/java/org/hawkular/apm/api/model/trace/Node.java#L266-L269
train
hawkular/hawkular-apm
api/src/main/java/org/hawkular/apm/api/model/trace/Node.java
Node.addCausedByCorrelationId
public Node addCausedByCorrelationId(String id) { this.correlationIds.add(new CorrelationIdentifier(Scope.CausedBy, id)); return this; }
java
public Node addCausedByCorrelationId(String id) { this.correlationIds.add(new CorrelationIdentifier(Scope.CausedBy, id)); return this; }
[ "public", "Node", "addCausedByCorrelationId", "(", "String", "id", ")", "{", "this", ".", "correlationIds", ".", "add", "(", "new", "CorrelationIdentifier", "(", "Scope", ".", "CausedBy", ",", "id", ")", ")", ";", "return", "this", ";", "}" ]
This method adds a 'caused by' scoped correlation id. @param id The id @return The node
[ "This", "method", "adds", "a", "caused", "by", "scoped", "correlation", "id", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/api/src/main/java/org/hawkular/apm/api/model/trace/Node.java#L277-L280
train
hawkular/hawkular-apm
api/src/main/java/org/hawkular/apm/api/model/trace/Node.java
Node.findCorrelatedNodes
protected void findCorrelatedNodes(CorrelationIdentifier cid, Set<Node> nodes) { if (isCorrelated(cid)) { nodes.add(this); } }
java
protected void findCorrelatedNodes(CorrelationIdentifier cid, Set<Node> nodes) { if (isCorrelated(cid)) { nodes.add(this); } }
[ "protected", "void", "findCorrelatedNodes", "(", "CorrelationIdentifier", "cid", ",", "Set", "<", "Node", ">", "nodes", ")", "{", "if", "(", "isCorrelated", "(", "cid", ")", ")", "{", "nodes", ".", "add", "(", "this", ")", ";", "}", "}" ]
This method identifies all of the nodes within a trace that are associated with the supplied correlation identifier. @param cid The correlation identifier @param nodes The set of nodes that are associated with the correlation identifier
[ "This", "method", "identifies", "all", "of", "the", "nodes", "within", "a", "trace", "that", "are", "associated", "with", "the", "supplied", "correlation", "identifier", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/api/src/main/java/org/hawkular/apm/api/model/trace/Node.java#L360-L364
train
hawkular/hawkular-apm
api/src/main/java/org/hawkular/apm/api/model/trace/Node.java
Node.isCorrelated
protected boolean isCorrelated(CorrelationIdentifier cid) { for (CorrelationIdentifier id : correlationIds) { if (id.equals(cid)) { return true; } } return false; }
java
protected boolean isCorrelated(CorrelationIdentifier cid) { for (CorrelationIdentifier id : correlationIds) { if (id.equals(cid)) { return true; } } return false; }
[ "protected", "boolean", "isCorrelated", "(", "CorrelationIdentifier", "cid", ")", "{", "for", "(", "CorrelationIdentifier", "id", ":", "correlationIds", ")", "{", "if", "(", "id", ".", "equals", "(", "cid", ")", ")", "{", "return", "true", ";", "}", "}", ...
This method determines whether the node is correlated to the supplied identifier. @param cid The correlation id @return Whether the node is correlated to the supplied id
[ "This", "method", "determines", "whether", "the", "node", "is", "correlated", "to", "the", "supplied", "identifier", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/api/src/main/java/org/hawkular/apm/api/model/trace/Node.java#L373-L380
train
hawkular/hawkular-apm
api/src/main/java/org/hawkular/apm/api/services/AbstractAnalyticsService.java
AbstractAnalyticsService.compressEndpointInfo
protected static List<EndpointInfo> compressEndpointInfo(List<EndpointInfo> endpoints) { List<EndpointInfo> others = new ArrayList<EndpointInfo>(); EndpointPart rootPart = new EndpointPart(); for (int i = 0; i < endpoints.size(); i++) { EndpointInfo endpoint = endpoints.get(i); if (endpoint.getEndpoint() != null && endpoint.getEndpoint().length() > 1 && endpoint.getEndpoint().charAt(0) == '/') { String[] parts = endpoint.getEndpoint().split("/"); buildTree(rootPart, parts, 1, endpoint.getType()); } else { others.add(new EndpointInfo(endpoint)); } } // Construct new list List<EndpointInfo> info = null; if (endpoints.size() != others.size()) { rootPart.collapse(); info = extractEndpointInfo(rootPart); info.addAll(others); } else { info = others; } // Initialise the endpoint info initEndpointInfo(info); return info; }
java
protected static List<EndpointInfo> compressEndpointInfo(List<EndpointInfo> endpoints) { List<EndpointInfo> others = new ArrayList<EndpointInfo>(); EndpointPart rootPart = new EndpointPart(); for (int i = 0; i < endpoints.size(); i++) { EndpointInfo endpoint = endpoints.get(i); if (endpoint.getEndpoint() != null && endpoint.getEndpoint().length() > 1 && endpoint.getEndpoint().charAt(0) == '/') { String[] parts = endpoint.getEndpoint().split("/"); buildTree(rootPart, parts, 1, endpoint.getType()); } else { others.add(new EndpointInfo(endpoint)); } } // Construct new list List<EndpointInfo> info = null; if (endpoints.size() != others.size()) { rootPart.collapse(); info = extractEndpointInfo(rootPart); info.addAll(others); } else { info = others; } // Initialise the endpoint info initEndpointInfo(info); return info; }
[ "protected", "static", "List", "<", "EndpointInfo", ">", "compressEndpointInfo", "(", "List", "<", "EndpointInfo", ">", "endpoints", ")", "{", "List", "<", "EndpointInfo", ">", "others", "=", "new", "ArrayList", "<", "EndpointInfo", ">", "(", ")", ";", "Endp...
This method compresses the list of endpoints to identify common patterns. @param endpoints The endpoints @return The compressed list of endpoints
[ "This", "method", "compresses", "the", "list", "of", "endpoints", "to", "identify", "common", "patterns", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/api/src/main/java/org/hawkular/apm/api/services/AbstractAnalyticsService.java#L135-L172
train