idx int64 0 41.2k | question stringlengths 83 4.15k | target stringlengths 5 715 |
|---|---|---|
9,400 | public FragmentBuilder getFragmentBuilder ( ) { FragmentBuilder builder = builders . get ( ) ; if ( builder == null ) { if ( log . isLoggable ( Level . FINEST ) ) { log . finest ( "Creating new FragmentBuilder" ) ; } builder = new FragmentBuilder ( ) ; builders . set ( builder ) ; int currentCount = threadCounter . inc... | This method returns the appropriate fragment builder for the current thread . |
9,401 | public void setFragmentBuilder ( FragmentBuilder builder ) { FragmentBuilder currentBuilder = builders . get ( ) ; if ( currentBuilder == null && builder != null ) { int currentCount = threadCounter . incrementAndGet ( ) ; int builderCount = builder . incrementThreadCount ( ) ; if ( log . isLoggable ( Level . FINEST ) ... | This method sets the builder for this thread of execution . |
9,402 | public void clear ( ) { int currentCount = threadCounter . decrementAndGet ( ) ; if ( log . isLoggable ( Level . FINEST ) ) { log . finest ( "Clear: Disassociate Thread from FragmentBuilder(1): current thread count=" + currentCount ) ; synchronized ( threadNames ) { threadNames . remove ( Thread . currentThread ( ) . g... | This method clears the trace fragment builder for the current thread of execution . |
9,403 | protected static List < Trace > internalQuery ( ElasticsearchClient client , String tenantId , Criteria criteria ) { List < Trace > ret = new ArrayList < Trace > ( ) ; String index = client . getIndex ( tenantId ) ; try { RefreshRequestBuilder refreshRequestBuilder = client . getClient ( ) . admin ( ) . indices ( ) . p... | This method performs the query . |
9,404 | public static void decodeProperties ( Set < PropertyCriteria > properties , String encoded ) { if ( encoded != null && ! encoded . trim ( ) . isEmpty ( ) ) { StringTokenizer st = new StringTokenizer ( encoded , "," ) ; while ( st . hasMoreTokens ( ) ) { String token = st . nextToken ( ) ; String [ ] parts = token . spl... | This method processes a comma separated list of properties defined as a name|value pair . |
9,405 | public static void decodeCorrelationIdentifiers ( Set < CorrelationIdentifier > correlations , String encoded ) { if ( encoded != null && ! encoded . trim ( ) . isEmpty ( ) ) { StringTokenizer st = new StringTokenizer ( encoded , "," ) ; while ( st . hasMoreTokens ( ) ) { String token = st . nextToken ( ) ; String [ ] ... | This method processes a comma separated list of correlation identifiers defined as a scope|value pair . |
9,406 | public static Reference findPrimaryReference ( List < Reference > references ) { List < Reference > followsFrom = references . stream ( ) . filter ( ref -> References . FOLLOWS_FROM . equals ( ref . getReferenceType ( ) ) && ref . getReferredTo ( ) instanceof APMSpan ) . collect ( Collectors . toList ( ) ) ; List < Ref... | This method identifies the primary parent reference that should be used to link the associated span to an existing trace instance . |
9,407 | protected void initTopLevelState ( APMSpan topSpan , TraceRecorder recorder , ContextSampler sampler ) { nodeBuilder = new NodeBuilder ( ) ; traceContext = new TraceContext ( topSpan , nodeBuilder , recorder , sampler ) ; } | This method initialises the node builder and trace context for a top level trace fragment . |
9,408 | protected void initFromExtractedTraceState ( APMSpanBuilder builder , TraceRecorder recorder , Reference ref , ContextSampler sampler ) { APMSpanBuilder parentBuilder = ( APMSpanBuilder ) ref . getReferredTo ( ) ; initTopLevelState ( this , recorder , sampler ) ; if ( parentBuilder . state ( ) . containsKey ( Constants... | This method initialises the span based on extracted trace state . |
9,409 | protected void initChildOf ( APMSpanBuilder builder , Reference ref ) { APMSpan parent = ( APMSpan ) ref . getReferredTo ( ) ; if ( parent . getNodeBuilder ( ) != null ) { nodeBuilder = new NodeBuilder ( parent . getNodeBuilder ( ) ) ; traceContext = parent . traceContext ; if ( parent . getTags ( ) . containsKey ( Con... | This method initialises the span based on a child - of relationship . |
9,410 | protected void initFollowsFrom ( APMSpanBuilder builder , TraceRecorder recorder , Reference ref , ContextSampler sampler ) { APMSpan referenced = ( APMSpan ) ref . getReferredTo ( ) ; initTopLevelState ( referenced . getTraceContext ( ) . getTopSpan ( ) , recorder , sampler ) ; String nodeId = referenced . getNodePath... | This method initialises the span based on a follows - from relationship . |
9,411 | protected void processNoPrimaryReference ( APMSpanBuilder builder , TraceRecorder recorder , ContextSampler sampler ) { initTopLevelState ( this , recorder , sampler ) ; Set < String > traceIds = builder . references . stream ( ) . map ( ref -> { if ( ref . getReferredTo ( ) instanceof APMSpan ) { return ( ( APMSpan ) ... | This method initialises the span based on there being no primary reference . |
9,412 | protected void processRemainingReferences ( APMSpanBuilder builder , Reference primaryRef ) { for ( Reference ref : builder . references ) { if ( primaryRef == ref ) { continue ; } if ( ref . getReferredTo ( ) instanceof APMSpan ) { APMSpan referenced = ( APMSpan ) ref . getReferredTo ( ) ; String nodeId = referenced .... | This method processes the remaining references by creating appropriate correlation ids against the current node . |
9,413 | public void init ( String txn , TransactionConfig btc ) { if ( log . isLoggable ( Level . FINE ) ) { log . fine ( "ProcessManager: initialise btxn '" + txn + "' config=" + btc + " processors=" + btc . getProcessors ( ) . size ( ) ) ; } if ( btc . getProcessors ( ) != null && ! btc . getProcessors ( ) . isEmpty ( ) ) { ... | This method initialises the processors associated with the supplied transaction configuration . |
9,414 | public void process ( Trace trace , Node node , Direction direction , Map < String , ? > headers , Object ... values ) { if ( log . isLoggable ( Level . FINEST ) ) { log . finest ( "ProcessManager: process trace=" + trace + " node=" + node + " direction=" + direction + " headers=" + headers + " values=" + values + " : ... | This method processes the supplied information against the configured processor details for the trace . |
9,415 | public static String toUnique ( Span span ) { String id = span . getId ( ) ; if ( span . clientSpan ( ) ) { id = getClientId ( span . getId ( ) ) ; } return id ; } | Utility method to get unique id of the span . Note that method does not change the span id . |
9,416 | protected void doPublish ( String tenantId , List < T > items , String subscriber , int retryCount , long delay ) throws Exception { String data = mapper . writeValueAsString ( items ) ; TextMessage tm = session . createTextMessage ( data ) ; if ( tenantId != null ) { tm . setStringProperty ( "tenant" , tenantId ) ; } ... | This method publishes the supplied items . |
9,417 | protected void init ( ) { Properties props = new Properties ( ) ; props . put ( "bootstrap.servers" , PropertyUtil . getProperty ( PropertyUtil . HAWKULAR_APM_URI_PUBLISHER , PropertyUtil . getProperty ( PropertyUtil . HAWKULAR_APM_URI ) ) . substring ( PropertyUtil . KAFKA_PREFIX . length ( ) ) ) ; props . put ( "acks... | This method initialises the publisher . |
9,418 | public Criteria addProperty ( String name , String value , Operator operator ) { properties . add ( new PropertyCriteria ( name , value , operator ) ) ; return this ; } | This method adds a new property criteria . |
9,419 | public boolean transactionWide ( ) { return ! ( ! properties . isEmpty ( ) || ! correlationIds . isEmpty ( ) || hostName != null || uri != null || operation != null ) ; } | This method determines if the specified criteria are relevant to all fragments within an end to end transaction . |
9,420 | public Criteria deriveTransactionWide ( ) { Criteria ret = new Criteria ( ) ; ret . setStartTime ( startTime ) ; ret . setEndTime ( endTime ) ; ret . setProperties ( getProperties ( ) . stream ( ) . filter ( p -> p . getName ( ) . equals ( Constants . PROP_PRINCIPAL ) ) . collect ( Collectors . toSet ( ) ) ) ; ret . se... | This method returns the transaction wide version of the current criteria . |
9,421 | public static CollectorConfiguration getConfiguration ( String type ) { return loadConfig ( PropertyUtil . getProperty ( HAWKULAR_APM_CONFIG , DEFAULT_URI ) , type ) ; } | This method returns the collector configuration . |
9,422 | protected static CollectorConfiguration loadConfig ( String uri , String type ) { final CollectorConfiguration config = new CollectorConfiguration ( ) ; if ( type == null ) { type = DEFAULT_TYPE ; } uri += java . io . File . separator + type ; File f = new File ( uri ) ; if ( ! f . isAbsolute ( ) ) { if ( f . exists ( ... | This method loads the configuration from the supplied URI . |
9,423 | protected void process ( String tenantId , List < S > items , int retryCount ) throws Exception { ProcessingUnit < S , T > pu = new ProcessingUnit < S , T > ( ) ; pu . setProcessor ( getProcessor ( ) ) ; pu . setRetrySubscriber ( retrySubscriber ) ; pu . setRetryCount ( retryCount ) ; pu . setResultHandler ( ( tid , ev... | This method processes the received list of items . |
9,424 | public static List < SourceInfo > getSourceInfo ( String tenantId , List < Trace > items ) throws RetryAttemptException { List < SourceInfo > sourceInfoList = new ArrayList < SourceInfo > ( ) ; int curpos = 0 ; for ( int i = 0 ; i < items . size ( ) ; i ++ ) { Trace trace = items . get ( i ) ; StringBuffer nodeId = new... | This method gets the source information associated with the supplied traces . |
9,425 | protected static void initialiseSourceInfo ( List < SourceInfo > sourceInfoList , String tenantId , Trace trace , StringBuffer parentNodeId , int pos , Node node ) { SourceInfo si = new SourceInfo ( ) ; parentNodeId . append ( ':' ) ; parentNodeId . append ( pos ) ; si . setId ( parentNodeId . toString ( ) ) ; si . set... | This method initialises an individual node within a trace . |
9,426 | protected static Span findRootOrServerSpan ( String tenantId , Span span , SpanCache spanCache ) { while ( span != null && ! span . serverSpan ( ) && ! span . topLevelSpan ( ) ) { span = spanCache . get ( tenantId , span . getParentId ( ) ) ; } return span ; } | This method identifies the root or enclosing server span that contains the supplied client span . |
9,427 | public static SourceInfo getSourceInfo ( String tenantId , Span serverSpan , SpanCache spanCache ) { String clientSpanId = SpanUniqueIdGenerator . getClientId ( serverSpan . getId ( ) ) ; if ( spanCache != null && clientSpanId != null ) { Span clientSpan = spanCache . get ( tenantId , clientSpanId ) ; Span rootOrServer... | This method attempts to derive the Source Information for the supplied server span . If the information is not available then a null will be returned which can be used to trigger a retry attempt if appropriate . |
9,428 | public static ProcessorActionHandler getHandler ( ProcessorAction action ) { ProcessorActionHandler ret = null ; Class < ? extends ProcessorActionHandler > cls = handlers . get ( action . getClass ( ) ) ; if ( cls != null ) { try { Constructor < ? extends ProcessorActionHandler > con = cls . getConstructor ( ProcessorA... | This method returns an action handler for the supplied action . |
9,429 | protected static boolean processConfig ( ) { CollectorConfiguration config = configService . getCollector ( null , null , null , null ) ; if ( config != null ) { try { updateInstrumentation ( config ) ; } catch ( Exception e ) { log . severe ( "Failed to update instrumentation rules: " + e ) ; } } return config != null... | This method attempts to retrieve and process the instrumentation information contained within the collector configuration . |
9,430 | public static void updateInstrumentation ( CollectorConfiguration config ) throws Exception { List < String > scripts = new ArrayList < String > ( ) ; List < String > scriptNames = new ArrayList < String > ( ) ; Map < String , Instrumentation > instrumentTypes = config . getInstrumentation ( ) ; for ( Map . Entry < Str... | This method updates the instrumentation instructions . |
9,431 | public Node build ( ) { ContainerNode ret = null ; if ( nodeType == NodeType . Component ) { ret = new Component ( ) ; ( ( Component ) ret ) . setComponentType ( componentType ) ; } else if ( nodeType == NodeType . Consumer ) { ret = new Consumer ( ) ; ( ( Consumer ) ret ) . setEndpointType ( endpointType ) ; } else if... | This method builds the node hierarchy . |
9,432 | public void endProcessingNode ( ) { if ( nodeCount . decrementAndGet ( ) == 0 && recorder != null ) { Node node = rootNode . build ( ) ; trace . setTimestamp ( node . getTimestamp ( ) ) ; trace . setTransaction ( getTransaction ( ) ) ; trace . getNodes ( ) . add ( node ) ; if ( checkForSamplingProperties ( node ) ) { r... | This method indicates the end of processing a node within the trace instance . Once all nodes for a trace have completed being processed the trace will be reported . |
9,433 | public EndpointRef getSourceEndpoint ( ) { return new EndpointRef ( TagUtil . getUriPath ( topSpan . getTags ( ) ) , topSpan . getOperationName ( ) , false ) ; } | This method returns the source endpoint for the root trace fragment generated by the service invocation . |
9,434 | public void initTraceState ( Map < String , Object > state ) { Object traceId = state . get ( Constants . HAWKULAR_APM_TRACEID ) ; Object transaction = state . get ( Constants . HAWKULAR_APM_TXN ) ; Object level = state . get ( Constants . HAWKULAR_APM_LEVEL ) ; if ( traceId != null ) { setTraceId ( traceId . toString ... | Initialise the trace state from the supplied state . |
9,435 | private static boolean checkForSamplingProperties ( Node node ) { Set < Property > samplingProperties = node instanceof ContainerNode ? ( ( ContainerNode ) node ) . getPropertiesIncludingDescendants ( Tags . SAMPLING_PRIORITY . getKey ( ) ) : node . getProperties ( Tags . SAMPLING_PRIORITY . getKey ( ) ) ; for ( Proper... | This method is looking for sampling tag in nodes properties to override current sampling . |
9,436 | public static String encodeEndpoint ( String uri , String operation ) { StringBuilder buf = new StringBuilder ( ) ; if ( uri != null && ! uri . trim ( ) . isEmpty ( ) ) { buf . append ( uri ) ; } if ( operation != null && ! operation . trim ( ) . isEmpty ( ) ) { buf . append ( '[' ) ; buf . append ( operation ) ; buf .... | This method converts the supplied URI and optional operation into an endpoint descriptor . |
9,437 | public static String decodeEndpointURI ( String endpoint ) { int ind = endpoint . indexOf ( '[' ) ; if ( ind == 0 ) { return null ; } else if ( ind != - 1 ) { return endpoint . substring ( 0 , ind ) ; } return endpoint ; } | This method returns the URI part of the supplied endpoint . |
9,438 | public static String decodeEndpointOperation ( String endpoint , boolean stripped ) { int ind = endpoint . indexOf ( '[' ) ; if ( ind != - 1 ) { if ( stripped ) { return endpoint . substring ( ind + 1 , endpoint . length ( ) - 1 ) ; } return endpoint . substring ( ind ) ; } return null ; } | This method returns the operation part of the supplied endpoint . |
9,439 | public static String encodeClientURI ( String uri ) { if ( uri == null ) { return Constants . URI_CLIENT_PREFIX ; } return Constants . URI_CLIENT_PREFIX + uri ; } | This method provides a client based encoding of an URI . This is required to identify the client node invoking a service using a particular URI . |
9,440 | public static String decodeClientURI ( String clientUri ) { return clientUri . startsWith ( Constants . URI_CLIENT_PREFIX ) ? clientUri . substring ( Constants . URI_CLIENT_PREFIX . length ( ) ) : clientUri ; } | This method provides a decoding of a client based URI . |
9,441 | public static EndpointRef getSourceEndpoint ( Trace fragment ) { Node rootNode = fragment . getNodes ( ) . isEmpty ( ) ? null : fragment . getNodes ( ) . get ( 0 ) ; if ( rootNode == null ) { return null ; } return new EndpointRef ( rootNode . getUri ( ) , rootNode . getOperation ( ) , fragment . initialFragment ( ) &&... | This method determines the source URI that should be attributed to the supplied fragment . If the top level fragment just contains a Producer then prefix with client to distinguish it from the same endpoint for the service . |
9,442 | protected void submitTraces ( ) { if ( ! traces . isEmpty ( ) ) { List < Trace > toSend = traces ; traces = new ArrayList < > ( batchSize + 1 ) ; executor . execute ( new Runnable ( ) { public void run ( ) { try { tracePublisher . publish ( tenantId , toSend ) ; } catch ( Exception e ) { log . log ( Level . SEVERE , "F... | This method submits the current list of traces |
9,443 | public static List < HttpCode > getHttpStatusCodes ( List < BinaryAnnotation > binaryAnnotations ) { if ( binaryAnnotations == null ) { return Collections . emptyList ( ) ; } List < HttpCode > httpCodes = new ArrayList < > ( ) ; for ( BinaryAnnotation binaryAnnotation : binaryAnnotations ) { if ( Constants . ZIPKIN_BIN... | Method returns list of http status codes . |
9,444 | public static List < HttpCode > getClientOrServerErrors ( List < HttpCode > httpCodes ) { return httpCodes . stream ( ) . filter ( x -> x . isClientOrServerError ( ) ) . collect ( Collectors . toList ( ) ) ; } | Method returns only client or sever http errors . |
9,445 | public static String getHttpMethod ( Span span ) { if ( isHttp ( span ) ) { BinaryAnnotation ba = span . getBinaryAnnotation ( "http.method" ) ; String httpMethod = null ; if ( ba != null ) { httpMethod = ba . getValue ( ) . toUpperCase ( ) ; } else if ( span . getName ( ) != null ) { httpMethod = span . getName ( ) . ... | Derives HTTP operation from Span s binary annotations . |
9,446 | private static Integer toInt ( String str ) { Integer num = null ; try { num = Integer . parseInt ( str ) ; } catch ( NumberFormatException ex ) { log . severe ( String . format ( "failed to convert str: %s to integer" , str ) ) ; } return num ; } | Converts string to a number . |
9,447 | public static String serialize ( Object value ) { if ( value instanceof String ) { return ( String ) value ; } else if ( value instanceof byte [ ] ) { return new String ( ( byte [ ] ) value ) ; } } | This method converts the supplied object to a string . |
9,448 | public Set < Property > allProperties ( ) { Set < Property > properties = new HashSet < Property > ( ) ; for ( Node n : nodes ) { n . includeProperties ( properties ) ; } return Collections . unmodifiableSet ( properties ) ; } | This method returns all properties contained in the node hierarchy that can be used to search for the trace . |
9,449 | public long calculateDuration ( ) { if ( ! nodes . isEmpty ( ) ) { long endTime = 0 ; for ( int i = 0 ; i < getNodes ( ) . size ( ) ; i ++ ) { Node node = getNodes ( ) . get ( i ) ; long nodeEndTime = node . overallEndTime ( ) ; if ( nodeEndTime > endTime ) { endTime = nodeEndTime ; } } return endTime - getNodes ( ) . ... | This method returns the duration of the trace fragment . |
9,450 | public Set < Node > getCorrelatedNodes ( CorrelationIdentifier cid ) { Set < Node > ret = new HashSet < Node > ( ) ; for ( Node n : getNodes ( ) ) { n . findCorrelatedNodes ( cid , ret ) ; } return ret ; } | This method locates any node within the trace that is associated with the supplied correlation id . |
9,451 | protected void initNode ( ) { ClassLoader cl = Thread . currentThread ( ) . getContextClassLoader ( ) ; try { Thread . currentThread ( ) . setContextClassLoader ( TransportClient . class . getClassLoader ( ) ) ; final Properties properties = new Properties ( ) ; try { InputStream stream = null ; if ( System . getProper... | This method initializes the node . |
9,452 | public void close ( ) { if ( log . isLoggable ( Level . FINEST ) ) { log . finest ( "Close Elasticsearch node=" + node + " client=" + client ) ; } if ( client != null ) { client . close ( ) ; client = null ; } if ( node != null ) { node . stop ( ) ; node = null ; } } | This method closes the elasticsearch node . |
9,453 | public < T > T cast ( Object obj , Class < T > clz ) { if ( ! clz . isAssignableFrom ( obj . getClass ( ) ) ) { return null ; } return clz . cast ( obj ) ; } | This method casts the supplied object to the nominated class . If the object cannot be cast to the provided type then a null will be returned . |
9,454 | public String formatSQL ( Object obj , Object expr ) { String sql = null ; if ( expr instanceof String ) { sql = ( String ) expr ; if ( log . isLoggable ( Level . FINEST ) ) { log . finest ( "SQL retrieved from state = " + sql ) ; } } else if ( obj != null ) { sql = toString ( obj ) ; if ( sql != null ) { if ( sql . st... | This method attempts to return a SQL statement . If an expression is supplied and is string it will be used . Otherwise the method will attempt to derive an expression from the supplied object . |
9,455 | protected FaultDescriptor getFaultDescriptor ( Object fault ) { for ( int i = 0 ; i < faultDescriptors . size ( ) ; i ++ ) { if ( faultDescriptors . get ( i ) . isValid ( fault ) ) { return faultDescriptors . get ( i ) ; } } return null ; } | This method attempts to locate a descriptor for the fault . |
9,456 | public String faultName ( Object fault ) { FaultDescriptor fd = getFaultDescriptor ( fault ) ; if ( fd != null ) { return fd . getName ( fault ) ; } return fault . getClass ( ) . getSimpleName ( ) ; } | This method gets the name of the supplied fault . |
9,457 | public String faultDescription ( Object fault ) { FaultDescriptor fd = getFaultDescriptor ( fault ) ; if ( fd != null ) { return fd . getDescription ( fault ) ; } return fault . toString ( ) ; } | This method gets the description of the supplied fault . |
9,458 | public String removeAfter ( String original , String marker ) { int index = original . indexOf ( marker ) ; if ( index != - 1 ) { return original . substring ( 0 , index ) ; } return original ; } | This method removes the end part of a string beginning at a specified marker . |
9,459 | public Map < String , String > getHeaders ( String type , Object target ) { HeadersAccessor accessor = getHeadersAccessor ( type ) ; if ( accessor != null ) { Map < String , String > ret = accessor . getHeaders ( target ) ; return ret ; } return null ; } | This method attempts to provide headers for the supplied target object . |
9,460 | public static BinaryAnnotationMappingDeriver getInstance ( String path ) { if ( instance == null ) { synchronized ( LOCK ) { if ( instance == null ) { instance = path == null ? new BinaryAnnotationMappingDeriver ( ) : new BinaryAnnotationMappingDeriver ( path ) ; } } } return instance ; } | Returns instance of mapping deriver . |
9,461 | public MappingResult mappingResult ( List < BinaryAnnotation > binaryAnnotations ) { if ( binaryAnnotations == null ) { return new MappingResult ( ) ; } List < String > componentTypes = new ArrayList < > ( ) ; List < String > endpointTypes = new ArrayList < > ( ) ; MappingResult . Builder mappingBuilder = MappingResult... | Creates a mapping result from supplied binary annotations . |
9,462 | protected void deriveNodeDetails ( Trace trace , List < Node > nodes , List < NodeDetails > rts , boolean initial , Set < Property > commonProperties ) { for ( int i = 0 ; i < nodes . size ( ) ; i ++ ) { Node n = nodes . get ( i ) ; boolean ignoreNode = false ; boolean ignoreChildNodes = false ; if ( n . getClass ( ) =... | This method recursively derives the node details metrics for the supplied nodes . |
9,463 | protected Set < Property > obtainCommonProperties ( Trace trace ) { Set < Property > commonProperties = trace . getProperties ( Constants . PROP_SERVICE_NAME ) ; commonProperties . addAll ( trace . getProperties ( Constants . PROP_BUILD_STAMP ) ) ; commonProperties . addAll ( trace . getProperties ( Constants . PROP_PR... | Obtain any properties from the trace that should be applied to all derived NodeDetails . |
9,464 | protected long calculateActualTime ( Node n ) { long childElapsed = 0 ; if ( n . containerNode ( ) ) { long startTime = n . getTimestamp ( ) + n . getDuration ( ) ; long endTime = n . getTimestamp ( ) ; for ( int i = 0 ; i < ( ( ContainerNode ) n ) . getNodes ( ) . size ( ) ; i ++ ) { Node child = ( ( ContainerNode ) n... | This method calculates the actual time associated with the supplied node . |
9,465 | public boolean process ( Trace trace , Node node , Direction direction , Map < String , ? > headers , Object [ ] values ) { if ( predicate != null ) { return predicate . test ( trace , node , direction , headers , values ) ; } return true ; } | This method processes the supplied information to extract the relevant details . |
9,466 | public boolean isVersionValid ( String version ) { if ( fromVersion != null && version != null ) { if ( version . compareTo ( fromVersion ) < 0 ) { return false ; } } if ( toVersion != null ) { if ( version == null || version . compareTo ( toVersion ) >= 0 ) { return false ; } } return true ; } | This method determines if the rule is valid for the supplied version . If the supplied version is null then it is assumed to represent latest version and therefore any rule with a toVersion set will not be valid . |
9,467 | public void finest ( String mesg , Throwable t ) { log ( Level . FINEST , mesg , t ) ; } | This method logs a message at the FINEST level . |
9,468 | public void finer ( String mesg , Throwable t ) { log ( Level . FINER , mesg , t ) ; } | This method logs a message at the FINER level . |
9,469 | public void fine ( String mesg , Throwable t ) { log ( Level . FINE , mesg , t ) ; } | This method logs a message at the FINE level . |
9,470 | public void info ( String mesg , Throwable t ) { log ( Level . INFO , mesg , t ) ; } | This method logs a message at the INFO level . |
9,471 | public void warning ( String mesg , Throwable t ) { log ( Level . WARNING , mesg , t ) ; } | This method logs a message at the WARNING level . |
9,472 | public void severe ( String mesg , Throwable t ) { log ( Level . SEVERE , mesg , t ) ; } | This method logs a message at the SEVERE level . |
9,473 | public void log ( Level mesgLevel , String mesg , Throwable t ) { if ( mesgLevel . ordinal ( ) >= level . ordinal ( ) ) { StringBuilder builder = new StringBuilder ( ) ; builder . append ( mesgLevel . name ( ) ) ; builder . append ( ": [" ) ; builder . append ( simpleClassName != null ? simpleClassName : className ) ; ... | This method logs a message at the supplied message level with an optional exception . |
9,474 | public static String deriveOperation ( Span span ) { if ( SpanHttpDeriverUtil . isHttp ( span ) ) { return SpanHttpDeriverUtil . getHttpMethod ( span ) ; } return span . getName ( ) ; } | Derives an operation from supplied span . |
9,475 | public boolean isCompleteExceptIgnoredNodes ( ) { synchronized ( nodeStack ) { if ( nodeStack . isEmpty ( ) && retainedNodes . isEmpty ( ) ) { return true ; } else { for ( int i = 0 ; i < nodeStack . size ( ) ; i ++ ) { if ( ! ignoredNodes . contains ( nodeStack . get ( i ) ) ) { return false ; } } for ( int i = 0 ; i ... | This method determines if the fragment is complete with the exception of ignored nodes . |
9,476 | public void pushNode ( Node node ) { initNode ( node ) ; inStream = null ; synchronized ( nodeStack ) { poppedNodes . clear ( ) ; if ( suppress ) { suppressedNodeStack . push ( node ) ; return ; } if ( nodeStack . isEmpty ( ) ) { if ( log . isLoggable ( Level . FINEST ) ) { log . finest ( "Pushing top level node: " + n... | This method pushes a new node into the trace fragment hierarchy . |
9,477 | public Node popNode ( Class < ? extends Node > cls , String uri ) { synchronized ( nodeStack ) { if ( suppress ) { if ( ! suppressedNodeStack . isEmpty ( ) ) { Node suppressed = popNode ( suppressedNodeStack , cls , uri ) ; if ( suppressed != null ) { return suppressed ; } } else { suppress = false ; } } return popNode... | This method pops the latest node from the trace fragment hierarchy . |
9,478 | protected Node popNode ( Stack < Node > stack , Class < ? extends Node > cls , String uri ) { Node top = stack . isEmpty ( ) ? null : stack . peek ( ) ; if ( top != null ) { if ( nodeMatches ( top , cls , uri ) ) { Node node = stack . pop ( ) ; poppedNodes . push ( node ) ; return node ; } else { for ( int i = stack . ... | This method pops a node of the defined class and optional uri from the stack . If the uri is not defined then the latest node of the approach class will be chosen . |
9,479 | protected boolean nodeMatches ( Node node , Class < ? extends Node > cls , String uri ) { if ( node . getClass ( ) == cls ) { return uri == null || NodeUtil . isOriginalURI ( node , uri ) ; } return false ; } | This method determines whether the supplied node matches the specified class and optional URI . |
9,480 | public void retainNode ( String id ) { synchronized ( retainedNodes ) { Node current = getCurrentNode ( ) ; if ( current != null ) { retainedNodes . put ( id , current ) ; } } } | This method indicates that the current node for this thread of execution should be retained temporarily pending further changes . |
9,481 | public void addUncompletedCorrelationId ( String id , Node node , int position ) { NodePlaceholder placeholder = new NodePlaceholder ( ) ; placeholder . setNode ( node ) ; placeholder . setPosition ( position ) ; uncompletedCorrelationIdsNodeMap . put ( id , placeholder ) ; } | This method associates a parent node and child position with a correlation id . |
9,482 | public int getUncompletedCorrelationIdPosition ( String id ) { if ( uncompletedCorrelationIdsNodeMap . containsKey ( id ) ) { return uncompletedCorrelationIdsNodeMap . get ( id ) . getPosition ( ) ; } return - 1 ; } | This method returns the child position associated with the supplied correlation id . |
9,483 | public Node removeUncompletedCorrelationId ( String id ) { NodePlaceholder placeholder = uncompletedCorrelationIdsNodeMap . remove ( id ) ; if ( placeholder != null ) { return placeholder . getNode ( ) ; } return null ; } | This method removes the uncompleted correlation id and its associated information . |
9,484 | public void writeInData ( int hashCode , byte [ ] b , int offset , int len ) { if ( inStream != null && ( hashCode == - 1 || hashCode == inHashCode ) ) { inStream . write ( b , offset , len ) ; } } | This method writes data to the in buffer . |
9,485 | public byte [ ] getInData ( int hashCode ) { if ( inStream != null && ( hashCode == - 1 || hashCode == inHashCode ) ) { try { inStream . close ( ) ; } catch ( IOException e ) { log . severe ( "Failed to close in data stream: " + e ) ; } byte [ ] b = inStream . toByteArray ( ) ; inStream = null ; return b ; } return nul... | This method returns the data associated with the in buffer and resets the buffer to be inactive . |
9,486 | public void writeOutData ( int hashCode , byte [ ] b , int offset , int len ) { if ( outStream != null && ( hashCode == - 1 || hashCode == outHashCode ) ) { outStream . write ( b , offset , len ) ; } } | This method writes data to the out buffer . |
9,487 | public byte [ ] getOutData ( int hashCode ) { if ( outStream != null && ( hashCode == - 1 || hashCode == outHashCode ) ) { try { outStream . close ( ) ; } catch ( IOException e ) { log . severe ( "Failed to close out data stream: " + e ) ; } byte [ ] b = outStream . toByteArray ( ) ; outStream = null ; return b ; } ret... | This method returns the data associated with the out buffer and resets the buffer to be inactive . |
9,488 | public void setState ( Object context , String name , Object value ) { StateInformation si = stateInformation . get ( name ) ; if ( si == null ) { si = new StateInformation ( ) ; stateInformation . put ( name , si ) ; } si . set ( context , value ) ; } | This method stores state information associated with the name and optional context . |
9,489 | public Object getState ( Object context , String name ) { StateInformation si = stateInformation . get ( name ) ; if ( si == null ) { return null ; } return si . get ( context ) ; } | This method returns the state associated with the name and optional context . |
9,490 | public static String getUriPath ( String value ) { try { URL url = new URL ( value ) ; return url . getPath ( ) ; } catch ( MalformedURLException e ) { return value ; } } | This method extracts the path component of a URL . If the supplied value is not a valid URL format then it will simply return the supplied value . |
9,491 | public static String getUriPath ( Map < String , Object > tags ) { for ( Map . Entry < String , Object > entry : tags . entrySet ( ) ) { if ( isUriKey ( entry . getKey ( ) ) ) { return getUriPath ( entry . getValue ( ) . toString ( ) ) ; } } return null ; } | This method returns the URI value from a set of supplied tags by first identifying which tag relates to a URI and then returning its path value . |
9,492 | public static void rewriteURI ( Node node , String uri ) { node . getProperties ( ) . add ( new Property ( APM_ORIGINAL_URI , node . getUri ( ) ) ) ; node . setUri ( uri ) ; } | This method rewrites the URI associated with the supplied node and stores the original in the node s details . |
9,493 | public static boolean isOriginalURI ( Node node , String uri ) { if ( node . getUri ( ) . equals ( uri ) ) { return true ; } if ( node . hasProperty ( APM_ORIGINAL_URI ) ) { return node . getProperties ( APM_ORIGINAL_URI ) . iterator ( ) . next ( ) . getValue ( ) . equals ( uri ) ; } return false ; } | This method determines whether the supplied URI matches the original URI on the node . |
9,494 | protected Object getDataValue ( Trace trace , Node node , Direction direction , Map < String , ? > headers , Object [ ] values ) { if ( source == DataSource . Content ) { return values [ index ] ; } else if ( source == DataSource . Header ) { return headers . get ( key ) ; } return null ; } | This method returns the data value associated with the requested data source and key .. |
9,495 | protected void includeProperties ( Set < Property > allProperties ) { super . includeProperties ( allProperties ) ; nodes . forEach ( n -> n . includeProperties ( allProperties ) ) ; } | This method adds the properties for this node to the supplied set . |
9,496 | protected long overallEndTime ( ) { long ret = super . overallEndTime ( ) ; for ( Node child : nodes ) { long childEndTime = child . overallEndTime ( ) ; if ( childEndTime > ret ) { ret = childEndTime ; } } return ret ; } | This method determines the overall end time of this node . |
9,497 | protected Collection < CommunicationSummaryStatistics > doGetCommunicationSummaryStatistics ( String tenantId , Criteria criteria ) { String index = client . getIndex ( tenantId ) ; Map < String , CommunicationSummaryStatistics > stats = new HashMap < > ( ) ; if ( ! criteria . transactionWide ( ) ) { Criteria txnWideCr... | This method returns the flat list of communication summary stats . |
9,498 | private void buildCommunicationSummaryStatistics ( Map < String , CommunicationSummaryStatistics > stats , String index , Criteria criteria , boolean addMetrics ) { if ( ! refresh ( index ) ) { return ; } BoolQueryBuilder query = buildQuery ( criteria , ElasticsearchUtil . TRANSACTION_FIELD , null ) ; query = query . m... | This method builds a map of communication summary stats related to the supplied criteria . |
9,499 | static String getServiceFromBuildName ( String buildName ) { if ( null == buildName || buildName . isEmpty ( ) ) { return buildName ; } return buildName . substring ( 0 , buildName . lastIndexOf ( '-' ) ) ; } | Converts an OpenShift build name into a service name |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.