id
int32
0
165k
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
37,300
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 t...
java
protected Collection<CommunicationSummaryStatistics> doGetCommunicationSummaryStatistics(String tenantId, Criteria criteria) { String index = client.getIndex(tenantId); Map<String, CommunicationSummaryStatistics> stats = new HashMap<>(); if (!criteria.transactionWide()) { Criteria t...
[ "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
37,301
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 que...
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 que...
[ "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
37,302
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
37,303
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
37,304
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
37,305
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.rea...
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.rea...
[ "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
37,306
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); ...
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); ...
[ "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
37,307
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
37,308
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
37,309
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
37,310
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
37,311
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
37,312
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); ...
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); ...
[ "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
37,313
hawkular/hawkular-apm
api/src/main/java/org/hawkular/apm/api/services/AbstractAnalyticsService.java
AbstractAnalyticsService.buildTree
protected static void buildTree(EndpointPart parent, String[] parts, int index, String endpointType) { // Check if operation qualifier is part of last element String name = parts[index]; String qualifier = null; if (index == parts.length - 1) { qualifier = EndpointUtil.decod...
java
protected static void buildTree(EndpointPart parent, String[] parts, int index, String endpointType) { // Check if operation qualifier is part of last element String name = parts[index]; String qualifier = null; if (index == parts.length - 1) { qualifier = EndpointUtil.decod...
[ "protected", "static", "void", "buildTree", "(", "EndpointPart", "parent", ",", "String", "[", "]", "parts", ",", "int", "index", ",", "String", "endpointType", ")", "{", "// Check if operation qualifier is part of last element", "String", "name", "=", "parts", "[",...
This method builds a tree. @param parent The current parent node @param parts The parts of the URI being processed @param index The current index into the parts array @param endpointType The endpoint type
[ "This", "method", "builds", "a", "tree", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/api/src/main/java/org/hawkular/apm/api/services/AbstractAnalyticsService.java#L182-L205
37,314
hawkular/hawkular-apm
api/src/main/java/org/hawkular/apm/api/services/AbstractAnalyticsService.java
AbstractAnalyticsService.extractEndpointInfo
protected static List<EndpointInfo> extractEndpointInfo(EndpointPart root) { List<EndpointInfo> endpoints = new ArrayList<EndpointInfo>(); root.extractEndpointInfo(endpoints, ""); return endpoints; }
java
protected static List<EndpointInfo> extractEndpointInfo(EndpointPart root) { List<EndpointInfo> endpoints = new ArrayList<EndpointInfo>(); root.extractEndpointInfo(endpoints, ""); return endpoints; }
[ "protected", "static", "List", "<", "EndpointInfo", ">", "extractEndpointInfo", "(", "EndpointPart", "root", ")", "{", "List", "<", "EndpointInfo", ">", "endpoints", "=", "new", "ArrayList", "<", "EndpointInfo", ">", "(", ")", ";", "root", ".", "extractEndpoin...
This method expands a tree into the collapsed set of endpoints. @param root The tree @return The list of endpoints
[ "This", "method", "expands", "a", "tree", "into", "the", "collapsed", "set", "of", "endpoints", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/api/src/main/java/org/hawkular/apm/api/services/AbstractAnalyticsService.java#L213-L219
37,315
hawkular/hawkular-apm
api/src/main/java/org/hawkular/apm/api/services/AbstractAnalyticsService.java
AbstractAnalyticsService.initEndpointInfo
protected static void initEndpointInfo(List<EndpointInfo> endpoints) { for (int i = 0; i < endpoints.size(); i++) { initEndpointInfo(endpoints.get(i)); } }
java
protected static void initEndpointInfo(List<EndpointInfo> endpoints) { for (int i = 0; i < endpoints.size(); i++) { initEndpointInfo(endpoints.get(i)); } }
[ "protected", "static", "void", "initEndpointInfo", "(", "List", "<", "EndpointInfo", ">", "endpoints", ")", "{", "for", "(", "int", "i", "=", "0", ";", "i", "<", "endpoints", ".", "size", "(", ")", ";", "i", "++", ")", "{", "initEndpointInfo", "(", "...
This method initialises the list of endpoint information. @param endpoints The endpoint information
[ "This", "method", "initialises", "the", "list", "of", "endpoint", "information", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/api/src/main/java/org/hawkular/apm/api/services/AbstractAnalyticsService.java#L226-L230
37,316
hawkular/hawkular-apm
api/src/main/java/org/hawkular/apm/api/services/AbstractAnalyticsService.java
AbstractAnalyticsService.initEndpointInfo
protected static void initEndpointInfo(EndpointInfo endpoint) { endpoint.setRegex(createRegex(endpoint.getEndpoint(), endpoint.metaURI())); String uri = EndpointUtil.decodeEndpointURI(endpoint.getEndpoint()); if (uri != null) { endpoint.setUriRegex(createRegex(uri, endpoint.metaURI(...
java
protected static void initEndpointInfo(EndpointInfo endpoint) { endpoint.setRegex(createRegex(endpoint.getEndpoint(), endpoint.metaURI())); String uri = EndpointUtil.decodeEndpointURI(endpoint.getEndpoint()); if (uri != null) { endpoint.setUriRegex(createRegex(uri, endpoint.metaURI(...
[ "protected", "static", "void", "initEndpointInfo", "(", "EndpointInfo", "endpoint", ")", "{", "endpoint", ".", "setRegex", "(", "createRegex", "(", "endpoint", ".", "getEndpoint", "(", ")", ",", "endpoint", ".", "metaURI", "(", ")", ")", ")", ";", "String", ...
This method initialises the endpoint information. @param endpoint The endpoint information
[ "This", "method", "initialises", "the", "endpoint", "information", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/api/src/main/java/org/hawkular/apm/api/services/AbstractAnalyticsService.java#L237-L280
37,317
hawkular/hawkular-apm
api/src/main/java/org/hawkular/apm/api/services/AbstractAnalyticsService.java
AbstractAnalyticsService.hasMetrics
protected static boolean hasMetrics(CommunicationSummaryStatistics css) { if (css.getCount() > 0) { return true; } for (ConnectionStatistics cs : css.getOutbound().values()) { if (cs.getCount() > 0) { return true; } if (cs.getNode()...
java
protected static boolean hasMetrics(CommunicationSummaryStatistics css) { if (css.getCount() > 0) { return true; } for (ConnectionStatistics cs : css.getOutbound().values()) { if (cs.getCount() > 0) { return true; } if (cs.getNode()...
[ "protected", "static", "boolean", "hasMetrics", "(", "CommunicationSummaryStatistics", "css", ")", "{", "if", "(", "css", ".", "getCount", "(", ")", ">", "0", ")", "{", "return", "true", ";", "}", "for", "(", "ConnectionStatistics", "cs", ":", "css", ".", ...
This method determines whether the communication summary statistics have defined metrics. @param css The communication summary structure @return Whether they include metrics
[ "This", "method", "determines", "whether", "the", "communication", "summary", "statistics", "have", "defined", "metrics", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/api/src/main/java/org/hawkular/apm/api/services/AbstractAnalyticsService.java#L333-L348
37,318
hawkular/hawkular-apm
api/src/main/java/org/hawkular/apm/api/services/AbstractAnalyticsService.java
AbstractAnalyticsService.doGetUnboundEndpoints
protected List<EndpointInfo> doGetUnboundEndpoints(String tenantId, List<Trace> fragments, boolean compress) { List<EndpointInfo> ret = new ArrayList<EndpointInfo>(); Map<String, EndpointInfo> map = new HashMap<String, EndpointInfo>(); // Process the fragments to identify which endp...
java
protected List<EndpointInfo> doGetUnboundEndpoints(String tenantId, List<Trace> fragments, boolean compress) { List<EndpointInfo> ret = new ArrayList<EndpointInfo>(); Map<String, EndpointInfo> map = new HashMap<String, EndpointInfo>(); // Process the fragments to identify which endp...
[ "protected", "List", "<", "EndpointInfo", ">", "doGetUnboundEndpoints", "(", "String", "tenantId", ",", "List", "<", "Trace", ">", "fragments", ",", "boolean", "compress", ")", "{", "List", "<", "EndpointInfo", ">", "ret", "=", "new", "ArrayList", "<", "Endp...
This method obtains the unbound endpoints from a list of trace fragments. @param tenantId The tenant @param fragments The list of trace fragments @param compress Whether the list should be compressed (i.e. to identify patterns) @return The list of unbound endpoints
[ "This", "method", "obtains", "the", "unbound", "endpoints", "from", "a", "list", "of", "trace", "fragments", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/api/src/main/java/org/hawkular/apm/api/services/AbstractAnalyticsService.java#L368-L439
37,319
hawkular/hawkular-apm
api/src/main/java/org/hawkular/apm/api/services/AbstractAnalyticsService.java
AbstractAnalyticsService.obtainEndpoints
protected void obtainEndpoints(List<Node> nodes, List<EndpointInfo> endpoints) { for (int i = 0; i < nodes.size(); i++) { Node node = nodes.get(i); if (node.getUri() != null) { EndpointInfo ei=new EndpointInfo(); ei.setEndpoint(EndpointUtil.encodeEndpoint...
java
protected void obtainEndpoints(List<Node> nodes, List<EndpointInfo> endpoints) { for (int i = 0; i < nodes.size(); i++) { Node node = nodes.get(i); if (node.getUri() != null) { EndpointInfo ei=new EndpointInfo(); ei.setEndpoint(EndpointUtil.encodeEndpoint...
[ "protected", "void", "obtainEndpoints", "(", "List", "<", "Node", ">", "nodes", ",", "List", "<", "EndpointInfo", ">", "endpoints", ")", "{", "for", "(", "int", "i", "=", "0", ";", "i", "<", "nodes", ".", "size", "(", ")", ";", "i", "++", ")", "{...
This method collects the information regarding endpoints. @param nodes The nodes @param endpoints The list of endpoints
[ "This", "method", "collects", "the", "information", "regarding", "endpoints", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/api/src/main/java/org/hawkular/apm/api/services/AbstractAnalyticsService.java#L447-L465
37,320
hawkular/hawkular-apm
api/src/main/java/org/hawkular/apm/api/services/AbstractAnalyticsService.java
AbstractAnalyticsService.obtainProducerEndpoints
protected void obtainProducerEndpoints(List<Node> nodes, List<EndpointInfo> endpoints, Map<String, EndpointInfo> map) { for (int i = 0; i < nodes.size(); i++) { Node node = nodes.get(i); if (node instanceof Producer) { String endpoint = En...
java
protected void obtainProducerEndpoints(List<Node> nodes, List<EndpointInfo> endpoints, Map<String, EndpointInfo> map) { for (int i = 0; i < nodes.size(); i++) { Node node = nodes.get(i); if (node instanceof Producer) { String endpoint = En...
[ "protected", "void", "obtainProducerEndpoints", "(", "List", "<", "Node", ">", "nodes", ",", "List", "<", "EndpointInfo", ">", "endpoints", ",", "Map", "<", "String", ",", "EndpointInfo", ">", "map", ")", "{", "for", "(", "int", "i", "=", "0", ";", "i"...
This method collects the information regarding endpoints for contained producers. @param nodes The nodes @param endpoints The list of endpoint info @param map The map of endpoints to info
[ "This", "method", "collects", "the", "information", "regarding", "endpoints", "for", "contained", "producers", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/api/src/main/java/org/hawkular/apm/api/services/AbstractAnalyticsService.java#L475-L496
37,321
hawkular/hawkular-apm
api/src/main/java/org/hawkular/apm/api/services/AbstractAnalyticsService.java
AbstractAnalyticsService.createRegex
protected static String createRegex(String endpoint, boolean meta) { StringBuilder regex = new StringBuilder(); regex.append('^'); for (int i=0; i < endpoint.length(); i++) { char ch=endpoint.charAt(i); if ("*".indexOf(ch) != -1) { regex.append('.'); ...
java
protected static String createRegex(String endpoint, boolean meta) { StringBuilder regex = new StringBuilder(); regex.append('^'); for (int i=0; i < endpoint.length(); i++) { char ch=endpoint.charAt(i); if ("*".indexOf(ch) != -1) { regex.append('.'); ...
[ "protected", "static", "String", "createRegex", "(", "String", "endpoint", ",", "boolean", "meta", ")", "{", "StringBuilder", "regex", "=", "new", "StringBuilder", "(", ")", ";", "regex", ".", "append", "(", "'", "'", ")", ";", "for", "(", "int", "i", ...
This method derives the regular expression from the supplied URI. @param endpoint The endpoint @param meta Whether this is a meta endpoint @return The regular expression
[ "This", "method", "derives", "the", "regular", "expression", "from", "the", "supplied", "URI", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/api/src/main/java/org/hawkular/apm/api/services/AbstractAnalyticsService.java#L506-L524
37,322
hawkular/hawkular-apm
api/src/main/java/org/hawkular/apm/api/internal/actions/EvaluateURIActionHandler.java
EvaluateURIActionHandler.processQueryParameters
protected boolean processQueryParameters(Trace trace, Node node) { boolean ret = false; // Translate query string into a map Set<Property> queryString = node.getProperties(Constants.PROP_HTTP_QUERY); if (!queryString.isEmpty()) { StringTokenizer st = new StringTokenizer(quer...
java
protected boolean processQueryParameters(Trace trace, Node node) { boolean ret = false; // Translate query string into a map Set<Property> queryString = node.getProperties(Constants.PROP_HTTP_QUERY); if (!queryString.isEmpty()) { StringTokenizer st = new StringTokenizer(quer...
[ "protected", "boolean", "processQueryParameters", "(", "Trace", "trace", ",", "Node", "node", ")", "{", "boolean", "ret", "=", "false", ";", "// Translate query string into a map", "Set", "<", "Property", ">", "queryString", "=", "node", ".", "getProperties", "(",...
This method processes the query parameters associated with the supplied node to extract templated named values as properties on the trace node. @param trace The trace @param node The node @return Whether query parameters were processed
[ "This", "method", "processes", "the", "query", "parameters", "associated", "with", "the", "supplied", "node", "to", "extract", "templated", "named", "values", "as", "properties", "on", "the", "trace", "node", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/api/src/main/java/org/hawkular/apm/api/internal/actions/EvaluateURIActionHandler.java#L180-L211
37,323
hawkular/hawkular-apm
api/src/main/java/org/hawkular/apm/api/model/trace/InteractionNode.java
InteractionNode.multipleConsumers
public boolean multipleConsumers() { // TODO: When HWKAPM-698 implemented, it may no longer be necessary to capture this info Set<Property> props=getProperties(Producer.PROPERTY_PUBLISH); return !props.isEmpty() && props.iterator().next().getValue().equalsIgnoreCase(Boolean.TRUE....
java
public boolean multipleConsumers() { // TODO: When HWKAPM-698 implemented, it may no longer be necessary to capture this info Set<Property> props=getProperties(Producer.PROPERTY_PUBLISH); return !props.isEmpty() && props.iterator().next().getValue().equalsIgnoreCase(Boolean.TRUE....
[ "public", "boolean", "multipleConsumers", "(", ")", "{", "// TODO: When HWKAPM-698 implemented, it may no longer be necessary to capture this info", "Set", "<", "Property", ">", "props", "=", "getProperties", "(", "Producer", ".", "PROPERTY_PUBLISH", ")", ";", "return", "!"...
This method determines whether the interaction node is associated with a multi-consumer communication. @return Whether interaction relates to multiple consumers
[ "This", "method", "determines", "whether", "the", "interaction", "node", "is", "associated", "with", "a", "multi", "-", "consumer", "communication", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/api/src/main/java/org/hawkular/apm/api/model/trace/InteractionNode.java#L100-L105
37,324
hawkular/hawkular-apm
api/src/main/java/org/hawkular/apm/api/internal/actions/ExpressionBasedActionHandler.java
ExpressionBasedActionHandler.getValue
protected String getValue(Trace trace, Node node, Direction direction, Map<String, ?> headers, Object[] values) { if (expression != null) { return expression.evaluate(trace, node, direction, headers, values); } return null; }
java
protected String getValue(Trace trace, Node node, Direction direction, Map<String, ?> headers, Object[] values) { if (expression != null) { return expression.evaluate(trace, node, direction, headers, values); } return null; }
[ "protected", "String", "getValue", "(", "Trace", "trace", ",", "Node", "node", ",", "Direction", "direction", ",", "Map", "<", "String", ",", "?", ">", "headers", ",", "Object", "[", "]", "values", ")", "{", "if", "(", "expression", "!=", "null", ")", ...
This method returns the value, associated with the expression, for the supplied data. @param trace The trace @param node The node @param direction The direction @param headers The optional headers @param values The values @return The result of the expression
[ "This", "method", "returns", "the", "value", "associated", "with", "the", "expression", "for", "the", "supplied", "data", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/api/src/main/java/org/hawkular/apm/api/internal/actions/ExpressionBasedActionHandler.java#L108-L115
37,325
hawkular/hawkular-apm
client/agent-opentracing/src/main/java/org/hawkular/apm/agent/opentracing/OpenTracingManager.java
OpenTracingManager.startSpanWithParent
public void startSpanWithParent(SpanBuilder spanBuilder, Span parent, String id) { if (parent != null) { spanBuilder.asChildOf(parent.context()); } doStartSpan(spanBuilder, id); }
java
public void startSpanWithParent(SpanBuilder spanBuilder, Span parent, String id) { if (parent != null) { spanBuilder.asChildOf(parent.context()); } doStartSpan(spanBuilder, id); }
[ "public", "void", "startSpanWithParent", "(", "SpanBuilder", "spanBuilder", ",", "Span", "parent", ",", "String", "id", ")", "{", "if", "(", "parent", "!=", "null", ")", "{", "spanBuilder", ".", "asChildOf", "(", "parent", ".", "context", "(", ")", ")", ...
This is a convenience method for situations where we don't know if a parent span is available. If we try to add a childOf relationship to a null parent, it would cause a null pointer exception. The optional id is associated with the started span. @param spanBuilder The span builder @param parent The parent span @para...
[ "This", "is", "a", "convenience", "method", "for", "situations", "where", "we", "don", "t", "know", "if", "a", "parent", "span", "is", "available", ".", "If", "we", "try", "to", "add", "a", "childOf", "relationship", "to", "a", "null", "parent", "it", ...
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/client/agent-opentracing/src/main/java/org/hawkular/apm/agent/opentracing/OpenTracingManager.java#L138-L144
37,326
hawkular/hawkular-apm
client/agent-opentracing/src/main/java/org/hawkular/apm/agent/opentracing/OpenTracingManager.java
OpenTracingManager.startSpanWithContext
public void startSpanWithContext(SpanBuilder spanBuilder, SpanContext context, String id) { if (context != null) { spanBuilder.asChildOf(context); } doStartSpan(spanBuilder, id); }
java
public void startSpanWithContext(SpanBuilder spanBuilder, SpanContext context, String id) { if (context != null) { spanBuilder.asChildOf(context); } doStartSpan(spanBuilder, id); }
[ "public", "void", "startSpanWithContext", "(", "SpanBuilder", "spanBuilder", ",", "SpanContext", "context", ",", "String", "id", ")", "{", "if", "(", "context", "!=", "null", ")", "{", "spanBuilder", ".", "asChildOf", "(", "context", ")", ";", "}", "doStartS...
This is a convenience method for situations where we don't know if a parent span is available. If we try to add a childOf relationship to a null context, it would cause a null pointer exception. The optional id is associated with the started span. @param spanBuilder The span builder @param context The span context @p...
[ "This", "is", "a", "convenience", "method", "for", "situations", "where", "we", "don", "t", "know", "if", "a", "parent", "span", "is", "available", ".", "If", "we", "try", "to", "add", "a", "childOf", "relationship", "to", "a", "null", "context", "it", ...
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/client/agent-opentracing/src/main/java/org/hawkular/apm/agent/opentracing/OpenTracingManager.java#L169-L175
37,327
hawkular/hawkular-apm
client/agent-opentracing/src/main/java/org/hawkular/apm/agent/opentracing/OpenTracingManager.java
OpenTracingManager.hasSpanWithId
public boolean hasSpanWithId(String id) { TraceState ts = traceState.get(); if (id != null && ts != null) { boolean spanFound = ts.getSpanForId(id) != null; if (log.isLoggable(Level.FINEST)) { log.finest("Has span with id = " + id + "? " + spanFound); ...
java
public boolean hasSpanWithId(String id) { TraceState ts = traceState.get(); if (id != null && ts != null) { boolean spanFound = ts.getSpanForId(id) != null; if (log.isLoggable(Level.FINEST)) { log.finest("Has span with id = " + id + "? " + spanFound); ...
[ "public", "boolean", "hasSpanWithId", "(", "String", "id", ")", "{", "TraceState", "ts", "=", "traceState", ".", "get", "(", ")", ";", "if", "(", "id", "!=", "null", "&&", "ts", "!=", "null", ")", "{", "boolean", "spanFound", "=", "ts", ".", "getSpan...
This method determines whether there is a span available associated with the supplied id. @return Whether a span exists with the id
[ "This", "method", "determines", "whether", "there", "is", "a", "span", "available", "associated", "with", "the", "supplied", "id", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/client/agent-opentracing/src/main/java/org/hawkular/apm/agent/opentracing/OpenTracingManager.java#L275-L287
37,328
hawkular/hawkular-apm
client/agent-opentracing/src/main/java/org/hawkular/apm/agent/opentracing/OpenTracingManager.java
OpenTracingManager.isCurrentSpan
public boolean isCurrentSpan(String id) { TraceState ts = traceState.get(); if (id != null && ts != null) { boolean spanFound = ts.peekId().equals(id); if (log.isLoggable(Level.FINEST)) { log.finest("Is current span id = " + id + "? " + spanFound); } ...
java
public boolean isCurrentSpan(String id) { TraceState ts = traceState.get(); if (id != null && ts != null) { boolean spanFound = ts.peekId().equals(id); if (log.isLoggable(Level.FINEST)) { log.finest("Is current span id = " + id + "? " + spanFound); } ...
[ "public", "boolean", "isCurrentSpan", "(", "String", "id", ")", "{", "TraceState", "ts", "=", "traceState", ".", "get", "(", ")", ";", "if", "(", "id", "!=", "null", "&&", "ts", "!=", "null", ")", "{", "boolean", "spanFound", "=", "ts", ".", "peekId"...
This method determines whether the current span is associated with the supplied id. @return Whether the current span is associated with the id
[ "This", "method", "determines", "whether", "the", "current", "span", "is", "associated", "with", "the", "supplied", "id", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/client/agent-opentracing/src/main/java/org/hawkular/apm/agent/opentracing/OpenTracingManager.java#L295-L307
37,329
hawkular/hawkular-apm
client/agent-opentracing/src/main/java/org/hawkular/apm/agent/opentracing/OpenTracingManager.java
OpenTracingManager.getSpan
public Span getSpan() { TraceState ts = traceState.get(); if (ts != null) { Span span = ts.peekSpan(); if (log.isLoggable(Level.FINEST)) { log.finest("Get span = " + span + " trace state = " + ts); } return span; } if (log...
java
public Span getSpan() { TraceState ts = traceState.get(); if (ts != null) { Span span = ts.peekSpan(); if (log.isLoggable(Level.FINEST)) { log.finest("Get span = " + span + " trace state = " + ts); } return span; } if (log...
[ "public", "Span", "getSpan", "(", ")", "{", "TraceState", "ts", "=", "traceState", ".", "get", "(", ")", ";", "if", "(", "ts", "!=", "null", ")", "{", "Span", "span", "=", "ts", ".", "peekSpan", "(", ")", ";", "if", "(", "log", ".", "isLoggable",...
This method retrieves the current span, if available. @return The current span, or null if not defined
[ "This", "method", "retrieves", "the", "current", "span", "if", "available", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/client/agent-opentracing/src/main/java/org/hawkular/apm/agent/opentracing/OpenTracingManager.java#L314-L329
37,330
hawkular/hawkular-apm
client/agent-opentracing/src/main/java/org/hawkular/apm/agent/opentracing/OpenTracingManager.java
OpenTracingManager.suspend
public void suspend(String id) { TraceState ts = traceState.get(); if (log.isLoggable(Level.FINEST)) { log.finest("Suspend trace state = " + ts + " id = " + id); } if (ts != null) { setExpire(ts); try { suspendedStateLock.lock(); ...
java
public void suspend(String id) { TraceState ts = traceState.get(); if (log.isLoggable(Level.FINEST)) { log.finest("Suspend trace state = " + ts + " id = " + id); } if (ts != null) { setExpire(ts); try { suspendedStateLock.lock(); ...
[ "public", "void", "suspend", "(", "String", "id", ")", "{", "TraceState", "ts", "=", "traceState", ".", "get", "(", ")", ";", "if", "(", "log", ".", "isLoggable", "(", "Level", ".", "FINEST", ")", ")", "{", "log", ".", "finest", "(", "\"Suspend trace...
This method suspends any current trace state, associated with this thread, and associates it with the supplied id. This state can then be re-activated using the resume method. @param id The id to associated with the suspended trace state
[ "This", "method", "suspends", "any", "current", "trace", "state", "associated", "with", "this", "thread", "and", "associates", "it", "with", "the", "supplied", "id", ".", "This", "state", "can", "then", "be", "re", "-", "activated", "using", "the", "resume",...
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/client/agent-opentracing/src/main/java/org/hawkular/apm/agent/opentracing/OpenTracingManager.java#L338-L364
37,331
hawkular/hawkular-apm
client/agent-opentracing/src/main/java/org/hawkular/apm/agent/opentracing/OpenTracingManager.java
OpenTracingManager.resume
public void resume(String id) { try { suspendedStateLock.lock(); TraceState ts = suspendedState.get(id); if (ts != null) { clearExpire(ts); // Log after finding trace state, otherwise may generate alot of logging if (log.isLo...
java
public void resume(String id) { try { suspendedStateLock.lock(); TraceState ts = suspendedState.get(id); if (ts != null) { clearExpire(ts); // Log after finding trace state, otherwise may generate alot of logging if (log.isLo...
[ "public", "void", "resume", "(", "String", "id", ")", "{", "try", "{", "suspendedStateLock", ".", "lock", "(", ")", ";", "TraceState", "ts", "=", "suspendedState", ".", "get", "(", "id", ")", ";", "if", "(", "ts", "!=", "null", ")", "{", "clearExpire...
This method attempts to resume a previously suspended trace state associated with the supplied id. When resumed, the trace state is associated with the current thread. @param id The id of the trace state to resume
[ "This", "method", "attempts", "to", "resume", "a", "previously", "suspended", "trace", "state", "associated", "with", "the", "supplied", "id", ".", "When", "resumed", "the", "trace", "state", "is", "associated", "with", "the", "current", "thread", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/client/agent-opentracing/src/main/java/org/hawkular/apm/agent/opentracing/OpenTracingManager.java#L373-L399
37,332
hawkular/hawkular-apm
client/agent-opentracing/src/main/java/org/hawkular/apm/agent/opentracing/OpenTracingManager.java
OpenTracingManager.includePath
public boolean includePath(String path) { if (path.startsWith("/hawkular/apm")) { return false; } int dotPos = path.lastIndexOf('.'); int slashPos = path.lastIndexOf('/'); if (dotPos <= slashPos) { return true; } if (!fileExtensionWhiteli...
java
public boolean includePath(String path) { if (path.startsWith("/hawkular/apm")) { return false; } int dotPos = path.lastIndexOf('.'); int slashPos = path.lastIndexOf('/'); if (dotPos <= slashPos) { return true; } if (!fileExtensionWhiteli...
[ "public", "boolean", "includePath", "(", "String", "path", ")", "{", "if", "(", "path", ".", "startsWith", "(", "\"/hawkular/apm\"", ")", ")", "{", "return", "false", ";", "}", "int", "dotPos", "=", "path", ".", "lastIndexOf", "(", "'", "'", ")", ";", ...
This method determines if the supplied path should be monitored. @param path The path @return Whether the path is valid for monitoring
[ "This", "method", "determines", "if", "the", "supplied", "path", "should", "be", "monitored", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/client/agent-opentracing/src/main/java/org/hawkular/apm/agent/opentracing/OpenTracingManager.java#L450-L475
37,333
hawkular/hawkular-apm
client/agent-opentracing/src/main/java/org/hawkular/apm/agent/opentracing/OpenTracingManager.java
OpenTracingManager.sanitizePaths
public String sanitizePaths(String baseUri, String resourcePath) { if (baseUri.endsWith("/") && resourcePath.startsWith("/")) { return baseUri.substring(0, baseUri.length()-1) + resourcePath; } if ((!baseUri.endsWith("/")) && (!resourcePath.startsWith("/"))) { return bas...
java
public String sanitizePaths(String baseUri, String resourcePath) { if (baseUri.endsWith("/") && resourcePath.startsWith("/")) { return baseUri.substring(0, baseUri.length()-1) + resourcePath; } if ((!baseUri.endsWith("/")) && (!resourcePath.startsWith("/"))) { return bas...
[ "public", "String", "sanitizePaths", "(", "String", "baseUri", ",", "String", "resourcePath", ")", "{", "if", "(", "baseUri", ".", "endsWith", "(", "\"/\"", ")", "&&", "resourcePath", ".", "startsWith", "(", "\"/\"", ")", ")", "{", "return", "baseUri", "."...
Helper to remove duplicate slashes @param baseUri the base URI, usually in the format "/context/restapp/" @param resourcePath the resource path, usually in the format "/resource/method/record" @return The two parameters joined, with the double slash between them removed, like "/context/restapp/resource/method/reco...
[ "Helper", "to", "remove", "duplicate", "slashes" ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/client/agent-opentracing/src/main/java/org/hawkular/apm/agent/opentracing/OpenTracingManager.java#L543-L552
37,334
hawkular/hawkular-apm
api/src/main/java/org/hawkular/apm/api/internal/actions/helpers/JSON.java
JSON.serialize
public static String serialize(Object data) { String ret=null; if (data != null) { if (data.getClass() == String.class) { ret = (String)data; } else if (data instanceof byte[]) { ret = new String((byte[])data); } else { ...
java
public static String serialize(Object data) { String ret=null; if (data != null) { if (data.getClass() == String.class) { ret = (String)data; } else if (data instanceof byte[]) { ret = new String((byte[])data); } else { ...
[ "public", "static", "String", "serialize", "(", "Object", "data", ")", "{", "String", "ret", "=", "null", ";", "if", "(", "data", "!=", "null", ")", "{", "if", "(", "data", ".", "getClass", "(", ")", "==", "String", ".", "class", ")", "{", "ret", ...
This method serializes the supplied object to a JSON document. @param data The object @return The JSON representation
[ "This", "method", "serializes", "the", "supplied", "object", "to", "a", "JSON", "document", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/api/src/main/java/org/hawkular/apm/api/internal/actions/helpers/JSON.java#L43-L60
37,335
hawkular/hawkular-apm
server/processors/src/main/java/org/hawkular/apm/server/processor/tracecompletiontime/TraceCompletionInformationUtil.java
TraceCompletionInformationUtil.initialiseLinks
public static void initialiseLinks(TraceCompletionInformation ci, long fragmentBaseTime, Node n, StringBuilder nodeId) { // Add Communication to represent a potential 'CausedBy' link from one or more fragments back to // this node TraceCompletionInformation.Communication c = new Trac...
java
public static void initialiseLinks(TraceCompletionInformation ci, long fragmentBaseTime, Node n, StringBuilder nodeId) { // Add Communication to represent a potential 'CausedBy' link from one or more fragments back to // this node TraceCompletionInformation.Communication c = new Trac...
[ "public", "static", "void", "initialiseLinks", "(", "TraceCompletionInformation", "ci", ",", "long", "fragmentBaseTime", ",", "Node", "n", ",", "StringBuilder", "nodeId", ")", "{", "// Add Communication to represent a potential 'CausedBy' link from one or more fragments back to",...
This method initialises the completion time information for a trace instance. @param ci The information @param fragmentBaseTime The base time for the fragment (microseconds) @param n The node @param nodeId The path id for the node
[ "This", "method", "initialises", "the", "completion", "time", "information", "for", "a", "trace", "instance", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/server/processors/src/main/java/org/hawkular/apm/server/processor/tracecompletiontime/TraceCompletionInformationUtil.java#L48-L109
37,336
hawkular/hawkular-apm
server/elasticsearch/src/main/java/org/hawkular/apm/server/elasticsearch/ElasticsearchClient.java
ElasticsearchClient.getSingleton
public static synchronized ElasticsearchClient getSingleton() { if (singleton == null) { singleton = new ElasticsearchClient(); try { singleton.init(); } catch (Exception e) { log.log(Level.SEVERE, "Failed to initialise Elasticsearch client", e...
java
public static synchronized ElasticsearchClient getSingleton() { if (singleton == null) { singleton = new ElasticsearchClient(); try { singleton.init(); } catch (Exception e) { log.log(Level.SEVERE, "Failed to initialise Elasticsearch client", e...
[ "public", "static", "synchronized", "ElasticsearchClient", "getSingleton", "(", ")", "{", "if", "(", "singleton", "==", "null", ")", "{", "singleton", "=", "new", "ElasticsearchClient", "(", ")", ";", "try", "{", "singleton", ".", "init", "(", ")", ";", "}...
This method explicit instantiates the singleton. For use outside a CDI environment. @return The singleton
[ "This", "method", "explicit", "instantiates", "the", "singleton", ".", "For", "use", "outside", "a", "CDI", "environment", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/server/elasticsearch/src/main/java/org/hawkular/apm/server/elasticsearch/ElasticsearchClient.java#L127-L137
37,337
hawkular/hawkular-apm
server/elasticsearch/src/main/java/org/hawkular/apm/server/elasticsearch/ElasticsearchClient.java
ElasticsearchClient.prepareMapping
@SuppressWarnings("unchecked") private boolean prepareMapping(String index, Map<String, Object> defaultMappings) { boolean success = true; for (Map.Entry<String, Object> stringObjectEntry : defaultMappings.entrySet()) { Map<String, Object> mapping = (Map<String, Object>) stringObjectEnt...
java
@SuppressWarnings("unchecked") private boolean prepareMapping(String index, Map<String, Object> defaultMappings) { boolean success = true; for (Map.Entry<String, Object> stringObjectEntry : defaultMappings.entrySet()) { Map<String, Object> mapping = (Map<String, Object>) stringObjectEnt...
[ "@", "SuppressWarnings", "(", "\"unchecked\"", ")", "private", "boolean", "prepareMapping", "(", "String", "index", ",", "Map", "<", "String", ",", "Object", ">", "defaultMappings", ")", "{", "boolean", "success", "=", "true", ";", "for", "(", "Map", ".", ...
This method applies the supplied mapping to the index. @param index The name of the index @param defaultMappings The default mappings @return true if the mapping was successful
[ "This", "method", "applies", "the", "supplied", "mapping", "to", "the", "index", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/server/elasticsearch/src/main/java/org/hawkular/apm/server/elasticsearch/ElasticsearchClient.java#L273-L307
37,338
hawkular/hawkular-apm
server/elasticsearch/src/main/java/org/hawkular/apm/server/elasticsearch/ElasticsearchClient.java
ElasticsearchClient.createIndex
private boolean createIndex(String index, Map<String, Object> defaultSettings) { IndicesExistsResponse res = client.admin().indices().prepareExists(index).execute().actionGet(); boolean created = false; if (!res.isExists()) { CreateIndexRequestBuilder req = client.admin().indices().p...
java
private boolean createIndex(String index, Map<String, Object> defaultSettings) { IndicesExistsResponse res = client.admin().indices().prepareExists(index).execute().actionGet(); boolean created = false; if (!res.isExists()) { CreateIndexRequestBuilder req = client.admin().indices().p...
[ "private", "boolean", "createIndex", "(", "String", "index", ",", "Map", "<", "String", ",", "Object", ">", "defaultSettings", ")", "{", "IndicesExistsResponse", "res", "=", "client", ".", "admin", "(", ")", ".", "indices", "(", ")", ".", "prepareExists", ...
Check if index is created. if not it will created it @param index The index @return returns true if it just created the index. False if the index already existed
[ "Check", "if", "index", "is", "created", ".", "if", "not", "it", "will", "created", "it" ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/server/elasticsearch/src/main/java/org/hawkular/apm/server/elasticsearch/ElasticsearchClient.java#L315-L328
37,339
hawkular/hawkular-apm
server/elasticsearch/src/main/java/org/hawkular/apm/server/elasticsearch/ElasticsearchClient.java
ElasticsearchClient.determineHostsAsProperty
private void determineHostsAsProperty() { if (hosts.startsWith("${") && hosts.endsWith("}")) { String hostsProperty = hosts.substring(2, hosts.length() - 1); hosts = PropertyUtil.getProperty(hostsProperty); if (hosts == null) { throw new IllegalArgumentExcepti...
java
private void determineHostsAsProperty() { if (hosts.startsWith("${") && hosts.endsWith("}")) { String hostsProperty = hosts.substring(2, hosts.length() - 1); hosts = PropertyUtil.getProperty(hostsProperty); if (hosts == null) { throw new IllegalArgumentExcepti...
[ "private", "void", "determineHostsAsProperty", "(", ")", "{", "if", "(", "hosts", ".", "startsWith", "(", "\"${\"", ")", "&&", "hosts", ".", "endsWith", "(", "\"}\"", ")", ")", "{", "String", "hostsProperty", "=", "hosts", ".", "substring", "(", "2", ","...
sets hosts if the _hosts propertey is determined to be a property placeholder Throws IllegalArgumentException argument exception when nothing found
[ "sets", "hosts", "if", "the", "_hosts", "propertey", "is", "determined", "to", "be", "a", "property", "placeholder", "Throws", "IllegalArgumentException", "argument", "exception", "when", "nothing", "found" ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/server/elasticsearch/src/main/java/org/hawkular/apm/server/elasticsearch/ElasticsearchClient.java#L334-L344
37,340
hawkular/hawkular-apm
server/elasticsearch/src/main/java/org/hawkular/apm/server/elasticsearch/ElasticsearchClient.java
ElasticsearchClient.clearTenant
public void clearTenant(String tenantId) { String index = getIndex(tenantId); synchronized (knownIndices) { IndicesAdminClient indices = client.admin().indices(); boolean indexExists = indices.prepareExists(index) .execute() .actionGet() ...
java
public void clearTenant(String tenantId) { String index = getIndex(tenantId); synchronized (knownIndices) { IndicesAdminClient indices = client.admin().indices(); boolean indexExists = indices.prepareExists(index) .execute() .actionGet() ...
[ "public", "void", "clearTenant", "(", "String", "tenantId", ")", "{", "String", "index", "=", "getIndex", "(", "tenantId", ")", ";", "synchronized", "(", "knownIndices", ")", "{", "IndicesAdminClient", "indices", "=", "client", ".", "admin", "(", ")", ".", ...
Removes all data associated with tenant. @param tenantId index
[ "Removes", "all", "data", "associated", "with", "tenant", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/server/elasticsearch/src/main/java/org/hawkular/apm/server/elasticsearch/ElasticsearchClient.java#L360-L379
37,341
hawkular/hawkular-apm
server/elasticsearch/src/main/java/org/hawkular/apm/server/elasticsearch/ElasticsearchClient.java
ElasticsearchClient.close
@PreDestroy public void close() { if (node != null) { node.close(); } if (client != null) { client.close(); client = null; } }
java
@PreDestroy public void close() { if (node != null) { node.close(); } if (client != null) { client.close(); client = null; } }
[ "@", "PreDestroy", "public", "void", "close", "(", ")", "{", "if", "(", "node", "!=", "null", ")", "{", "node", ".", "close", "(", ")", ";", "}", "if", "(", "client", "!=", "null", ")", "{", "client", ".", "close", "(", ")", ";", "client", "=",...
This method closes the Elasticsearch client.
[ "This", "method", "closes", "the", "Elasticsearch", "client", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/server/elasticsearch/src/main/java/org/hawkular/apm/server/elasticsearch/ElasticsearchClient.java#L385-L394
37,342
hawkular/hawkular-apm
server/processors-zipkin/src/main/java/org/hawkular/apm/server/processor/zipkin/CompletionTimeUtil.java
CompletionTimeUtil.spanToCompletionTime
public static CompletionTime spanToCompletionTime(SpanCache spanCache, Span span) { CompletionTime completionTime = new CompletionTime(); completionTime.setId(span.getId()); if (span.getTimestamp() != null) { completionTime.setTimestamp(span.getTimestamp()); } if (sp...
java
public static CompletionTime spanToCompletionTime(SpanCache spanCache, Span span) { CompletionTime completionTime = new CompletionTime(); completionTime.setId(span.getId()); if (span.getTimestamp() != null) { completionTime.setTimestamp(span.getTimestamp()); } if (sp...
[ "public", "static", "CompletionTime", "spanToCompletionTime", "(", "SpanCache", "spanCache", ",", "Span", "span", ")", "{", "CompletionTime", "completionTime", "=", "new", "CompletionTime", "(", ")", ";", "completionTime", ".", "setId", "(", "span", ".", "getId", ...
Convert span to CompletionTime object @param span the span @param spanCache span cache @return completion time derived from the supplied span, if the uri of the completion time cannot be derived (span is server span and client span also does not contain url) it returns null
[ "Convert", "span", "to", "CompletionTime", "object" ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/server/processors-zipkin/src/main/java/org/hawkular/apm/server/processor/zipkin/CompletionTimeUtil.java#L46-L83
37,343
hawkular/hawkular-apm
server/processors/src/main/java/org/hawkular/apm/server/processor/communicationdetails/CommunicationDetailsDeriver.java
CommunicationDetailsDeriver.initialiseOutbound
protected static void initialiseOutbound(Node n, long baseTime, CommunicationDetails cd, StringBuilder nodeId) { CommunicationDetails.Outbound ob = new CommunicationDetails.Outbound(); ob.getLinkIds().add(nodeId.toString()); ob.setMultiConsumer(true); ob.setProducerOffset(n.g...
java
protected static void initialiseOutbound(Node n, long baseTime, CommunicationDetails cd, StringBuilder nodeId) { CommunicationDetails.Outbound ob = new CommunicationDetails.Outbound(); ob.getLinkIds().add(nodeId.toString()); ob.setMultiConsumer(true); ob.setProducerOffset(n.g...
[ "protected", "static", "void", "initialiseOutbound", "(", "Node", "n", ",", "long", "baseTime", ",", "CommunicationDetails", "cd", ",", "StringBuilder", "nodeId", ")", "{", "CommunicationDetails", ".", "Outbound", "ob", "=", "new", "CommunicationDetails", ".", "Ou...
This method initialises the outbound information from the consumer's nodes in the supplied communication details. @param n The node @param baseTime The fragment's base time (ns) @param cd The communication details @param nodeId The path id for the node
[ "This", "method", "initialises", "the", "outbound", "information", "from", "the", "consumer", "s", "nodes", "in", "the", "supplied", "communication", "details", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/server/processors/src/main/java/org/hawkular/apm/server/processor/communicationdetails/CommunicationDetailsDeriver.java#L220-L255
37,344
hawkular/hawkular-apm
server/elasticsearch/src/main/java/org/hawkular/apm/server/elasticsearch/ElasticsearchUtil.java
ElasticsearchUtil.buildFilter
public static FilterBuilder buildFilter(Criteria criteria) { if (criteria.getTransaction() != null && criteria.getTransaction().trim().isEmpty()) { return FilterBuilders.missingFilter(TRANSACTION_FIELD); } return null; }
java
public static FilterBuilder buildFilter(Criteria criteria) { if (criteria.getTransaction() != null && criteria.getTransaction().trim().isEmpty()) { return FilterBuilders.missingFilter(TRANSACTION_FIELD); } return null; }
[ "public", "static", "FilterBuilder", "buildFilter", "(", "Criteria", "criteria", ")", "{", "if", "(", "criteria", ".", "getTransaction", "(", ")", "!=", "null", "&&", "criteria", ".", "getTransaction", "(", ")", ".", "trim", "(", ")", ".", "isEmpty", "(", ...
This method returns a filter associated with the supplied criteria. @param criteria The criteria @return The filter, or null if not relevant
[ "This", "method", "returns", "a", "filter", "associated", "with", "the", "supplied", "criteria", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/server/elasticsearch/src/main/java/org/hawkular/apm/server/elasticsearch/ElasticsearchUtil.java#L170-L175
37,345
hawkular/hawkular-apm
api/src/main/java/org/hawkular/apm/api/utils/TimeUtil.java
TimeUtil.toMicros
public static long toMicros(Instant instant) { return TimeUnit.SECONDS.toMicros(instant.getEpochSecond()) + TimeUnit.NANOSECONDS.toMicros(instant.getNano()); }
java
public static long toMicros(Instant instant) { return TimeUnit.SECONDS.toMicros(instant.getEpochSecond()) + TimeUnit.NANOSECONDS.toMicros(instant.getNano()); }
[ "public", "static", "long", "toMicros", "(", "Instant", "instant", ")", "{", "return", "TimeUnit", ".", "SECONDS", ".", "toMicros", "(", "instant", ".", "getEpochSecond", "(", ")", ")", "+", "TimeUnit", ".", "NANOSECONDS", ".", "toMicros", "(", "instant", ...
This method returns the timestamp, associated with the supplied instant, in microseconds. @param instant The instant @return The timestamp in microseconds
[ "This", "method", "returns", "the", "timestamp", "associated", "with", "the", "supplied", "instant", "in", "microseconds", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/api/src/main/java/org/hawkular/apm/api/utils/TimeUtil.java#L36-L38
37,346
hawkular/hawkular-apm
api/src/main/java/org/hawkular/apm/api/model/config/CollectorConfiguration.java
CollectorConfiguration.getProperty
public String getProperty(String name, String def) { String ret=PropertyUtil.getProperty(name, null); if (ret == null) { if (getProperties().containsKey(name)) { ret = getProperties().get(name); } else { ret = def; } } ...
java
public String getProperty(String name, String def) { String ret=PropertyUtil.getProperty(name, null); if (ret == null) { if (getProperties().containsKey(name)) { ret = getProperties().get(name); } else { ret = def; } } ...
[ "public", "String", "getProperty", "(", "String", "name", ",", "String", "def", ")", "{", "String", "ret", "=", "PropertyUtil", ".", "getProperty", "(", "name", ",", "null", ")", ";", "if", "(", "ret", "==", "null", ")", "{", "if", "(", "getProperties"...
This method returns the property associated with the supplied name. The system properties will be checked first, and if not available, then the collector configuration properties. @param name The name of the required property @param def The optional default value @return The property value, or if not found then the de...
[ "This", "method", "returns", "the", "property", "associated", "with", "the", "supplied", "name", ".", "The", "system", "properties", "will", "be", "checked", "first", "and", "if", "not", "available", "then", "the", "collector", "configuration", "properties", "."...
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/api/src/main/java/org/hawkular/apm/api/model/config/CollectorConfiguration.java#L72-L87
37,347
hawkular/hawkular-apm
api/src/main/java/org/hawkular/apm/api/model/config/CollectorConfiguration.java
CollectorConfiguration.merge
public void merge(CollectorConfiguration config, boolean overwrite) throws IllegalArgumentException { for (String key : config.getInstrumentation().keySet()) { if (getInstrumentation().containsKey(key) && !overwrite) { throw new IllegalArgumentException("Instrumentation f...
java
public void merge(CollectorConfiguration config, boolean overwrite) throws IllegalArgumentException { for (String key : config.getInstrumentation().keySet()) { if (getInstrumentation().containsKey(key) && !overwrite) { throw new IllegalArgumentException("Instrumentation f...
[ "public", "void", "merge", "(", "CollectorConfiguration", "config", ",", "boolean", "overwrite", ")", "throws", "IllegalArgumentException", "{", "for", "(", "String", "key", ":", "config", ".", "getInstrumentation", "(", ")", ".", "keySet", "(", ")", ")", "{",...
This method merges the supplied configuration into this configuration. If a conflict is found, if overwrite is true then the supplied config element will be used, otherwise an exception will be raised. @param config The configuration to merge @param overwrite Whether to overwrite when conflict found @throws IllegalArg...
[ "This", "method", "merges", "the", "supplied", "configuration", "into", "this", "configuration", ".", "If", "a", "conflict", "is", "found", "if", "overwrite", "is", "true", "then", "the", "supplied", "config", "element", "will", "be", "used", "otherwise", "an"...
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/api/src/main/java/org/hawkular/apm/api/model/config/CollectorConfiguration.java#L126-L141
37,348
hawkular/hawkular-apm
api/src/main/java/org/hawkular/apm/api/internal/actions/ExpressionHandlerFactory.java
ExpressionHandlerFactory.getHandler
public static ExpressionHandler getHandler(Expression expression) { ExpressionHandler ret = null; Class<? extends ExpressionHandler> cls = handlers.get(expression.getClass()); if (cls != null) { try { Constructor<? extends ExpressionHandler> con = cls.getConstructor(E...
java
public static ExpressionHandler getHandler(Expression expression) { ExpressionHandler ret = null; Class<? extends ExpressionHandler> cls = handlers.get(expression.getClass()); if (cls != null) { try { Constructor<? extends ExpressionHandler> con = cls.getConstructor(E...
[ "public", "static", "ExpressionHandler", "getHandler", "(", "Expression", "expression", ")", "{", "ExpressionHandler", "ret", "=", "null", ";", "Class", "<", "?", "extends", "ExpressionHandler", ">", "cls", "=", "handlers", ".", "get", "(", "expression", ".", ...
This method returns an expression handler for the supplied expression. @param expression The expression @return The handler
[ "This", "method", "returns", "an", "expression", "handler", "for", "the", "supplied", "expression", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/api/src/main/java/org/hawkular/apm/api/internal/actions/ExpressionHandlerFactory.java#L57-L69
37,349
hawkular/hawkular-apm
api/src/main/java/org/hawkular/apm/api/services/internal/CommunicationSummaryTreeBuilder.java
CommunicationSummaryTreeBuilder.buildCommunicationSummaryTree
public static Collection<CommunicationSummaryStatistics> buildCommunicationSummaryTree( Collection<CommunicationSummaryStatistics> nodes, Set<String> endpoints) { Map<String, CommunicationSummaryStatistics> nodeMap = new HashMap<String, CommunicationSummaryStatistics>(); // Create a map of ...
java
public static Collection<CommunicationSummaryStatistics> buildCommunicationSummaryTree( Collection<CommunicationSummaryStatistics> nodes, Set<String> endpoints) { Map<String, CommunicationSummaryStatistics> nodeMap = new HashMap<String, CommunicationSummaryStatistics>(); // Create a map of ...
[ "public", "static", "Collection", "<", "CommunicationSummaryStatistics", ">", "buildCommunicationSummaryTree", "(", "Collection", "<", "CommunicationSummaryStatistics", ">", "nodes", ",", "Set", "<", "String", ">", "endpoints", ")", "{", "Map", "<", "String", ",", "...
This method returns the supplied list of flat nodes as a set of tree structures with related nodes. @param nodes The collection of nodes represented as a flat list @param endpoints The initial endpoints @return The nodes returns as a collection of independent tree structures
[ "This", "method", "returns", "the", "supplied", "list", "of", "flat", "nodes", "as", "a", "set", "of", "tree", "structures", "with", "related", "nodes", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/api/src/main/java/org/hawkular/apm/api/services/internal/CommunicationSummaryTreeBuilder.java#L50-L76
37,350
hawkular/hawkular-apm
client/collector/src/main/java/org/hawkular/apm/client/collector/internal/DefaultTraceCollector.java
DefaultTraceCollector.setConfigurationService
protected void setConfigurationService(ConfigurationService configService) { if (log.isLoggable(Level.FINER)) { log.finer("Set configuration service = " + configService); } configurationService = configService; if (configurationService != null) { initConfig(); ...
java
protected void setConfigurationService(ConfigurationService configService) { if (log.isLoggable(Level.FINER)) { log.finer("Set configuration service = " + configService); } configurationService = configService; if (configurationService != null) { initConfig(); ...
[ "protected", "void", "setConfigurationService", "(", "ConfigurationService", "configService", ")", "{", "if", "(", "log", ".", "isLoggable", "(", "Level", ".", "FINER", ")", ")", "{", "log", ".", "finer", "(", "\"Set configuration service = \"", "+", "configServic...
This method sets the configuration service. @param configService The configuration service
[ "This", "method", "sets", "the", "configuration", "service", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/client/collector/src/main/java/org/hawkular/apm/client/collector/internal/DefaultTraceCollector.java#L105-L115
37,351
hawkular/hawkular-apm
client/collector/src/main/java/org/hawkular/apm/client/collector/internal/DefaultTraceCollector.java
DefaultTraceCollector.initConfig
protected void initConfig() { CollectorConfiguration config = configurationService.getCollector(null, null, null, null); if (config != null) { configLastUpdated = System.currentTimeMillis(); filterManager = new FilterManager(config); try { processorM...
java
protected void initConfig() { CollectorConfiguration config = configurationService.getCollector(null, null, null, null); if (config != null) { configLastUpdated = System.currentTimeMillis(); filterManager = new FilterManager(config); try { processorM...
[ "protected", "void", "initConfig", "(", ")", "{", "CollectorConfiguration", "config", "=", "configurationService", ".", "getCollector", "(", "null", ",", "null", ",", "null", ",", "null", ")", ";", "if", "(", "config", "!=", "null", ")", "{", "configLastUpda...
This method initialises the configuration.
[ "This", "method", "initialises", "the", "configuration", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/client/collector/src/main/java/org/hawkular/apm/client/collector/internal/DefaultTraceCollector.java#L120-L151
37,352
hawkular/hawkular-apm
client/collector/src/main/java/org/hawkular/apm/client/collector/internal/DefaultTraceCollector.java
DefaultTraceCollector.initRefreshCycle
protected void initRefreshCycle() { // Check if should check for updates Integer refresh = PropertyUtil.getPropertyAsInteger(PropertyUtil.HAWKULAR_APM_CONFIG_REFRESH); if (log.isLoggable(Level.FINER)) { log.finer("Configuration refresh cycle (in seconds) = " + refresh); } ...
java
protected void initRefreshCycle() { // Check if should check for updates Integer refresh = PropertyUtil.getPropertyAsInteger(PropertyUtil.HAWKULAR_APM_CONFIG_REFRESH); if (log.isLoggable(Level.FINER)) { log.finer("Configuration refresh cycle (in seconds) = " + refresh); } ...
[ "protected", "void", "initRefreshCycle", "(", ")", "{", "// Check if should check for updates", "Integer", "refresh", "=", "PropertyUtil", ".", "getPropertyAsInteger", "(", "PropertyUtil", ".", "HAWKULAR_APM_CONFIG_REFRESH", ")", ";", "if", "(", "log", ".", "isLoggable"...
This method initialises the refresh cycle.
[ "This", "method", "initialises", "the", "refresh", "cycle", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/client/collector/src/main/java/org/hawkular/apm/client/collector/internal/DefaultTraceCollector.java#L156-L207
37,353
hawkular/hawkular-apm
client/collector/src/main/java/org/hawkular/apm/client/collector/internal/DefaultTraceCollector.java
DefaultTraceCollector.mergeProducer
protected void mergeProducer(Producer inner, Producer outer) { if (log.isLoggable(Level.FINEST)) { log.finest("Merging Producer = " + inner + " into Producer = " + outer); } // NOTE: For now, assumption is that inner Producer is equivalent to the outer // and results from in...
java
protected void mergeProducer(Producer inner, Producer outer) { if (log.isLoggable(Level.FINEST)) { log.finest("Merging Producer = " + inner + " into Producer = " + outer); } // NOTE: For now, assumption is that inner Producer is equivalent to the outer // and results from in...
[ "protected", "void", "mergeProducer", "(", "Producer", "inner", ",", "Producer", "outer", ")", "{", "if", "(", "log", ".", "isLoggable", "(", "Level", ".", "FINEST", ")", ")", "{", "log", ".", "finest", "(", "\"Merging Producer = \"", "+", "inner", "+", ...
This method merges an inner Producer node information into its containing Producer node, before removing the inner node. @param inner @param outer
[ "This", "method", "merges", "an", "inner", "Producer", "node", "information", "into", "its", "containing", "Producer", "node", "before", "removing", "the", "inner", "node", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/client/collector/src/main/java/org/hawkular/apm/client/collector/internal/DefaultTraceCollector.java#L571-L589
37,354
hawkular/hawkular-apm
client/collector/src/main/java/org/hawkular/apm/client/collector/internal/DefaultTraceCollector.java
DefaultTraceCollector.processInContent
protected void processInContent(String location, FragmentBuilder builder, int hashCode) { if (builder.isInBufferActive(hashCode)) { processIn(location, null, builder.getInData(hashCode)); } else if (log.isLoggable(Level.FINEST)) { log.finest("processInContent: location=[" + locat...
java
protected void processInContent(String location, FragmentBuilder builder, int hashCode) { if (builder.isInBufferActive(hashCode)) { processIn(location, null, builder.getInData(hashCode)); } else if (log.isLoggable(Level.FINEST)) { log.finest("processInContent: location=[" + locat...
[ "protected", "void", "processInContent", "(", "String", "location", ",", "FragmentBuilder", "builder", ",", "int", "hashCode", ")", "{", "if", "(", "builder", ".", "isInBufferActive", "(", "hashCode", ")", ")", "{", "processIn", "(", "location", ",", "null", ...
This method processes the in content if available. @param location The instrumentation location @param builder The builder @param hashCode The hash code, or -1 to ignore the hash code
[ "This", "method", "processes", "the", "in", "content", "if", "available", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/client/collector/src/main/java/org/hawkular/apm/client/collector/internal/DefaultTraceCollector.java#L894-L901
37,355
hawkular/hawkular-apm
client/collector/src/main/java/org/hawkular/apm/client/collector/internal/DefaultTraceCollector.java
DefaultTraceCollector.processOutContent
protected void processOutContent(String location, FragmentBuilder builder, int hashCode) { if (builder.isOutBufferActive(hashCode)) { processOut(location, null, builder.getOutData(hashCode)); } else if (log.isLoggable(Level.FINEST)) { log.finest("processOutContent: location=[" + ...
java
protected void processOutContent(String location, FragmentBuilder builder, int hashCode) { if (builder.isOutBufferActive(hashCode)) { processOut(location, null, builder.getOutData(hashCode)); } else if (log.isLoggable(Level.FINEST)) { log.finest("processOutContent: location=[" + ...
[ "protected", "void", "processOutContent", "(", "String", "location", ",", "FragmentBuilder", "builder", ",", "int", "hashCode", ")", "{", "if", "(", "builder", ".", "isOutBufferActive", "(", "hashCode", ")", ")", "{", "processOut", "(", "location", ",", "null"...
This method processes the out content if available. @param location The instrumentation location @param builder The builder @param hashCode The hash code, or -1 to ignore the hash code
[ "This", "method", "processes", "the", "out", "content", "if", "available", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/client/collector/src/main/java/org/hawkular/apm/client/collector/internal/DefaultTraceCollector.java#L1002-L1009
37,356
hawkular/hawkular-apm
client/collector/src/main/java/org/hawkular/apm/client/collector/internal/DefaultTraceCollector.java
DefaultTraceCollector.push
protected void push(String location, FragmentBuilder builder, Node node) { // Check if any in content should be processed for the current node processInContent(location, builder, -1); builder.pushNode(node); }
java
protected void push(String location, FragmentBuilder builder, Node node) { // Check if any in content should be processed for the current node processInContent(location, builder, -1); builder.pushNode(node); }
[ "protected", "void", "push", "(", "String", "location", ",", "FragmentBuilder", "builder", ",", "Node", "node", ")", "{", "// Check if any in content should be processed for the current node", "processInContent", "(", "location", ",", "builder", ",", "-", "1", ")", ";...
This method pushes a new node into the trace fragment. @param location The instrumentation location @param builder The fragment builder @param node The node
[ "This", "method", "pushes", "a", "new", "node", "into", "the", "trace", "fragment", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/client/collector/src/main/java/org/hawkular/apm/client/collector/internal/DefaultTraceCollector.java#L1018-L1024
37,357
hawkular/hawkular-apm
client/collector/src/main/java/org/hawkular/apm/client/collector/internal/DefaultTraceCollector.java
DefaultTraceCollector.pop
protected <T extends Node> T pop(String location, FragmentBuilder builder, Class<T> cls, String uri) { if (builder == null) { if (log.isLoggable(Level.WARNING)) { log.warning("No fragment builder for this thread (" + Thread.currentThread() + ") - trying to pop...
java
protected <T extends Node> T pop(String location, FragmentBuilder builder, Class<T> cls, String uri) { if (builder == null) { if (log.isLoggable(Level.WARNING)) { log.warning("No fragment builder for this thread (" + Thread.currentThread() + ") - trying to pop...
[ "protected", "<", "T", "extends", "Node", ">", "T", "pop", "(", "String", "location", ",", "FragmentBuilder", "builder", ",", "Class", "<", "T", ">", "cls", ",", "String", "uri", ")", "{", "if", "(", "builder", "==", "null", ")", "{", "if", "(", "l...
This method pops an existing node from the trace fragment. @param location The instrumentation location @param The class to pop @param The optional URI to match @return The node
[ "This", "method", "pops", "an", "existing", "node", "from", "the", "trace", "fragment", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/client/collector/src/main/java/org/hawkular/apm/client/collector/internal/DefaultTraceCollector.java#L1034-L1068
37,358
hawkular/hawkular-apm
client/collector/src/main/java/org/hawkular/apm/client/collector/internal/DefaultTraceCollector.java
DefaultTraceCollector.processValues
protected void processValues(Trace trace, Node node, Direction direction, Map<String, ?> headers, Object[] values) { if (node.interactionNode()) { Message m = null; if (direction == Direction.In) { m = ((InteractionNode) node).getIn(); if (m ...
java
protected void processValues(Trace trace, Node node, Direction direction, Map<String, ?> headers, Object[] values) { if (node.interactionNode()) { Message m = null; if (direction == Direction.In) { m = ((InteractionNode) node).getIn(); if (m ...
[ "protected", "void", "processValues", "(", "Trace", "trace", ",", "Node", "node", ",", "Direction", "direction", ",", "Map", "<", "String", ",", "?", ">", "headers", ",", "Object", "[", "]", "values", ")", "{", "if", "(", "node", ".", "interactionNode", ...
This method processes the values associated with the start or end of a scoped activity. @param trace The trace @param node The node @param direction The direction @param headers The optional headers @param values The values
[ "This", "method", "processes", "the", "values", "associated", "with", "the", "start", "or", "end", "of", "a", "scoped", "activity", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/client/collector/src/main/java/org/hawkular/apm/client/collector/internal/DefaultTraceCollector.java#L1080-L1115
37,359
hawkular/hawkular-apm
client/collector/src/main/java/org/hawkular/apm/client/collector/internal/DefaultTraceCollector.java
DefaultTraceCollector.getHeaderValueText
protected String getHeaderValueText(Object value) { if (value == null) { return null; } // TODO: Type conversion based on provided config if (value.getClass() == String.class) { return (String) value; } else if (value instanceof List) { List<?...
java
protected String getHeaderValueText(Object value) { if (value == null) { return null; } // TODO: Type conversion based on provided config if (value.getClass() == String.class) { return (String) value; } else if (value instanceof List) { List<?...
[ "protected", "String", "getHeaderValueText", "(", "Object", "value", ")", "{", "if", "(", "value", "==", "null", ")", "{", "return", "null", ";", "}", "// TODO: Type conversion based on provided config", "if", "(", "value", ".", "getClass", "(", ")", "==", "St...
This method returns a textual representation of the supplied header value. @param value The original value @return The text representation, or null if no suitable found
[ "This", "method", "returns", "a", "textual", "representation", "of", "the", "supplied", "header", "value", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/client/collector/src/main/java/org/hawkular/apm/client/collector/internal/DefaultTraceCollector.java#L1124-L1142
37,360
hawkular/hawkular-apm
client/collector/src/main/java/org/hawkular/apm/client/collector/internal/DefaultTraceCollector.java
DefaultTraceCollector.checkForCompletion
protected void checkForCompletion(FragmentBuilder builder, Node node) { // Check if completed if (builder.isComplete()) { if (node != null) { Trace trace = builder.getTrace(); if (builder.getLevel().ordinal() <= ReportingLevel.None.ordinal()) { ...
java
protected void checkForCompletion(FragmentBuilder builder, Node node) { // Check if completed if (builder.isComplete()) { if (node != null) { Trace trace = builder.getTrace(); if (builder.getLevel().ordinal() <= ReportingLevel.None.ordinal()) { ...
[ "protected", "void", "checkForCompletion", "(", "FragmentBuilder", "builder", ",", "Node", "node", ")", "{", "// Check if completed", "if", "(", "builder", ".", "isComplete", "(", ")", ")", "{", "if", "(", "node", "!=", "null", ")", "{", "Trace", "trace", ...
This method checks whether the supplied fragment has been completed and therefore should be processed. @param node The most recently popped node @param builder The fragment builder
[ "This", "method", "checks", "whether", "the", "supplied", "fragment", "has", "been", "completed", "and", "therefore", "should", "be", "processed", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/client/collector/src/main/java/org/hawkular/apm/client/collector/internal/DefaultTraceCollector.java#L1151-L1194
37,361
hawkular/hawkular-apm
client/collector/src/main/java/org/hawkular/apm/client/collector/internal/DefaultTraceCollector.java
DefaultTraceCollector.spawnFragment
protected void spawnFragment(FragmentBuilder parentBuilder, Node node, int position, FragmentBuilder spawnedBuilder) { Trace trace = parentBuilder.getTrace(); String id = UUID.randomUUID().toString(); String location = null; String uri = null; String o...
java
protected void spawnFragment(FragmentBuilder parentBuilder, Node node, int position, FragmentBuilder spawnedBuilder) { Trace trace = parentBuilder.getTrace(); String id = UUID.randomUUID().toString(); String location = null; String uri = null; String o...
[ "protected", "void", "spawnFragment", "(", "FragmentBuilder", "parentBuilder", ",", "Node", "node", ",", "int", "position", ",", "FragmentBuilder", "spawnedBuilder", ")", "{", "Trace", "trace", "=", "parentBuilder", ".", "getTrace", "(", ")", ";", "String", "id"...
This method creates a new linked fragment to handle some asynchronous activities.
[ "This", "method", "creates", "a", "new", "linked", "fragment", "to", "handle", "some", "asynchronous", "activities", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/client/collector/src/main/java/org/hawkular/apm/client/collector/internal/DefaultTraceCollector.java#L1505-L1560
37,362
hawkular/hawkular-apm
server/infinispan/src/main/java/org/hawkular/apm/server/infinispan/InfinispanCacheManager.java
InfinispanCacheManager.getDefaultCache
public static synchronized <K, V> Cache<K, V> getDefaultCache(String cacheName) { if (defaultCacheManager == null) { defaultCacheManager = new DefaultCacheManager(); } return defaultCacheManager.getCache(cacheName); }
java
public static synchronized <K, V> Cache<K, V> getDefaultCache(String cacheName) { if (defaultCacheManager == null) { defaultCacheManager = new DefaultCacheManager(); } return defaultCacheManager.getCache(cacheName); }
[ "public", "static", "synchronized", "<", "K", ",", "V", ">", "Cache", "<", "K", ",", "V", ">", "getDefaultCache", "(", "String", "cacheName", ")", "{", "if", "(", "defaultCacheManager", "==", "null", ")", "{", "defaultCacheManager", "=", "new", "DefaultCac...
This method returns a default cache. @param cacheName The cache name @return The default cache
[ "This", "method", "returns", "a", "default", "cache", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/server/infinispan/src/main/java/org/hawkular/apm/server/infinispan/InfinispanCacheManager.java#L37-L42
37,363
hawkular/hawkular-apm
api/src/main/java/org/hawkular/apm/api/services/ServiceResolver.java
ServiceResolver.getSingletonService
@SuppressWarnings("unchecked") public static <T> T getSingletonService(Class<T> intf) { T ret = null; synchronized (singletons) { if (singletons.containsKey(intf)) { ret = (T) singletons.get(intf); } else { List<T> services = getServices(intf)...
java
@SuppressWarnings("unchecked") public static <T> T getSingletonService(Class<T> intf) { T ret = null; synchronized (singletons) { if (singletons.containsKey(intf)) { ret = (T) singletons.get(intf); } else { List<T> services = getServices(intf)...
[ "@", "SuppressWarnings", "(", "\"unchecked\"", ")", "public", "static", "<", "T", ">", "T", "getSingletonService", "(", "Class", "<", "T", ">", "intf", ")", "{", "T", "ret", "=", "null", ";", "synchronized", "(", "singletons", ")", "{", "if", "(", "sin...
This method identifies a service implementation that implements the supplied interface, and returns it as a singleton, so that subsequent calls for the same service will get the same instance. @param intf The interface @return The service, or null if not found @param <T> The service interface
[ "This", "method", "identifies", "a", "service", "implementation", "that", "implements", "the", "supplied", "interface", "and", "returns", "it", "as", "a", "singleton", "so", "that", "subsequent", "calls", "for", "the", "same", "service", "will", "get", "the", ...
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/api/src/main/java/org/hawkular/apm/api/services/ServiceResolver.java#L47-L66
37,364
hawkular/hawkular-apm
api/src/main/java/org/hawkular/apm/api/services/ServiceResolver.java
ServiceResolver.getServices
public static <T> List<T> getServices(Class<T> intf) { List<T> ret = new ArrayList<T>(); for (T service : ServiceLoader.load(intf)) { if (!(service instanceof ServiceStatus) || ((ServiceStatus)service).isAvailable()) { if (service instanceof ServiceLifecycle) { ...
java
public static <T> List<T> getServices(Class<T> intf) { List<T> ret = new ArrayList<T>(); for (T service : ServiceLoader.load(intf)) { if (!(service instanceof ServiceStatus) || ((ServiceStatus)service).isAvailable()) { if (service instanceof ServiceLifecycle) { ...
[ "public", "static", "<", "T", ">", "List", "<", "T", ">", "getServices", "(", "Class", "<", "T", ">", "intf", ")", "{", "List", "<", "T", ">", "ret", "=", "new", "ArrayList", "<", "T", ">", "(", ")", ";", "for", "(", "T", "service", ":", "Ser...
This method returns the list of service implementations that implement the supplied interface. @param intf The interface @return The list @param <T> The service interface
[ "This", "method", "returns", "the", "list", "of", "service", "implementations", "that", "implement", "the", "supplied", "interface", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/api/src/main/java/org/hawkular/apm/api/services/ServiceResolver.java#L77-L91
37,365
hawkular/hawkular-apm
client/collector/src/main/java/org/hawkular/apm/client/collector/internal/FilterManager.java
FilterManager.init
public void init(String txn, TransactionConfig btc) { FilterProcessor fp = null; if (btc.getFilter() != null) { fp = new FilterProcessor(txn, btc); } synchronized (filterMap) { // Check if old filter processor needs to be removed FilterProcessor oldf...
java
public void init(String txn, TransactionConfig btc) { FilterProcessor fp = null; if (btc.getFilter() != null) { fp = new FilterProcessor(txn, btc); } synchronized (filterMap) { // Check if old filter processor needs to be removed FilterProcessor oldf...
[ "public", "void", "init", "(", "String", "txn", ",", "TransactionConfig", "btc", ")", "{", "FilterProcessor", "fp", "=", "null", ";", "if", "(", "btc", ".", "getFilter", "(", ")", "!=", "null", ")", "{", "fp", "=", "new", "FilterProcessor", "(", "txn",...
This method initialises the filter manager with the supplied transaction configuration. @param txn The transaction name @param btc The configuration
[ "This", "method", "initialises", "the", "filter", "manager", "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/FilterManager.java#L77-L104
37,366
hawkular/hawkular-apm
client/collector/src/main/java/org/hawkular/apm/client/collector/internal/FilterManager.java
FilterManager.remove
public void remove(String txn) { synchronized (filterMap) { // Check if old filter processor needs to be removed FilterProcessor oldfp = filterMap.get(txn); if (oldfp != null) { globalExclusionFilters.remove(oldfp); btxnFilters.remove(oldfp); ...
java
public void remove(String txn) { synchronized (filterMap) { // Check if old filter processor needs to be removed FilterProcessor oldfp = filterMap.get(txn); if (oldfp != null) { globalExclusionFilters.remove(oldfp); btxnFilters.remove(oldfp); ...
[ "public", "void", "remove", "(", "String", "txn", ")", "{", "synchronized", "(", "filterMap", ")", "{", "// Check if old filter processor needs to be removed", "FilterProcessor", "oldfp", "=", "filterMap", ".", "get", "(", "txn", ")", ";", "if", "(", "oldfp", "!...
This method removes the transaction. @param txn The name of the transaction
[ "This", "method", "removes", "the", "transaction", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/client/collector/src/main/java/org/hawkular/apm/client/collector/internal/FilterManager.java#L111-L120
37,367
hawkular/hawkular-apm
client/collector/src/main/java/org/hawkular/apm/client/collector/internal/FilterManager.java
FilterManager.getFilterProcessor
public FilterProcessor getFilterProcessor(String endpoint) { FilterProcessor ret = (onlyNamedTransactions ? null : unnamedBTxn); synchronized (filterMap) { // First check if a global exclusion filter applies for (int i = 0; i < globalExclusionFilters.size(); i++) { ...
java
public FilterProcessor getFilterProcessor(String endpoint) { FilterProcessor ret = (onlyNamedTransactions ? null : unnamedBTxn); synchronized (filterMap) { // First check if a global exclusion filter applies for (int i = 0; i < globalExclusionFilters.size(); i++) { ...
[ "public", "FilterProcessor", "getFilterProcessor", "(", "String", "endpoint", ")", "{", "FilterProcessor", "ret", "=", "(", "onlyNamedTransactions", "?", "null", ":", "unnamedBTxn", ")", ";", "synchronized", "(", "filterMap", ")", "{", "// First check if a global excl...
This method determines whether the supplied endpoint is associated with a defined transaction, or valid due to global inclusion criteria. @param endpoint The endpoint @return The filter processor, with empty txn name if endpoint globally valid, or null if endpoint should be excluded
[ "This", "method", "determines", "whether", "the", "supplied", "endpoint", "is", "associated", "with", "a", "defined", "transaction", "or", "valid", "due", "to", "global", "inclusion", "criteria", "." ]
57a4df0611b359597626563ea5f9ac64d4bb2533
https://github.com/hawkular/hawkular-apm/blob/57a4df0611b359597626563ea5f9ac64d4bb2533/client/collector/src/main/java/org/hawkular/apm/client/collector/internal/FilterManager.java#L131-L168
37,368
mfornos/humanize
humanize-emoji/src/main/java/humanize/emoji/EmojiApi.java
EmojiApi.search
public static List<EmojiChar> search(String... annotations) { return Emoji.findByAnnotations(SPACE_JOINER.join(annotations)); }
java
public static List<EmojiChar> search(String... annotations) { return Emoji.findByAnnotations(SPACE_JOINER.join(annotations)); }
[ "public", "static", "List", "<", "EmojiChar", ">", "search", "(", "String", "...", "annotations", ")", "{", "return", "Emoji", ".", "findByAnnotations", "(", "SPACE_JOINER", ".", "join", "(", "annotations", ")", ")", ";", "}" ]
Finds matching Emoji character by its annotated metadata. @param annotations The annotation tags to be matched @return A list containing the instances of the marching characters
[ "Finds", "matching", "Emoji", "character", "by", "its", "annotated", "metadata", "." ]
59fc103045de9d217c9e77dbcb7621f992f46c63
https://github.com/mfornos/humanize/blob/59fc103045de9d217c9e77dbcb7621f992f46c63/humanize-emoji/src/main/java/humanize/emoji/EmojiApi.java#L115-L118
37,369
mfornos/humanize
humanize-slim/src/main/java/humanize/text/ExtendedMessageFormat.java
ExtendedMessageFormat.applyPattern
@Override public final void applyPattern(String pattern) { if (hasRegistry()) { super.applyPattern(pattern); toPattern = super.toPattern(); return; } ArrayList<Format> foundFormats = new ArrayList<Format>(); ArrayList<String> foundDes...
java
@Override public final void applyPattern(String pattern) { if (hasRegistry()) { super.applyPattern(pattern); toPattern = super.toPattern(); return; } ArrayList<Format> foundFormats = new ArrayList<Format>(); ArrayList<String> foundDes...
[ "@", "Override", "public", "final", "void", "applyPattern", "(", "String", "pattern", ")", "{", "if", "(", "hasRegistry", "(", ")", ")", "{", "super", ".", "applyPattern", "(", "pattern", ")", ";", "toPattern", "=", "super", ".", "toPattern", "(", ")", ...
Apply the specified pattern. @param pattern String
[ "Apply", "the", "specified", "pattern", "." ]
59fc103045de9d217c9e77dbcb7621f992f46c63
https://github.com/mfornos/humanize/blob/59fc103045de9d217c9e77dbcb7621f992f46c63/humanize-slim/src/main/java/humanize/text/ExtendedMessageFormat.java#L168-L260
37,370
mfornos/humanize
humanize-slim/src/main/java/humanize/text/ExtendedMessageFormat.java
ExtendedMessageFormat.getFormat
private Format getFormat(String desc) { if (registry != null) { String name = desc; String args = ""; int i = desc.indexOf(START_FMT); if (i > 0) { name = desc.substring(0, i).trim(); args = desc.substring(i...
java
private Format getFormat(String desc) { if (registry != null) { String name = desc; String args = ""; int i = desc.indexOf(START_FMT); if (i > 0) { name = desc.substring(0, i).trim(); args = desc.substring(i...
[ "private", "Format", "getFormat", "(", "String", "desc", ")", "{", "if", "(", "registry", "!=", "null", ")", "{", "String", "name", "=", "desc", ";", "String", "args", "=", "\"\"", ";", "int", "i", "=", "desc", ".", "indexOf", "(", "START_FMT", ")", ...
Get a custom format from a format description. @param desc String @return Format
[ "Get", "a", "custom", "format", "from", "a", "format", "description", "." ]
59fc103045de9d217c9e77dbcb7621f992f46c63
https://github.com/mfornos/humanize/blob/59fc103045de9d217c9e77dbcb7621f992f46c63/humanize-slim/src/main/java/humanize/text/ExtendedMessageFormat.java#L442-L463
37,371
mfornos/humanize
humanize-slim/src/main/java/humanize/text/ExtendedMessageFormat.java
ExtendedMessageFormat.getQuotedString
private void getQuotedString(String pattern, ParsePosition pos, boolean escapingOn) { appendQuotedString(pattern, pos, null, escapingOn); }
java
private void getQuotedString(String pattern, ParsePosition pos, boolean escapingOn) { appendQuotedString(pattern, pos, null, escapingOn); }
[ "private", "void", "getQuotedString", "(", "String", "pattern", ",", "ParsePosition", "pos", ",", "boolean", "escapingOn", ")", "{", "appendQuotedString", "(", "pattern", ",", "pos", ",", "null", ",", "escapingOn", ")", ";", "}" ]
Consume quoted string only @param pattern pattern to parse @param pos current parse position @param escapingOn whether to process escaped quotes
[ "Consume", "quoted", "string", "only" ]
59fc103045de9d217c9e77dbcb7621f992f46c63
https://github.com/mfornos/humanize/blob/59fc103045de9d217c9e77dbcb7621f992f46c63/humanize-slim/src/main/java/humanize/text/ExtendedMessageFormat.java#L475-L479
37,372
mfornos/humanize
humanize-taglib/src/main/java/org/apache/taglibs/standard/tag/common/fmt/HumanizeMessageSupport.java
HumanizeMessageSupport.doEndTag
public int doEndTag() throws JspException { String key = null; LocalizationContext locCtxt = null; // determine the message key by... if (keySpecified) { // ... reading 'key' attribute key = keyAttrValue; } else { // ... r...
java
public int doEndTag() throws JspException { String key = null; LocalizationContext locCtxt = null; // determine the message key by... if (keySpecified) { // ... reading 'key' attribute key = keyAttrValue; } else { // ... r...
[ "public", "int", "doEndTag", "(", ")", "throws", "JspException", "{", "String", "key", "=", "null", ";", "LocalizationContext", "locCtxt", "=", "null", ";", "// determine the message key by...", "if", "(", "keySpecified", ")", "{", "// ... reading 'key' attribute", ...
Tag attributes known at translation time
[ "Tag", "attributes", "known", "at", "translation", "time" ]
59fc103045de9d217c9e77dbcb7621f992f46c63
https://github.com/mfornos/humanize/blob/59fc103045de9d217c9e77dbcb7621f992f46c63/humanize-taglib/src/main/java/org/apache/taglibs/standard/tag/common/fmt/HumanizeMessageSupport.java#L102-L213
37,373
mfornos/humanize
humanize-emoji/src/main/java/humanize/emoji/Emoji.java
Emoji.codePointsToString
public static String codePointsToString(String... points) { StringBuilder ret = new StringBuilder(); for (String hexPoint : points) { ret.append(codePointToString(hexPoint)); } return ret.toString(); }
java
public static String codePointsToString(String... points) { StringBuilder ret = new StringBuilder(); for (String hexPoint : points) { ret.append(codePointToString(hexPoint)); } return ret.toString(); }
[ "public", "static", "String", "codePointsToString", "(", "String", "...", "points", ")", "{", "StringBuilder", "ret", "=", "new", "StringBuilder", "(", ")", ";", "for", "(", "String", "hexPoint", ":", "points", ")", "{", "ret", ".", "append", "(", "codePoi...
Transforms a list of Unicode code points, as hex strings, into a proper encoded string. @param points The list of Unicode code point as a hex strings @return the concatenation of the proper encoded string for the given points @see Emoji#codePointToString(String)
[ "Transforms", "a", "list", "of", "Unicode", "code", "points", "as", "hex", "strings", "into", "a", "proper", "encoded", "string", "." ]
59fc103045de9d217c9e77dbcb7621f992f46c63
https://github.com/mfornos/humanize/blob/59fc103045de9d217c9e77dbcb7621f992f46c63/humanize-emoji/src/main/java/humanize/emoji/Emoji.java#L59-L69
37,374
mfornos/humanize
humanize-emoji/src/main/java/humanize/emoji/Emoji.java
Emoji.codePointToString
public static String codePointToString(String point) { String ret; if (Strings.isNullOrEmpty(point)) { return point; } int unicodeScalar = Integer.parseInt(point, 16); if (Character.isSupplementaryCodePoint(unicodeScalar)) { ret = St...
java
public static String codePointToString(String point) { String ret; if (Strings.isNullOrEmpty(point)) { return point; } int unicodeScalar = Integer.parseInt(point, 16); if (Character.isSupplementaryCodePoint(unicodeScalar)) { ret = St...
[ "public", "static", "String", "codePointToString", "(", "String", "point", ")", "{", "String", "ret", ";", "if", "(", "Strings", ".", "isNullOrEmpty", "(", "point", ")", ")", "{", "return", "point", ";", "}", "int", "unicodeScalar", "=", "Integer", ".", ...
Transforms an Unicode code point, given as a hex string, into a proper encoded string. Supplementary code points are encoded in UTF-16 as required by Java. @param point The Unicode code point as a hex string @return the proper encoded string reification of a given point
[ "Transforms", "an", "Unicode", "code", "point", "given", "as", "a", "hex", "string", "into", "a", "proper", "encoded", "string", ".", "Supplementary", "code", "points", "are", "encoded", "in", "UTF", "-", "16", "as", "required", "by", "Java", "." ]
59fc103045de9d217c9e77dbcb7621f992f46c63
https://github.com/mfornos/humanize/blob/59fc103045de9d217c9e77dbcb7621f992f46c63/humanize-emoji/src/main/java/humanize/emoji/Emoji.java#L80-L100
37,375
mfornos/humanize
humanize-emoji/src/main/java/humanize/emoji/Emoji.java
Emoji.findByVendorCodePoint
public static EmojiChar findByVendorCodePoint(Vendor vendor, String point) { Emoji emoji = Emoji.getInstance(); return emoji._findByVendorCodePoint(vendor, point); }
java
public static EmojiChar findByVendorCodePoint(Vendor vendor, String point) { Emoji emoji = Emoji.getInstance(); return emoji._findByVendorCodePoint(vendor, point); }
[ "public", "static", "EmojiChar", "findByVendorCodePoint", "(", "Vendor", "vendor", ",", "String", "point", ")", "{", "Emoji", "emoji", "=", "Emoji", ".", "getInstance", "(", ")", ";", "return", "emoji", ".", "_findByVendorCodePoint", "(", "vendor", ",", "point...
Finds an emoji character by vendor code point. @param vendor the vendor @param point the raw character for the code point in the vendor space @return the corresponding emoji character or null if not found
[ "Finds", "an", "emoji", "character", "by", "vendor", "code", "point", "." ]
59fc103045de9d217c9e77dbcb7621f992f46c63
https://github.com/mfornos/humanize/blob/59fc103045de9d217c9e77dbcb7621f992f46c63/humanize-emoji/src/main/java/humanize/emoji/Emoji.java#L147-L151
37,376
mfornos/humanize
humanize-slim/src/main/java/humanize/spi/MessageFormat.java
MessageFormat.render
public StringBuffer render(StringBuffer buffer, Object... arguments) { return format(arguments, buffer, null); }
java
public StringBuffer render(StringBuffer buffer, Object... arguments) { return format(arguments, buffer, null); }
[ "public", "StringBuffer", "render", "(", "StringBuffer", "buffer", ",", "Object", "...", "arguments", ")", "{", "return", "format", "(", "arguments", ",", "buffer", ",", "null", ")", ";", "}" ]
Formats the current pattern with the given arguments. @param buffer The StringBuffer @param arguments The formatting arguments @return StringBuffer with the formatted message
[ "Formats", "the", "current", "pattern", "with", "the", "given", "arguments", "." ]
59fc103045de9d217c9e77dbcb7621f992f46c63
https://github.com/mfornos/humanize/blob/59fc103045de9d217c9e77dbcb7621f992f46c63/humanize-slim/src/main/java/humanize/spi/MessageFormat.java#L108-L113
37,377
mfornos/humanize
humanize-emoji/src/main/java/humanize/emoji/EmojiChar.java
EmojiChar.mapTo
public String mapTo(Vendor vendor) { String[] m = getMapping(vendor); return m == null ? null : m[VENDOR_MAP_RAW]; }
java
public String mapTo(Vendor vendor) { String[] m = getMapping(vendor); return m == null ? null : m[VENDOR_MAP_RAW]; }
[ "public", "String", "mapTo", "(", "Vendor", "vendor", ")", "{", "String", "[", "]", "m", "=", "getMapping", "(", "vendor", ")", ";", "return", "m", "==", "null", "?", "null", ":", "m", "[", "VENDOR_MAP_RAW", "]", ";", "}" ]
Gets the raw character value of this emoji character for a given vendor. @param vendor the vendor @return the raw character for the vendor specified, null if not found
[ "Gets", "the", "raw", "character", "value", "of", "this", "emoji", "character", "for", "a", "given", "vendor", "." ]
59fc103045de9d217c9e77dbcb7621f992f46c63
https://github.com/mfornos/humanize/blob/59fc103045de9d217c9e77dbcb7621f992f46c63/humanize-emoji/src/main/java/humanize/emoji/EmojiChar.java#L229-L233
37,378
mfornos/humanize
humanize-joda/src/main/java/humanize/time/joda/FormatTables.java
FormatTables.get
public static Map<String, Format> get(String name) { return instance().methods.get(name); }
java
public static Map<String, Format> get(String name) { return instance().methods.get(name); }
[ "public", "static", "Map", "<", "String", ",", "Format", ">", "get", "(", "String", "name", ")", "{", "return", "instance", "(", ")", ".", "methods", ".", "get", "(", "name", ")", ";", "}" ]
Retrieves a variants map for a given format name. @param name The format name @return a mutable map of variants
[ "Retrieves", "a", "variants", "map", "for", "a", "given", "format", "name", "." ]
59fc103045de9d217c9e77dbcb7621f992f46c63
https://github.com/mfornos/humanize/blob/59fc103045de9d217c9e77dbcb7621f992f46c63/humanize-joda/src/main/java/humanize/time/joda/FormatTables.java#L29-L32
37,379
mfornos/humanize
humanize-slim/src/main/java/humanize/time/PrettyTimeFormat.java
PrettyTimeFormat.format
public String format(Date ref, Date then) { return prettyTime.format(DurationHelper.calculateDuration(ref, then, prettyTime.getUnits())); }
java
public String format(Date ref, Date then) { return prettyTime.format(DurationHelper.calculateDuration(ref, then, prettyTime.getUnits())); }
[ "public", "String", "format", "(", "Date", "ref", ",", "Date", "then", ")", "{", "return", "prettyTime", ".", "format", "(", "DurationHelper", ".", "calculateDuration", "(", "ref", ",", "then", ",", "prettyTime", ".", "getUnits", "(", ")", ")", ")", ";",...
Convenience format method. @param ref The date of reference. @param then The future date. @return a relative format date as text representation
[ "Convenience", "format", "method", "." ]
59fc103045de9d217c9e77dbcb7621f992f46c63
https://github.com/mfornos/humanize/blob/59fc103045de9d217c9e77dbcb7621f992f46c63/humanize-slim/src/main/java/humanize/time/PrettyTimeFormat.java#L87-L90
37,380
mfornos/humanize
humanize-slim/src/main/java/humanize/time/PrettyTimeFormat.java
PrettyTimeFormat.format
public String format(Date ref, Date then, long precision) { List<Duration> durations = DurationHelper.calculatePreciseDuration(ref, then, prettyTime.getUnits()); List<Duration> retained = retainPrecision(durations, precision); return retained.isEmpty() ? "" : prettyTime.format(retained); ...
java
public String format(Date ref, Date then, long precision) { List<Duration> durations = DurationHelper.calculatePreciseDuration(ref, then, prettyTime.getUnits()); List<Duration> retained = retainPrecision(durations, precision); return retained.isEmpty() ? "" : prettyTime.format(retained); ...
[ "public", "String", "format", "(", "Date", "ref", ",", "Date", "then", ",", "long", "precision", ")", "{", "List", "<", "Duration", ">", "durations", "=", "DurationHelper", ".", "calculatePreciseDuration", "(", "ref", ",", "then", ",", "prettyTime", ".", "...
Convenience format method for precise durations. @param ref The date of reference. @param then The future date. @param precision The precision to retain in milliseconds. @return a relative format date as text representation or an empty string if no durations are retained
[ "Convenience", "format", "method", "for", "precise", "durations", "." ]
59fc103045de9d217c9e77dbcb7621f992f46c63
https://github.com/mfornos/humanize/blob/59fc103045de9d217c9e77dbcb7621f992f46c63/humanize-slim/src/main/java/humanize/time/PrettyTimeFormat.java#L104-L109
37,381
mfornos/humanize
humanize-icu/src/main/java/humanize/ICUHumanize.java
ICUHumanize.transliterate
public static String transliterate(final String text, final String id) { Transliterator transliterator = Transliterator.getInstance(id); return transliterator.transform(text); }
java
public static String transliterate(final String text, final String id) { Transliterator transliterator = Transliterator.getInstance(id); return transliterator.transform(text); }
[ "public", "static", "String", "transliterate", "(", "final", "String", "text", ",", "final", "String", "id", ")", "{", "Transliterator", "transliterator", "=", "Transliterator", ".", "getInstance", "(", "id", ")", ";", "return", "transliterator", ".", "transform...
Converts the characters of the given text to the specified script. <p> The simplest identifier is a 'basic ID'. </p> <pre> basicID := (&lt;source&gt; "-")? &lt;target&gt; ("/" &lt;variant&gt;)? </pre> <p> A basic ID typically names a source and target. In "Katakana-Latin", "Katakana" is the source and "Latin" is the...
[ "Converts", "the", "characters", "of", "the", "given", "text", "to", "the", "specified", "script", "." ]
59fc103045de9d217c9e77dbcb7621f992f46c63
https://github.com/mfornos/humanize/blob/59fc103045de9d217c9e77dbcb7621f992f46c63/humanize-icu/src/main/java/humanize/ICUHumanize.java#L1740-L1744
37,382
mfornos/humanize
humanize-joda/src/main/java/humanize/time/joda/JodaTimeFormatProvider.java
JodaTimeFormatProvider.factory
public static FormatFactory factory() { return new FormatFactory() { @Override public Format getFormat(String name, String args, Locale locale) { Map<String, Format> mt = FormatTables.get(name); Preconditions.checkArgument(mt != nu...
java
public static FormatFactory factory() { return new FormatFactory() { @Override public Format getFormat(String name, String args, Locale locale) { Map<String, Format> mt = FormatTables.get(name); Preconditions.checkArgument(mt != nu...
[ "public", "static", "FormatFactory", "factory", "(", ")", "{", "return", "new", "FormatFactory", "(", ")", "{", "@", "Override", "public", "Format", "getFormat", "(", "String", "name", ",", "String", "args", ",", "Locale", "locale", ")", "{", "Map", "<", ...
Creates a factory for the specified format. @return FormatFactory instance
[ "Creates", "a", "factory", "for", "the", "specified", "format", "." ]
59fc103045de9d217c9e77dbcb7621f992f46c63
https://github.com/mfornos/humanize/blob/59fc103045de9d217c9e77dbcb7621f992f46c63/humanize-joda/src/main/java/humanize/time/joda/JodaTimeFormatProvider.java#L34-L53
37,383
mfornos/humanize
humanize-slim/src/main/java/humanize/Humanize.java
Humanize.naturalDay
public static String naturalDay(int style, Date then) { Date today = new Date(); long delta = then.getTime() - today.getTime(); long days = delta / ND_FACTOR; if (days == 0) return context.get().getMessage("today"); else if (days == 1) return context....
java
public static String naturalDay(int style, Date then) { Date today = new Date(); long delta = then.getTime() - today.getTime(); long days = delta / ND_FACTOR; if (days == 0) return context.get().getMessage("today"); else if (days == 1) return context....
[ "public", "static", "String", "naturalDay", "(", "int", "style", ",", "Date", "then", ")", "{", "Date", "today", "=", "new", "Date", "(", ")", ";", "long", "delta", "=", "then", ".", "getTime", "(", ")", "-", "today", ".", "getTime", "(", ")", ";",...
For dates that are the current day or within one day, return 'today', 'tomorrow' or 'yesterday', as appropriate. Otherwise, returns a string formatted according to a locale sensitive DateFormat. @param style The style of the Date @param then The date (GMT) @return String with 'today', 'tomorrow' or 'yesterday' compare...
[ "For", "dates", "that", "are", "the", "current", "day", "or", "within", "one", "day", "return", "today", "tomorrow", "or", "yesterday", "as", "appropriate", ".", "Otherwise", "returns", "a", "string", "formatted", "according", "to", "a", "locale", "sensitive",...
59fc103045de9d217c9e77dbcb7621f992f46c63
https://github.com/mfornos/humanize/blob/59fc103045de9d217c9e77dbcb7621f992f46c63/humanize-slim/src/main/java/humanize/Humanize.java#L1492-L1506
37,384
mfornos/humanize
humanize-slim/src/main/java/humanize/Humanize.java
Humanize.naturalTime
public static String naturalTime(Date reference, Date duration) { return context.get().formatRelativeDate(reference, duration); }
java
public static String naturalTime(Date reference, Date duration) { return context.get().formatRelativeDate(reference, duration); }
[ "public", "static", "String", "naturalTime", "(", "Date", "reference", ",", "Date", "duration", ")", "{", "return", "context", ".", "get", "(", ")", ".", "formatRelativeDate", "(", "reference", ",", "duration", ")", ";", "}" ]
Computes both past and future relative dates. <p> E.g. 'one day ago', 'one day from now', '10 years ago', '3 minutes from now', 'right now' and so on. @param reference The reference @param duration The duration @return String representing the relative date
[ "Computes", "both", "past", "and", "future", "relative", "dates", "." ]
59fc103045de9d217c9e77dbcb7621f992f46c63
https://github.com/mfornos/humanize/blob/59fc103045de9d217c9e77dbcb7621f992f46c63/humanize-slim/src/main/java/humanize/Humanize.java#L1558-L1561
37,385
mfornos/humanize
humanize-slim/src/main/java/humanize/Humanize.java
Humanize.ordinal
public static String ordinal(Number value) { int v = value.intValue(); int vc = v % 100; if (vc > 10 && vc < 14) return String.format(ORDINAL_FMT, v, context.get().ordinalSuffix(0)); return String.format(ORDINAL_FMT, v, context.get().ordinalSuffix(v % 10)); }
java
public static String ordinal(Number value) { int v = value.intValue(); int vc = v % 100; if (vc > 10 && vc < 14) return String.format(ORDINAL_FMT, v, context.get().ordinalSuffix(0)); return String.format(ORDINAL_FMT, v, context.get().ordinalSuffix(v % 10)); }
[ "public", "static", "String", "ordinal", "(", "Number", "value", ")", "{", "int", "v", "=", "value", ".", "intValue", "(", ")", ";", "int", "vc", "=", "v", "%", "100", ";", "if", "(", "vc", ">", "10", "&&", "vc", "<", "14", ")", "return", "Stri...
Converts a number to its ordinal as a string. <p> E.g. 1 becomes '1st', 2 becomes '2nd', 3 becomes '3rd', etc. @param value The number to convert @return String representing the number as ordinal
[ "Converts", "a", "number", "to", "its", "ordinal", "as", "a", "string", "." ]
59fc103045de9d217c9e77dbcb7621f992f46c63
https://github.com/mfornos/humanize/blob/59fc103045de9d217c9e77dbcb7621f992f46c63/humanize-slim/src/main/java/humanize/Humanize.java#L1744-L1753
37,386
mfornos/humanize
humanize-slim/src/main/java/humanize/Humanize.java
Humanize.times
public static String times(final Number num) { java.text.MessageFormat f = new java.text.MessageFormat( context.get().getBundle().getString("times.choice"), currentLocale() ); return f.format(new Object[] { Math.abs(num.intValue()) }); }
java
public static String times(final Number num) { java.text.MessageFormat f = new java.text.MessageFormat( context.get().getBundle().getString("times.choice"), currentLocale() ); return f.format(new Object[] { Math.abs(num.intValue()) }); }
[ "public", "static", "String", "times", "(", "final", "Number", "num", ")", "{", "java", ".", "text", ".", "MessageFormat", "f", "=", "new", "java", ".", "text", ".", "MessageFormat", "(", "context", ".", "get", "(", ")", ".", "getBundle", "(", ")", "...
Interprets numbers as occurrences. @param num The number of occurrences @return textual representation of the number as occurrences
[ "Interprets", "numbers", "as", "occurrences", "." ]
59fc103045de9d217c9e77dbcb7621f992f46c63
https://github.com/mfornos/humanize/blob/59fc103045de9d217c9e77dbcb7621f992f46c63/humanize-slim/src/main/java/humanize/Humanize.java#L2731-L2738
37,387
jMotif/SAX
src/main/java/net/seninp/jmotif/sax/alphabet/NormalAlphabet.java
NormalAlphabet.getCentralCuts
public double[] getCentralCuts(Integer size) throws SAXException { switch (size) { case 2: return center_case2; case 3: return center_case3; case 4: return center_case4; case 5: return center_case5; case 6: return center_case6; case 7: return ...
java
public double[] getCentralCuts(Integer size) throws SAXException { switch (size) { case 2: return center_case2; case 3: return center_case3; case 4: return center_case4; case 5: return center_case5; case 6: return center_case6; case 7: return ...
[ "public", "double", "[", "]", "getCentralCuts", "(", "Integer", "size", ")", "throws", "SAXException", "{", "switch", "(", "size", ")", "{", "case", "2", ":", "return", "center_case2", ";", "case", "3", ":", "return", "center_case3", ";", "case", "4", ":...
Produces central cut intervals lines for the normal distribution. @param size the Alphabet size [2 - 20]. @return an array of central lines for the specified alphabet size. @throws SAXException if error occurs.
[ "Produces", "central", "cut", "intervals", "lines", "for", "the", "normal", "distribution", "." ]
39ee07a69facaa330def5130b8790aeda85f1061
https://github.com/jMotif/SAX/blob/39ee07a69facaa330def5130b8790aeda85f1061/src/main/java/net/seninp/jmotif/sax/alphabet/NormalAlphabet.java#L728-L771
37,388
jMotif/SAX
src/main/java/net/seninp/jmotif/sax/datastructure/DoublyLinkedSortedList.java
DoublyLinkedSortedList.addElement
public void addElement(T data) { Node<T> newNode = new Node<T>(data); if (isEmpty()) { // // if it is the very first node in the list first = newNode; size = 1; } else { // if this node is greater than the list's head // if (this.comparator.compare(newNode.da...
java
public void addElement(T data) { Node<T> newNode = new Node<T>(data); if (isEmpty()) { // // if it is the very first node in the list first = newNode; size = 1; } else { // if this node is greater than the list's head // if (this.comparator.compare(newNode.da...
[ "public", "void", "addElement", "(", "T", "data", ")", "{", "Node", "<", "T", ">", "newNode", "=", "new", "Node", "<", "T", ">", "(", "data", ")", ";", "if", "(", "isEmpty", "(", ")", ")", "{", "//", "// if it is the very first node in the list", "firs...
Adds a data instance. @param data the data to put in the list.
[ "Adds", "a", "data", "instance", "." ]
39ee07a69facaa330def5130b8790aeda85f1061
https://github.com/jMotif/SAX/blob/39ee07a69facaa330def5130b8790aeda85f1061/src/main/java/net/seninp/jmotif/sax/datastructure/DoublyLinkedSortedList.java#L102-L160
37,389
jMotif/SAX
src/main/java/net/seninp/util/SortedArrayList.java
SortedArrayList.insertSorted
public void insertSorted(T value) { add(value); @SuppressWarnings("unchecked") Comparable<T> cmp = (Comparable<T>) value; for (int i = size() - 1; i > 0 && cmp.compareTo(get(i - 1)) < 0; i--) { Collections.swap(this, i, i - 1); } }
java
public void insertSorted(T value) { add(value); @SuppressWarnings("unchecked") Comparable<T> cmp = (Comparable<T>) value; for (int i = size() - 1; i > 0 && cmp.compareTo(get(i - 1)) < 0; i--) { Collections.swap(this, i, i - 1); } }
[ "public", "void", "insertSorted", "(", "T", "value", ")", "{", "add", "(", "value", ")", ";", "@", "SuppressWarnings", "(", "\"unchecked\"", ")", "Comparable", "<", "T", ">", "cmp", "=", "(", "Comparable", "<", "T", ">", ")", "value", ";", "for", "("...
Inserts an element and sorts the array. @param value the value to insert.
[ "Inserts", "an", "element", "and", "sorts", "the", "array", "." ]
39ee07a69facaa330def5130b8790aeda85f1061
https://github.com/jMotif/SAX/blob/39ee07a69facaa330def5130b8790aeda85f1061/src/main/java/net/seninp/util/SortedArrayList.java#L27-L34
37,390
jMotif/SAX
src/main/java/net/seninp/jmotif/distance/EuclideanDistance.java
EuclideanDistance.distance2
public double distance2(double[] point1, double[] point2) throws Exception { if (point1.length == point2.length) { Double sum = 0D; for (int i = 0; i < point1.length; i++) { double tmp = point2[i] - point1[i]; sum = sum + tmp * tmp; } return sum; } else { ...
java
public double distance2(double[] point1, double[] point2) throws Exception { if (point1.length == point2.length) { Double sum = 0D; for (int i = 0; i < point1.length; i++) { double tmp = point2[i] - point1[i]; sum = sum + tmp * tmp; } return sum; } else { ...
[ "public", "double", "distance2", "(", "double", "[", "]", "point1", ",", "double", "[", "]", "point2", ")", "throws", "Exception", "{", "if", "(", "point1", ".", "length", "==", "point2", ".", "length", ")", "{", "Double", "sum", "=", "0D", ";", "for...
Calculates the square of the Euclidean distance between two multidimensional points represented by the rational vectors. @param point1 The first point. @param point2 The second point. @return The Euclidean distance. @throws Exception In the case of error.
[ "Calculates", "the", "square", "of", "the", "Euclidean", "distance", "between", "two", "multidimensional", "points", "represented", "by", "the", "rational", "vectors", "." ]
39ee07a69facaa330def5130b8790aeda85f1061
https://github.com/jMotif/SAX/blob/39ee07a69facaa330def5130b8790aeda85f1061/src/main/java/net/seninp/jmotif/distance/EuclideanDistance.java#L75-L87
37,391
jMotif/SAX
src/main/java/net/seninp/jmotif/distance/EuclideanDistance.java
EuclideanDistance.distance2
public long distance2(int[] point1, int[] point2) throws Exception { if (point1.length == point2.length) { long sum = 0; for (int i = 0; i < point1.length; i++) { sum = sum + (point2[i] - point1[i]) * (point2[i] - point1[i]); } return sum; } else { throw new Ex...
java
public long distance2(int[] point1, int[] point2) throws Exception { if (point1.length == point2.length) { long sum = 0; for (int i = 0; i < point1.length; i++) { sum = sum + (point2[i] - point1[i]) * (point2[i] - point1[i]); } return sum; } else { throw new Ex...
[ "public", "long", "distance2", "(", "int", "[", "]", "point1", ",", "int", "[", "]", "point2", ")", "throws", "Exception", "{", "if", "(", "point1", ".", "length", "==", "point2", ".", "length", ")", "{", "long", "sum", "=", "0", ";", "for", "(", ...
Calculates the square of the Euclidean distance between two multidimensional points represented by integer vectors. @param point1 The first point. @param point2 The second point. @return The Euclidean distance. @throws Exception In the case of error.
[ "Calculates", "the", "square", "of", "the", "Euclidean", "distance", "between", "two", "multidimensional", "points", "represented", "by", "integer", "vectors", "." ]
39ee07a69facaa330def5130b8790aeda85f1061
https://github.com/jMotif/SAX/blob/39ee07a69facaa330def5130b8790aeda85f1061/src/main/java/net/seninp/jmotif/distance/EuclideanDistance.java#L98-L109
37,392
jMotif/SAX
src/main/java/net/seninp/jmotif/distance/EuclideanDistance.java
EuclideanDistance.seriesDistance
public double seriesDistance(double[][] series1, double[][] series2) throws Exception { if (series1.length == series2.length) { Double res = 0D; for (int i = 0; i < series1.length; i++) { res = res + distance2(series1[i], series2[i]); } return Math.sqrt(res); } else {...
java
public double seriesDistance(double[][] series1, double[][] series2) throws Exception { if (series1.length == series2.length) { Double res = 0D; for (int i = 0; i < series1.length; i++) { res = res + distance2(series1[i], series2[i]); } return Math.sqrt(res); } else {...
[ "public", "double", "seriesDistance", "(", "double", "[", "]", "[", "]", "series1", ",", "double", "[", "]", "[", "]", "series2", ")", "throws", "Exception", "{", "if", "(", "series1", ".", "length", "==", "series2", ".", "length", ")", "{", "Double", ...
Calculates Euclidean distance between two multi-dimensional time-series of equal length. @param series1 The first series. @param series2 The second series. @return The eclidean distance. @throws Exception if error occures.
[ "Calculates", "Euclidean", "distance", "between", "two", "multi", "-", "dimensional", "time", "-", "series", "of", "equal", "length", "." ]
39ee07a69facaa330def5130b8790aeda85f1061
https://github.com/jMotif/SAX/blob/39ee07a69facaa330def5130b8790aeda85f1061/src/main/java/net/seninp/jmotif/distance/EuclideanDistance.java#L119-L130
37,393
jMotif/SAX
src/main/java/net/seninp/jmotif/distance/EuclideanDistance.java
EuclideanDistance.normalizedDistance
public double normalizedDistance(double[] point1, double[] point2) throws Exception { return Math.sqrt(distance2(point1, point2)) / point1.length; }
java
public double normalizedDistance(double[] point1, double[] point2) throws Exception { return Math.sqrt(distance2(point1, point2)) / point1.length; }
[ "public", "double", "normalizedDistance", "(", "double", "[", "]", "point1", ",", "double", "[", "]", "point2", ")", "throws", "Exception", "{", "return", "Math", ".", "sqrt", "(", "distance2", "(", "point1", ",", "point2", ")", ")", "/", "point1", ".", ...
Calculates the Normalized Euclidean distance between two points. @param point1 The first point. @param point2 The second point. @return The Euclidean distance. @throws Exception In the case of error.
[ "Calculates", "the", "Normalized", "Euclidean", "distance", "between", "two", "points", "." ]
39ee07a69facaa330def5130b8790aeda85f1061
https://github.com/jMotif/SAX/blob/39ee07a69facaa330def5130b8790aeda85f1061/src/main/java/net/seninp/jmotif/distance/EuclideanDistance.java#L140-L142
37,394
jMotif/SAX
src/main/java/net/seninp/jmotif/distance/EuclideanDistance.java
EuclideanDistance.earlyAbandonedDistance
public Double earlyAbandonedDistance(double[] series1, double[] series2, double cutoff) throws Exception { if (series1.length == series2.length) { double cutOff2 = cutoff; if (Double.MAX_VALUE != cutoff) { cutOff2 = cutoff * cutoff; } Double res = 0D; for (int i =...
java
public Double earlyAbandonedDistance(double[] series1, double[] series2, double cutoff) throws Exception { if (series1.length == series2.length) { double cutOff2 = cutoff; if (Double.MAX_VALUE != cutoff) { cutOff2 = cutoff * cutoff; } Double res = 0D; for (int i =...
[ "public", "Double", "earlyAbandonedDistance", "(", "double", "[", "]", "series1", ",", "double", "[", "]", "series2", ",", "double", "cutoff", ")", "throws", "Exception", "{", "if", "(", "series1", ".", "length", "==", "series2", ".", "length", ")", "{", ...
Implements Euclidean distance with early abandoning. @param series1 the first series. @param series2 the second series. @param cutoff the cut-off threshold @return the distance if it is less than cutoff or Double.NAN if it is above. @throws Exception if error occurs.
[ "Implements", "Euclidean", "distance", "with", "early", "abandoning", "." ]
39ee07a69facaa330def5130b8790aeda85f1061
https://github.com/jMotif/SAX/blob/39ee07a69facaa330def5130b8790aeda85f1061/src/main/java/net/seninp/jmotif/distance/EuclideanDistance.java#L154-L173
37,395
jMotif/SAX
src/main/java/net/seninp/jmotif/sax/datastructure/FrequencyTableEntry.java
FrequencyTableEntry.getStr
public char[] getStr() { char[] res = new char[this.payload.length]; for (int i = 0; i < res.length; i++) { res[i] = this.payload[i]; } return res; }
java
public char[] getStr() { char[] res = new char[this.payload.length]; for (int i = 0; i < res.length; i++) { res[i] = this.payload[i]; } return res; }
[ "public", "char", "[", "]", "getStr", "(", ")", "{", "char", "[", "]", "res", "=", "new", "char", "[", "this", ".", "payload", ".", "length", "]", ";", "for", "(", "int", "i", "=", "0", ";", "i", "<", "res", ".", "length", ";", "i", "++", "...
Get a string payload. @return a string payload.
[ "Get", "a", "string", "payload", "." ]
39ee07a69facaa330def5130b8790aeda85f1061
https://github.com/jMotif/SAX/blob/39ee07a69facaa330def5130b8790aeda85f1061/src/main/java/net/seninp/jmotif/sax/datastructure/FrequencyTableEntry.java#L43-L49
37,396
jMotif/SAX
src/main/java/net/seninp/jmotif/sax/datastructure/FrequencyTableEntry.java
FrequencyTableEntry.isTrivial
public boolean isTrivial(Integer complexity) { int len = payload.length; if ((null == complexity) || (len < 2)) { return true; } else if ((complexity.intValue() > 0) && (len > 2)) { Set<Character> seen = new TreeSet<Character>(); for (int i = 0; i < len; i++) { Character c = Ch...
java
public boolean isTrivial(Integer complexity) { int len = payload.length; if ((null == complexity) || (len < 2)) { return true; } else if ((complexity.intValue() > 0) && (len > 2)) { Set<Character> seen = new TreeSet<Character>(); for (int i = 0; i < len; i++) { Character c = Ch...
[ "public", "boolean", "isTrivial", "(", "Integer", "complexity", ")", "{", "int", "len", "=", "payload", ".", "length", ";", "if", "(", "(", "null", "==", "complexity", ")", "||", "(", "len", "<", "2", ")", ")", "{", "return", "true", ";", "}", "els...
Check the complexity of the string. @param complexity If 1 - single letter used, 2 - two or more letters, 3 - 3 or more etc.. @return Returns true if complexity conditions are met.
[ "Check", "the", "complexity", "of", "the", "string", "." ]
39ee07a69facaa330def5130b8790aeda85f1061
https://github.com/jMotif/SAX/blob/39ee07a69facaa330def5130b8790aeda85f1061/src/main/java/net/seninp/jmotif/sax/datastructure/FrequencyTableEntry.java#L103-L124
37,397
jMotif/SAX
src/main/java/net/seninp/jmotif/sax/motif/EMMAImplementation.java
EMMAImplementation.ADM
private static MotifRecord ADM(double[] series, ArrayList<Integer> neighborhood, int motifSize, double range, double znormThreshold) throws Exception { MotifRecord res = new MotifRecord(-1, new ArrayList<Integer>()); ArrayList<BitSet> admDistances = new ArrayList<BitSet>(neighborhood.size()); for (i...
java
private static MotifRecord ADM(double[] series, ArrayList<Integer> neighborhood, int motifSize, double range, double znormThreshold) throws Exception { MotifRecord res = new MotifRecord(-1, new ArrayList<Integer>()); ArrayList<BitSet> admDistances = new ArrayList<BitSet>(neighborhood.size()); for (i...
[ "private", "static", "MotifRecord", "ADM", "(", "double", "[", "]", "series", ",", "ArrayList", "<", "Integer", ">", "neighborhood", ",", "int", "motifSize", ",", "double", "range", ",", "double", "znormThreshold", ")", "throws", "Exception", "{", "MotifRecord...
This is not a real ADM implementation. @param series the input timeseries. @param neighborhood the neighborhood coordinates. @param motifSize the motif size. @param range the range value. @param znormThreshold z-normalization threshold. @return the best motif record found within the neighborhood. @throws Exception if ...
[ "This", "is", "not", "a", "real", "ADM", "implementation", "." ]
39ee07a69facaa330def5130b8790aeda85f1061
https://github.com/jMotif/SAX/blob/39ee07a69facaa330def5130b8790aeda85f1061/src/main/java/net/seninp/jmotif/sax/motif/EMMAImplementation.java#L178-L225
37,398
jMotif/SAX
src/main/java/net/seninp/jmotif/sax/motif/EMMAImplementation.java
EMMAImplementation.isNonTrivialMatch
private static boolean isNonTrivialMatch(double[] series, int i, int j, Integer motifSize, double range, double znormThreshold) { if (Math.abs(i - j) < motifSize) { return false; } Double dd = eaDistance(series, i, j, motifSize, range, znormThreshold); if (Double.isFinite(dd)) { ret...
java
private static boolean isNonTrivialMatch(double[] series, int i, int j, Integer motifSize, double range, double znormThreshold) { if (Math.abs(i - j) < motifSize) { return false; } Double dd = eaDistance(series, i, j, motifSize, range, znormThreshold); if (Double.isFinite(dd)) { ret...
[ "private", "static", "boolean", "isNonTrivialMatch", "(", "double", "[", "]", "series", ",", "int", "i", ",", "int", "j", ",", "Integer", "motifSize", ",", "double", "range", ",", "double", "znormThreshold", ")", "{", "if", "(", "Math", ".", "abs", "(", ...
Checks for the overlap and the range-configured distance. @param series the series to use. @param i the position of subseries a. @param j the position of subseries b. @param motifSize the motif length. @param range the range value. @param znormThreshold z-normalization threshold. @return true if all is cool, false if ...
[ "Checks", "for", "the", "overlap", "and", "the", "range", "-", "configured", "distance", "." ]
39ee07a69facaa330def5130b8790aeda85f1061
https://github.com/jMotif/SAX/blob/39ee07a69facaa330def5130b8790aeda85f1061/src/main/java/net/seninp/jmotif/sax/motif/EMMAImplementation.java#L238-L252
37,399
jMotif/SAX
src/main/java/net/seninp/jmotif/sax/motif/EMMAImplementation.java
EMMAImplementation.eaDistance
private static Double eaDistance(double[] series, int a, int b, Integer motifSize, double range, double znormThreshold) { distCounter++; double cutOff2 = range * range; double[] seriesA = tp.znorm(tp.subseriesByCopy(series, a, a + motifSize), znormThreshold); double[] seriesB = tp.znorm(tp.subs...
java
private static Double eaDistance(double[] series, int a, int b, Integer motifSize, double range, double znormThreshold) { distCounter++; double cutOff2 = range * range; double[] seriesA = tp.znorm(tp.subseriesByCopy(series, a, a + motifSize), znormThreshold); double[] seriesB = tp.znorm(tp.subs...
[ "private", "static", "Double", "eaDistance", "(", "double", "[", "]", "series", ",", "int", "a", ",", "int", "b", ",", "Integer", "motifSize", ",", "double", "range", ",", "double", "znormThreshold", ")", "{", "distCounter", "++", ";", "double", "cutOff2",...
Early abandoning distance configure by range. @param series the series to use. @param a the position of subseries a. @param b the position of subseries b. @param motifSize the motif length. @param range the range value. @param znormThreshold z-normalization threshold. @return a distance value or NAN if above the thres...
[ "Early", "abandoning", "distance", "configure", "by", "range", "." ]
39ee07a69facaa330def5130b8790aeda85f1061
https://github.com/jMotif/SAX/blob/39ee07a69facaa330def5130b8790aeda85f1061/src/main/java/net/seninp/jmotif/sax/motif/EMMAImplementation.java#L265-L285