Inconsistent data collection in Foglight (FMS) 5.6.4

Hello

We use Foglight 5.6.4 for the monitoring of applications, hosts (physical and virtual). In this process, we deploy mulltiple agents using different cartridges to collect level Infrastructure settings.

The problem we are facing is, we are unable to obtain data from the monitored hosts in a coherent way.

(i.e.) if we are looking for (say data today ' hui), it shows data for all hosts, but if change us the interval and search data from the night before, we could not get the data for all hosts.

Thus, customers seeking any specific day data are not able to get the data correctly because they generate reports with these data.

Kindly ask you to bring a solution.

Kind regards

Guenoun

Guenoun,

The screenshots you posted show one or more instances of a portlet that displays the key indicators for the host groups in each level.

The missing parameters are percentage of values associated with the memory, disk, CPU, and network.

It's a custom portlet, so it is impossible to know what aspect of the metric is shown, but I would hazard a guess that it is the "current" value of the metric. In a daily time slot, this value represents the observation just before midnight, which is not particularly significant.

If the portlet displays the value of 'the period/average', he would meaningfully represent average during the selected day. I would be more surprised to see the lack of value of 'the period/average '.

One thing you can do is to open one of these parameters in the data browser with a time interval of several days and inspect the comments in the "history" list These observations represent a continuous value for this measure, or are there gaps?

Another way you can do is drag and drop one of these settings on a dashboard custom diagram.

Set the time range to seven days and see if there are gaps in the graph. You can export all comments in CSV or Excel to inspect their individually.

To summarize:

  1. Your custom portlet is configured to display the "current/average" or the "period/average" of the metric?
  2. Is the history of observation for these ongoing metrics or are there gaps?

Kind regards

Brian Wheeldon

Tags: Dell Tech

Similar Questions

  • ORA-00932: inconsistent data types: expected - got CURSER

    Hi all

    I created a function and tried to run SQL Plus, but I get an error

    ORA-00932: inconsistent data types: expected - got CURSER

    I tried to debug for centuries, but are unable to the root of what could be the problem. I'd appreciate any help or idea people could offer

    The only consolation I take from this is that Oracle have typo in one of their error messages :)



    SQL MORE CODE
    select * FROM TABLE(CAST(tsoraimpdb.QueryAuthorsFunc(116, 1, -1, 1, 0) as tsoraimpdb.ENTITYIDTABLE));
    THE FUNCTION CODE
    CREATE OR REPLACE FUNCTION &HKImpDB_Schema_Name..QueryAuthorsFunc 
    (
    aKGID NUMBER,
      aPageNumber NUMBER,              -- The page interested
      aPageSize NUMBER,                -- Number of records per page
      aOffset NUMBER,                  -- The offset = number of records already got
      aTotalRecord NUMBER          -- Total number of users in the database
    )
    RETURN sys_refcursor
    as
    l_FuncCur sys_refcursor;
    l_TotalRecord NUMBER(10) := aTotalRecord;
    l_Offset NUMBER(10) := aOffset;
    l_PagingTable TEMP_T_TABLE:= TEMP_T_TABLE();
    
    -- paging set up
    l_MinRecordsOnAPge NUMBER(10); --last record on the previous page
    l_MaxRecordsOnAPge NUMBER(10); --last record on the current page
    begin
    DBMS_OUTPUT.PUT_LINE('start');
    select KnowdePos(rownum,p.ID) bulk collect into l_PagingTable
      FROM KnowledgeGene kg
      INNER JOIN HKResource r ON kg.KGOwner = r.ID
      INNER JOIN Person p ON r.PersonID = p.ID
    WHERE kg.kgid = akgid
    ORDER BY p.FirstName + ' ' + p.LastName;
    
    l_TotalRecord := l_PagingTable.count; -- get total records
    DBMS_OUTPUT.PUT_LINE(  l_TotalRecord);
    
    if aPageSize > 0 then
      if aPageNumber <= 0 then
              Raise_application_error(-20003,'Invalid Page Number');
      else
          l_MinRecordsOnAPge := (aPageNumber-1)*aPageSize;
          l_MaxRecordsOnAPge := aPageNumber*aPageSize;
      end if;
    else -- if @PageSize < 0 return all records
        l_Offset := 0;
        l_MinRecordsOnAPge := 0;
        l_MaxRecordsOnAPge := l_TotalRecord;
    END if;
    
    -- return results for the correct page
    open l_FuncCur for
    SELECT pos
      from HKResource r
      INNER JOIN Person p ON r.PersonID = p.ID
      inner join TABLE(CAST(l_PagingTable AS TEMP_T_TABLE)) on pos = p.id
      WHERE KnowdeID > l_MinRecordsOnAPge - l_Offset AND KnowdeID <= l_MaxRecordsOnAPge - l_Offset;
    
    return l_FuncCur;
    EXCEPTION when NO_DATA_FOUND then null;
    end;

    You cannot get the ref cursor in a table like this. Either use a PL/SQL program to extract the lines of ref cursor and display them via dbms_output.put_line (or something) or load the results into a collection and then cast the collection in a table in your select statement.

  • Why I get this error? ORA-00932: inconsistent data types

    It's my stored procedure, I created to select only the exact amount of records per page to a GridView (for ASP.NET):
    CREATE OR REPLACE
    PROCEDURE SELECT_COMMAND
    (pTable IN VARCHAR2
    , pFields IN VARCHAR2
    , pSortField IN VARCHAR2
    , pPageIndex IN NUMBER
    , pTotalRecs IN NUMBER
    , pResultSet OUT SYS_REFCURSOR
    ) AS
    BEGIN  
      EXECUTE IMMEDIATE 
      'SELECT ' || pFields || ' FROM '
      || '(SELECT '|| pFields ||', ROW_NUMBER() OVER(ORDER BY '|| pSortField ||') ROW_NUM '
      || 'FROM '|| pTable ||') WHERE ROW_NUM BETWEEN '|| to_char(pPageIndex*pTotalRecs) ||' AND '
      || to_char((pPageIndex+1)*pTotalRecs)    
      INTO pResultSet;
      -- Plus 1 to our index because GridView is a zeroth index collection
    END SELECT_COMMAND;
    I then do a test case with the following parameters:
    declare
    p_test sys_refcursor;
    begin
    select_command('v_sig_devices', '"JOB", "LINE"', '"DEVICE_ID"', 0, 10, p_test);
    end;
    But I get the following error:

    >
    Error report: ORA-00932: inconsistent data types: expected - was -.
    ORA-06512: at the 'SIM '. SELECT_COMMAND', line 10
    ORA-06512: at line 4 level
    00932 00000 - ' incompatible data types: wait %s %s got. "
    >

    At first Oracle gave me an error because the figures were not a string. Can I convert it to a string (with to_char) and Oracle is still not satisfied! Any ideas as to why this is happening?

    Thanks for any help you can provide.

    Suppose you want sth. as

    ...
    OPEN pResultSet FOR 'SELECT ' || pFields || ' FROM '
      || '(SELECT '|| pFields ||', ROW_NUMBER() OVER(ORDER BY '|| pSortField ||') ROW_NUM '
      || 'FROM '|| pTable ||') WHERE ROW_NUM BETWEEN '|| to_char(pPageIndex*pTotalRecs) ||' AND '
      || to_char((pPageIndex+1)*pTotalRecs)  ;
    ...
    
  • write the table in its entirety in text file after completing the data collection

    Dell NetBook, Windows XP home, OR-6008, Labview 8.5.1

    I read a psydo real-time app 8 analog signals at 100 Hz.  I can't write directly to a file of data during data collection (processor flash drive to slow down), but can store 4 2D tables separated, with one added timestamp data.  Once I finished collecting data, I would record each table in a separate text (csv) file.  Using takes a loop for in long and using the 'picture to a worksheet string' add labels that I can't change.  I'm climbing down a text file of 3 columns and lines equal the number of samples, I've collected (e.g., a 1 minute session would be 6000 rows and 3 columns).

    1,1.3,1.5,

    2,1.2,1.4,

    3,1.4,1.1,

    4,1.5,1.2,

    5,1.4,1.4,

    etc.

    Thank you

    Troy


  • WJA - has no alerts - inaccuracies of data collection

    I've been running Web Jetadmin v10.2.7491B on a Server 2003 during approximately 3 years. There are 120 managed printers consisting of 9 different models.

    Question #1

    Initially, I got alerts configured on all printers that would send an email when a consumable fell below 3%. It worked very relibly for the first year. Over time, a growing number of printers stopped to send reports, until finally only a handful sent alerts. I never found the cause of this problem.

    Question #2

    Alerts being broken, I set up a collection of data daily for all printers and a csv morning emailed report. I then sort data in percentage of consumable remaining and replace those 1% or less. Recently, reports have stopped 3 models on 9 specific consumables percentages in daily reports. This problem seems to be with an update of the firmware that I pushed to all printers. The console does HOSTS shows specific information for individual printers when they are selected.

    Steps taken to solve #2

    Printers have been removed from all groups from the Collection of data from reports and then added. This has not solved the problem. Printers were originally added individually to a data collection, but I've set up a group policy that automatically adds a printer to the collection of data. 6 models of printers are still accurate percentages, but not the models 4345, 4730 and 5035.

    Is there a file database that I can delete that forces a rebuild of the collection of data for all printers? Is it possible that the new firmware for the 3 models listed has a bug which prevents update data?

    

    This forum focuses on the level of consumer products.  For that matter, you can get best results displaying in the company, print, network and Web Jetadmin forum here storage servers.

  • How to view the data collected in vi main indicators in an another vi

    Hello

    I data collection to aid NI 6251 USB DAQ in vi but as I have too many controls and indicators on the main façade of vi. So I want to display the indicators (graphs) in an another vi. I want also the vi with graphs automatically opens. Anyone know how I can do this? I'd appreciate any help.

    Thank you

    ygupta

    Hello

    Search for the concept vi sub forum.

    For your reference, I have attached an example.

    You can see the procedure for the same thing on the net.

    Kind regards

    Shrek

  • Performance Monitor Remote cannot get data data collection

    While trying to collect data from a remote Windows 2008 Server (Serveur_B) to another (Server_A) W2k8 Server I get the following error message: "when you try to start the data collector set the following system error occurred: no data to return.»

    However surveillance in real-time remotely from Serveur_B is no problem.  Local real-time monitoring and data collection of Server_A is also successful.

    Is the error due to security restrictions?

    Hi Scott,.

    The question you have posted is related to the Windows Server product and would be better suited to the TechNet community. Please visit the link below to find a community that will provide the best support.

    http://social.technet.Microsoft.com/forums/WindowsServer/en-us/home

    Thank you.

  • The Event Viewer error on startup: "the scheduled task of CARPET met a failure during configuration data collection. HR = 0xC004F00E.

    I use Windows XP with AMD processor clocked at 1.6 Ghz and 2 GB of RAM. This error appears in the event viewer whenever my computer starts. I don't know if it's doing any harm. can someone advise?

    original title: the scheduled task of CARPET met a failure during configuration data collection. HR = 0xC004F00E

    Hello Steven,

    Did you ever receive notifications that a virus or malware has been removed from your system recently?
    My only thought is that it is the remains of an infection on your machine.
    It is most likely harmless, but I don't understand why you'd be concerned.
    Do you have any task scheduled to run at startup using Task Scheduler built into Windows?
    I would check to see if there are tasks to run at startup:
  • WinVerifyTrust error 24592 trying to install SPSS Data collection

    I am trying to install a legal copy of SPSS Data Collection on my computer, which runs Windows XP.
    Each attempt and before the installation reaches the authorization process, the installation stops with a message that says:

    Error 1330. Impossible to install a file that is necessary because the E:\Data1.cab CAB file has a signature digital invalid. This may indicate that the file is corrupted. Error 24592 was returned by WinVerifyTrust.

    (Drive E is the I install from the CD-ROM drive.)

    I saw a lot of similar posts for other packages, and many answers suggests that it is due to an update of Windows since a couple of years. I tried the solutions proposed, such as move InstallShield program directory on the desktop and disconnect my internet connection. So far, nothing has worked.

    I need this software for my work, so any help would be appreciated.

    Hi GaryHearne,

    Try the steps listed in the next post to solve this problem:

    SPSS Statistics 17.0 throw error 1330 on installation

  • lack of system restore - the animated icon appears to indicate the data collection, but then it stops

    When I try the system restore, I am able to choose a restore date. I then accept the details and press next to accept. The animated icon appears to indicate the data collection, but it then stops. Therefore, the system is not shut down and restart (which I think it is supposed to do). If you try to select another date that is the same thing. any ideas? I think that I was previously exposed to a system whose consequences restore virus had to hide all my files. I'm still not programe files on the start menu.

    Hello

    Method 1: I suggest you to run the Microsoft safety scanner to ensure that the system is free of infection by the virus:

    http://www.Microsoft.com/security/scanner/en-us/default.aspx

    Note: you can lose data if the parser detects a corrupted data file.

    Method 2: Run the SFC scan and check if system files are intact:

    How to use the System File Checker tool to fix the system files missing or corrupted on Windows Vista or Windows 7

    http://support.Microsoft.com/kb/929833

    Method 3: You can also try restoring the system to the Windows recovery environment (WinRE):

    What are the system recovery options in Windows Vista?

    http://Windows.Microsoft.com/en-us/Windows-Vista/what-are-the-system-recovery-options-in-Windows-Vista

  • 0xC004E002-software licensing service reported that the license store contains inconsistent data.

    I got this code when I started upward. How to fix it. It says the software licensing service reported that the license store contains inconsistent data.

    Hello

    You can follow below link that can help you to solve your problem:

    Error 0xC004E002 during activation of Windows Vista, Windows Server 2008, Windows 7 or Windows Server 2008 R2
    http://support.Microsoft.com/kb/978305
     
  • VMware vCenter Server service stops or restarts at the start of data collection

    VMware vCenter Server service stops or restarts at the start of data collection

    I am using vCenter Server 5.0

    Whenever I have begin to collect data, vcenter service stops or restarts, if I stop data collection and to disable the agent, vcenter service again and works well.

    Please any help!

    Thanks in advance

    It is a known issue, relating to the collection of historical data being enabled (nonzero) in the properties of the VMWare Agent on the Agent status screen.

    Change to 0 to disable/re-enable the agent and it should fix the problem.

    Please open a ticket of level 1 with telephone support if you need more help.

  • How the servers monitor Foglihgt Agent eat? data collection?

    Hello

    HWO to monitor Agents of Foglihgt, when we checked the agent in dahsboard green Agent statsu is displayed, but some time it collects not data.

    is this a way to monitor Agents (FGLAM) are the data collection or not? If not, we send an email to us.

    Check first for the agents to be deleted if they are present in Administration > Agents > Agent status

    If they use the buttons in this dashboard to disable, then delete them.

    Then go to: Management Server > servers > Data Management: Manager Agent > instance to find your "null" and possibly other officers, who have not been removed by the above action.

    Delete them usung icon red removing in the column to remove.

    If you do not feel comfortable on this subject, I strongly advice you open a support case.

    Best regards, Bart

  • Deployment progress 0.0% (stuck @ data collection)

    We tried to make Hault, reset criticism, full deployment. Rollback. No progress for the full deployment / Rollback option or the other. No errors in the log. . Here's the status / details of the project.

    Current deployment

    Projects:

    SimpleHtmlContentPubProject

    Status of deployment:

    Data collection

    Last execution time-out:

    2 595,558 seconds

    Total execution time:

    2, 595.558seconds

    Course of deployment 0.0%     Data collection

    Deployment ID

    10000009

    Deployed from (server)

    integrationpubsever:10050

    Deployed by

    Admin

    Has started rolling out

    06/03/2015-16:49

    Deployment projects

    AddCategoryLinkToHeaderMainMenu

    Instant deployment ID

    23531

    Deployment type

    Incremental

    Validated data

    NO.

    Deployment mode

    Switch

    Start database in real-time

    DataSourceB

    Switched data stores

    NO.

    Marked for restoration

    NO.

    State of play

    Data collection

    Stopped by

    Last modified status

    Error message

    We had to remove the data from cooked/corrupted half of deployment of the schema PUB table. (remove the project item in the Directory deployment with references) And he solved the problem.i.e we could deploy the projects successfully.

  • How to troubleshoot incidents of endpoint vRO data collection embedded in HRV 7

    Hello

    We have problems with the collection of data for the endpoint vRO in vra 7. Data collection fails. We believe this is related to the worker DEM, but we do not know how to solve this. So far, the only mistake we have is when running on endpoint vRO data collection:

    In the console of vRA > infrastructure > monitoring, logs:

    Endpoint data collection has no endpoint internal Instance [Workflow Instance Id = 31009] vRO vRealize Orchestrator has returned an error: internal server error.

    In C:\Program Files (x 86) execution of the \VMware\vCAC\Distributed Manager\DEM - Core2\Logs\DEM-Core2_Errors

    [UTC:2016 - 05-20 21:24:05 local: 2016-05-20 14:24:05] "[Error]: Thread-Id ="11"- context =" "token =" "<? XML version = "1.0" encoding = "utf-16"? >

    < Boolean > false < / Boolean >

    Endpoint data collection has no endpoint internal Instance [Workflow Instance Id = 31009] vRO

    System.Net.WebException: vRealize Orchestrator has returned an error: internal server error.

    at DynamicOps.VcoModel.Common.VcoClient.CheckResponseStatus (IRestResponse answer)

    at DynamicOps.VcoModel.Common.VcoClient.DecodeJsonResponse (IRestResponse answer)

    to DynamicOps.VcoModel.Common.VcoVersionUtils.GetPluginsInformation (customer VcoClient)

    to DynamicOps.VcoModel.Activities.StoreVcoPluginsInformation.Execute (CodeActivityContext context)

    to System.Activities.CodeActivity.InternalExecute (ActivityInstance, executor, BookmarkManager bookmarkManager ActivityExecutor instance)

    to System.Activities.Runtime.ActivityExecutor.ExecuteActivityWorkItem.ExecuteBody (ActivityExecutor executor, BookmarkManager bookmarkManager, location resultLocation)

    In addition, when you run the data collection on an inventory of POSSIBLE computing resources, the following error occurs:

    [UTC:2016 - 05-20 22:54:53 local: 2016-05-20 15:54:53] "[Error]: Thread-Id ="12"- context =" "token =" "<? XML version = "1.0" encoding = "utf-16"? >

    < Boolean > false < / Boolean >

    Workflow "vSphereVCNSInventory" failed with the following exception:

    DynamicOps.VcoModel.Common.VcoException: Point endpoint could not be found. There is no point vRealize Orchestrator endpoints configured with the __VMware.VCenterOrchestrator.Plugin.NSX.Build property.

    to DynamicOps.VcoModel.Common.EndpointSelector.ctor (context, ManagementModelEntities, String selectionFilter)

    at DynamicOps.VCNSModel.Activities.VcoNsxHelper.VcoNsxConnectionInfo.GetVcoEndpoint (ManagementModelEntities managementDataContext, Guid virtualMachineId)

    at DynamicOps.VCNSModel.Activities.VcoNsxHelper.VcoNsxConnectionInfo.GetConnection (ManagementModelEntities managementDataContext, point endpoint VCNSEndpoint, Guid virtualMachineId)

    at DynamicOps.VCNSModel.Workflows.vSphereVCNSInventory_CompiledExpressionRoot.vSphereVCNSInventory_CompiledExpressionRoot_TypedDataContext3_ForReadOnly.__Expr21Get)

    at DynamicOps.VCNSModel.Workflows.vSphereVCNSInventory_CompiledExpressionRoot.InvokeExpression (Int32 expressionId, IList 1 locations, ActivityContext activityContext)

    to Microsoft.CSharp.Activities.CSharpValue'1.Execute (CodeActivityContext context)

    to System.Activities.Runtime.ActivityExecutor.ExecuteInResolutionContext [T] (ActivityInstance parentInstance, activity 1 expressionActivity)

    to System.Activities.InArgument'1.TryPopulateValue (LocationEnvironment targetEnvironment ActivityInstance activityInstance ActivityExecutor executor)

    to System.Activities.ActivityInstance.InternalTryPopulateArgumentValueOrScheduleExpression (RuntimeArgument argument, Int32 nextArgumentIndex, ActivityExecutor executor, IDictionary 2 argumentValueOverrides, place resultLocation, Boolean isDynamicUpdate)

    to System.Activities.ActivityInstance.ResolveArguments (ActivityExecutor executor, IDictionary 2 argumentValueOverrides, place resultLocation, Int32 startIndex)

    to System.Activities.Runtime.ActivityExecutor.ExecuteActivityWorkItem.ExecuteBody (ActivityExecutor executor, BookmarkManager bookmarkManager, location resultLocation)

    We use a distributed deployment of vRA 7 and have 2 devices with the built-in vro. Both devices show the service as running vco-server, and I can connect to each instance of vco using the orchestrator client. Also the asax component can load workflows vro. I am able to navigate to the inventory.

    Also, we noticed this problem after one of our servers of iaas is dead on us. We had to rebuild a starting from scratch and shiv inside. It was the Manager node, then this is the EDO, DEM and Manager of services that run on it. Not sure if this is related, it's just that we noticed after. It could occurred earlier also...

    Any suggestions on where to look to refine this would be greatly appreciated.

    Thank you

    Darrenoid

    Thank you for your response.

    I finally understood that this morning. I searched in the /var/log/vco/app-server/server.log on the vra devices and found errors like this:

    2016-05-21 08:31:33.345 - 0700 [http-nio-127.0.0.1-8280-exec-10] ERROR {} [[restServlet]] Servlet.service () for servlet [restServlet] in the context of path [/vco] has thrown the exception [processing request failed, the nested exception is java.lang.NullPointerException] origin

    java.lang.NullPointerException

    at com.vmware.o11n.web.util.CommonUtil.getServerConfiguration(CommonUtil.java:44)

    at com.vmware.o11n.web.plugins.PluginController.listAllPlugins(PluginController.java:116)

    at sun.reflect.GeneratedMethodAccessor347.invoke (unknown Source)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)

    at java.lang.reflect.Method.invoke(Method.java:497)

    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:221)

    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:137)

    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:110)

    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:806)

    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:729)

    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:85)

    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:959)

    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:893)

    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)

    at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:861)

    at javax.servlet.http.HttpServlet.service(HttpServlet.java:622)

    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)

    at javax.servlet.http.HttpServlet.service(HttpServlet.java:729)

    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:291)

    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)

    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52)

    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:239)

    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)

    to org.springframework.security.web.FilterChainProxy$ VirtualFilterChain.doFilter (FilterChainProxy.java:316)

    at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:126)

    at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:90)

    to org.springframework.security.web.FilterChainProxy$ VirtualFilterChain.doFilter (FilterChainProxy.java:330)

    at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:114)

    to org.springframework.security.web.FilterChainProxy$ VirtualFilterChain.doFilter (FilterChainProxy.java:330)

    at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:111)

    to org.springframework.security.web.FilterChainProxy$ VirtualFilterChain.doFilter (FilterChainProxy.java:330)

    at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:169)

    to org.springframework.security.web.FilterChainProxy$ VirtualFilterChain.doFilter (FilterChainProxy.java:330)

    at org.springframework.security.web.authentication.www.BasicAuthenticationFilter.doFilterInternal (BasicAuthenticationFilter.java:158)

    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)

    to org.springframework.security.web.FilterChainProxy$ VirtualFilterChain.doFilter (FilterChainProxy.java:330)

    at com.vmware.o11n.web.auth.http.TokenAuthenticationFilter.doFilter(TokenAuthenticationFilter.java:97)

    to org.springframework.security.web.FilterChainProxy$ VirtualFilterChain.doFilter (FilterChainProxy.java:330)

    at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:64)

    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)

    to org.springframework.security.web.FilterChainProxy$ VirtualFilterChain.doFilter (FilterChainProxy.java:330)

    at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:53)

    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)

    to org.springframework.security.web.FilterChainProxy$ VirtualFilterChain.doFilter (FilterChainProxy.java:330)

    at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:91)

    to org.springframework.security.web.FilterChainProxy$ VirtualFilterChain.doFilter (FilterChainProxy.java:330)

    at org.springframework.security.web.access.channel.ChannelProcessingFilter.doFilter(ChannelProcessingFilter.java:152)

    to org.springframework.security.web.FilterChainProxy$ VirtualFilterChain.doFilter (FilterChainProxy.java:330)

    at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:213)

    at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:176)

    at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:346)

    at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:262)

    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:239)

    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)

    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:85)

    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)

    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:239)

    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)

    at org.springframework.web.filter.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:77)

    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)

    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:239)

    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)

    at com.vmware.o11n.json.DefaultJsonVersionHeaderFilter.doFilter(DefaultJsonVersionHeaderFilter.java:95)

    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:239)

    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)

    at com.vmware.o11n.web.cluster.RestActiveNodeFilter.doFilter(RestActiveNodeFilter.java:50)

    at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:346)

    at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:262)

    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:239)

    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)

    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:219)

    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:106)

    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:614)

    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:142)

    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:79)

    at org.apache.catalina.valves.RemoteIpValve.invoke(RemoteIpValve.java:676)

    at org.apache.catalina.valves.AbstractAccessLogValve.invoke(AbstractAccessLogValve.java:616)

    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:88)

    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:518)

    at org.apache.coyote.http11.AbstractHttp11Processor.process(AbstractHttp11Processor.java:1091)

    to org.apache.coyote.AbstractProtocol$ AbstractConnectionHandler.process (AbstractProtocol.java:673)

    to org.apache.tomcat.util.net.NioEndpoint$ SocketProcessor.doRun (NioEndpoint.java:1526)

    to org.apache.tomcat.util.net.NioEndpoint$ SocketProcessor.run (NioEndpoint.java:1482)

    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)

    to java.util.concurrent.ThreadPoolExecutor$ Worker.run (ThreadPoolExecutor.java:617)

    to org.apache.tomcat.util.threads.TaskThread$ WrappingRunnable.run (TaskThread.java:61)

    at java.lang.Thread.run(Thread.java:745)

    I searched google for the first line in the stack trace 'com.vmware.o11n.web.util.CommonUtil.getServerConfiguration' and came across this recent article from VMWare:

    https://KB.VMware.com/selfservice/microsites/search.do?language=en_US&cmd=displayKC&externalID=2145044

    That fixed it for me, now the collection of data on the endpoint vro works.

    Kind regards

    Darrenoid

Maybe you are looking for

  • PowerPoint 2007

    When I try to open a presentation in PowerPoint 2007, I receive the following error message: PowerPoint found unreadable content in Presentation.pptx. You want to recover the contects of this presentation? If you trust the source of this presentation

  • The USB IMAQ camera driver

    I read a lot of discussion on the issue of the compatibility of driver usb IMAQ and im still looking for a solution for my problem. IAM using labview 2011 on windows 7 and im trying to use a usb webcam in my labview program and it requires to install

  • First round with resampling of wave and the memory is full error

    Hi all I have a little problem with my VI that I don't understand. I'm doing a motor controller application that can take a random waveform and TTL signals for a motor controller. It's all good, but the first time I run VI I get a memory full error (

  • Access to portable XP Windows 7 computer machine.

    I have a Win XP Desktop connected to a Brother Laser printer.  I want to share files and printer with a Windows 7 laptop (wireless).  I accessing specific files on the XP but impossible to browse and printer is not found.  Get the error "access denie

  • Windows 7 and HP LaserJet 4 Plus

    I have a new laptop with windows 7 and a printer LaserJet 4 Plus old (but very reliable).  I managed to download drivers from the HP site, but it still won't print.  I get no error messages, just nothing happens when I try to print a document or test