Need to collect data every hour

Hello

I'm relatively new to labVIEW and need help with this particulare VI. It is configured to collect data of vibration at noon and midnight. What I need to be able to have it changed so I would be able to collect data from every 1 hr. And eventaully I want to collect every 4 hours. Any help would be appreciated.

I would be created something like this:

The seconds time lets get a cluster of the time.  We just need the hours, Minutes and seconds of the cluster.  For the hours, use the Quotient and remainder divided by what you increment.  Add remaining with the seconds and minutes.  If the sum is 0, then you can start your recording.

Tags: NI Software

Similar Questions

  • Recording of data every hour, labview stops responding when the program stopped

    Hello. I'm doing a labview program to read the data and recording to a PDM file every hour for as long as it runs. First of all, I wanted to test it on every 15 minutes to work the bugs how. I made the attached VI and simulated data. It works fine but when I press the stop button to stop the program, the mouse cursor becomes the "wait cursor" and it remains like that until the program says "(ne répond pas) ' and then it crashes." Needless to say that the data is not recorded or corrupt. Do not do this with shorter time intervals (say, record data every 15 seconds). Is the long time period why its happening? Is there a better way to address the issue? Thank you!


  • need to record the data every second

    Hello

    So far so good with writing this simple .vi. I just have a problem. I need to record data every second. I use FieldPoint for thermocouple output signals. MAX is reading everything very well (I'm ambient recording, it is fondant between 80-83, so I put my stop for 83) and I can usually run the program for 5-10 seconds before my structure case is set to false and stops the .vi. When I open the file, I get data decimated. I tried a delay time and always the same. Not only she is decimated, but it does not record every second but between 5 to 10 seconds.

    How can I fix?

    .VI attached as well as the data element

    Thank you very much


  • A table of partitioning, as every hour

    Hello

    I want to create a table and this table has a 24 (fixed) partitions for data every hour. If the partition column (date type) key is equal to '2009-01-17 01:05:09 ', it must be written second partition. If key of partition column equals '2009-01-17 00:05:08 ', it must be written first partition, even if the partition key is equal to "2009-01-24 00:35:47"it must be written to new first partition. How can I create this partitioned table? If we have a chance to write the substr function in the partition key, I could handle by using the partitioning of the list, but there is no chance to write a function in the column name partitoin except the to_date function key. Can you give me an idea or an example?

    I use Oracle 11.1.0.7.

    Thank you.

    Hoek wrote:
    Hello

    (Given that you're on 11g and I'm not, I can't give some info tested)

    Before 11g, it was not possible to partition by a function.
    http://asktom.Oracle.com/pls/asktom/f?p=100:11:0:P11_QUESTION_ID:1612281449571 #378322100346018401

    But maybe you could try also:

    not tested

    create table t( dt date )
    partition by list (to_char(dt, 'hh24'))
    (
    partition h01 values ('1'),
    partition h02 values ('2'),
    partition h03 values ('3'),
    partition h04 values ('4'),
    partition h05 values ('5'),
    --etc...
    )
    /  
    

    I don't think that this is possible even in 11g. But you're heading in the right direction. Tom probably meant was partitioning by virtual columns that both have have been introduced in 11 g (virtual columns and partitioning by virtual columns).

    Something like this maybe:

    drop table test_part_virtual_column purge;
    
    create table test_part_virtual_column
    (
    col1 date not null,
    col2 varchar2(20),
    col3 as (to_char(col1, 'HH24'))
    )
    partition by list (col3)
    (
    partition p_00 values ('00'),
    partition p_01 values ('01'),
    partition p_02 values ('02'),
    partition p_03 values ('03'),
    partition p_04 values ('04'),
    partition p_05 values ('05'),
    partition p_06 values ('06'),
    partition p_07 values ('07'),
    partition p_08 values ('08'),
    partition p_09 values ('09'),
    partition p_10 values ('10'),
    partition p_11 values ('11'),
    partition p_12 values ('12'),
    partition p_13 values ('13'),
    partition p_14 values ('14'),
    partition p_15 values ('15'),
    partition p_16 values ('16'),
    partition p_17 values ('17'),
    partition p_18 values ('18'),
    partition p_19 values ('19'),
    partition p_20 values ('20'),
    partition p_21 values ('21'),
    partition p_22 values ('22'),
    partition p_23 values ('23')
    );
    
    insert into test_part_virtual_column (col1, col2) values (to_date('17/01/2009 01:05:09', 'DD/MM/YYYY HH24:MI:SS'), '1');
    
    insert into test_part_virtual_column (col1, col2) values (to_date('17/01/2009 00:05:08', 'DD/MM/YYYY HH24:MI:SS'), '2');
    
    insert into test_part_virtual_column (col1, col2) values (to_date('24/01/2009 00:35:47', 'DD/MM/YYYY HH24:MI:SS'), '3');
    
    commit;
    
    exec dbms_stats.gather_table_stats(null, 'test_part_virtual_column')
    
    select partition_name, num_rows from user_tab_statistics where table_name = 'TEST_PART_VIRTUAL_COLUMN';
    

    In pre - 11 g a trigger might help:

    drop table test_part_nonvirtual_column purge;
    
    -- pre 11g with trigger
    create table test_part_nonvirtual_column
    (
    col1 date not null,
    col2 varchar2(20),
    col3 varchar2(2) not null
    )
    partition by list (col3)
    (
    partition p_00 values ('00'),
    partition p_01 values ('01'),
    partition p_02 values ('02'),
    partition p_03 values ('03'),
    partition p_04 values ('04'),
    partition p_05 values ('05'),
    partition p_06 values ('06'),
    partition p_07 values ('07'),
    partition p_08 values ('08'),
    partition p_09 values ('09'),
    partition p_10 values ('10'),
    partition p_11 values ('11'),
    partition p_12 values ('12'),
    partition p_13 values ('13'),
    partition p_14 values ('14'),
    partition p_15 values ('15'),
    partition p_16 values ('16'),
    partition p_17 values ('17'),
    partition p_18 values ('18'),
    partition p_19 values ('19'),
    partition p_20 values ('20'),
    partition p_21 values ('21'),
    partition p_22 values ('22'),
    partition p_23 values ('23')
    );
    
    create trigger trg_test_part_nonvirtual_col
    before insert
    on test_part_nonvirtual_column
    for each row
    begin
      :new.col3 := to_char(:new.col1, 'HH24');
    end;
    /
    
    insert into test_part_nonvirtual_column (col1, col2) values (to_date('17/01/2009 01:05:09', 'DD/MM/YYYY HH24:MI:SS'), '1');
    
    insert into test_part_nonvirtual_column (col1, col2) values (to_date('17/01/2009 00:05:08', 'DD/MM/YYYY HH24:MI:SS'), '2');
    
    insert into test_part_nonvirtual_column (col1, col2) values (to_date('24/01/2009 00:35:47', 'DD/MM/YYYY HH24:MI:SS'), '3');
    
    commit;
    
    exec dbms_stats.gather_table_stats(null, 'test_part_nonvirtual_column')
    
    select partition_name, num_rows from user_tab_statistics where table_name = 'TEST_PART_NONVIRTUAL_COLUMN';
    

    To the OP: why do you think you really need your table of partition by hours? Are you sure that this partitioning scheme is useful for the treatment of your data?

    Kind regards
    Randolf

    Oracle related blog stuff:
    http://Oracle-Randolf.blogspot.com/

    SQLTools ++ for Oracle (Open source Oracle GUI for Windows):
    http://www.sqltools-plusplus.org:7676 /.
    http://sourceforge.NET/projects/SQLT-pp/

  • "No devices found, startup click on any key to restart Machine." & "audit of the media [impossible]. & ":( Your PC of Ran into a problem & needs to restart. "Error messages occur every hour.

    Hello

    I was browsing the web when suddenly an error message came up saying ": () your PC of Ran into a problem and must restart." We are only collecting the error information, and then we'll restart for you (0% complete). If you want to learn more, you can search online later to this error. KERNEL_DATA_INPAGE_ERROR"then he gave a black screen and says"Checking Media [Failed] ". Then he showed the logo Dell my computer, (the usual start screen), and then the screen disappeared. About 5 seconds later, another black screen (just like the "[Failed] Media Control" screen came saying "No Boot Device Found, Click Any Key To Reboot Machine".) I follow on the orientation of the screen for about 5 minutes and it kept giving me the same screens over and over again, no change there view. So I turned off my laptop, waited 30 seconds, back running the computer and he gave "[Failed] Media Control" Message twice, he disappeared and the Dell splash screen came again, he let me not log my computer as usual. This happened to me twice now, and it's extremely frustrating, because now I can't be on my computer for more than a half hour at a time without him doing this again. Also I can't scan the computer for viruses, it's 15 minutes to finish scanning and I get the message 'PC Ran into A Problem'. Can someone please help me understand why this is happening? Very much appreciated.

    -Austin screw

    Hello

    I apologize for the late response.

    What is the current status of the issue?

    Unplug all external devices connected to the computer except the mouse and keyboard and check for the issue.

    I also suggest you to start the computer in safe mode and check.

    Start settings for Windows (including safe mode)

    http://Windows.Microsoft.com/en-us/Windows-8/Windows-startup-settings-including-safe-mode

    KERNEL_DATA_INPAGE_ERROR error code indicates that the data page of the kernel of the required paging file cannot be read into memory. It could have happened due to graphics card drivers.

    Bug CRITICAL_PROCESS_DIED control has a value of 0x000000EF. This indicates that a critical system process died.

    See also:

    Bug Check 0x19: BAD_POOL_HEADER
    http://msdn.Microsoft.com/en-us/library/Windows/hardware/ff557389 (v = vs. 85) .aspx

    If you are able to start the computer in safe mode, we need to collect some newspapers of the dump files created to analyze.

    Hope this information helps. Response with status so that we can help you.

  • I need my Vi to save only one point of data every 30 seconds

    Hello

    I have trouble getting my VI to make only one point of data every 30 seconds. I collect a couple and the temperature. If you take a look at the queue of lvm, you will see that I have two data points every 30 seconds. I want only the VI to take one. I can do this by going to the DAQ assistant and change the mode of acquisition of N samples 1-sample (on request), but if I do this I am not able to see my couple of graph in real time.  In addition the VI takes data about every 30 seconds. Is there a way I can strengthen this also?

    1. change your graph of couple to be a graph.  A graph has a history associated with him, so he keeps old values in a circular buffer for you.  A chart shows just the last thing written in it.

    2. change your sample of Compression to be 64.  It is currently set at 30, which means that you will end up with 2 samples in your data.  That's why you write 2 samples when write you it.

  • Collect data from specific frequency of the power spectrum

    Hello

    I want to know how to collect data from specific frequency of power spectrum file. I'm trying to separate data from specific frequency of the original file.

    This will depend on much how your data is stored. You will need a way to read the file in LabVIEW and then a way to identify the data you want. I often record data in a .csv file, then I use "Reading worksheet" to get the data in a table. Then, you can simply use 'Index Array' to get the datapoints you need.

  • How to collect data on the programs of LabView and VC ++ at the same time?

    Hello

    There are two programs in LabVIEW and another is in VC ++. The two programs to collect hardware data.

    Therefore, for the experience, it is necessary to begin to collect data at the same time and lag must be

    less than millisecond (it is essential for the experience). How can this be achieved? BTW, I'm new to LabView.

    I think on the use of network socket to get the message for both applications.

    I was wondering if there is a better way.

    Thank you.

    MARK002-MAB wrote:

    Hello

    There are two programs in LabVIEW and another is in VC ++. The two programs to collect hardware data.

    Therefore, for the experience, it is necessary to begin to collect data at the same time and lag must be

    less than millisecond (it is essential for the experience). How can this be achieved? BTW, I'm new to LabView.

    I think on the use of network socket to get the message for both applications.

    I was wondering if there is a better way.

    Thank you.

    You do not say if two programs access the same material, but I guess not. Because if they did, you probably get conflicts when the two programs try to access the same material at the same time.

    In either case, the only really reliable way to ensure that your needs of< 1ms="" would="" be="" hardware="" triggering.="" one="" hardware="" unit="" is="" programmed="" to="" provide="" a="" hardware="" trigger,="" typically="" a="" digital="" signal="" and="" the="" other="" is="" programmed="" previous="" to="" the="" desired="" start="" point,="" to="" wait="" for="" that="" trigger="" and="" start="" automatically="" when="" it="" is="" received.="" if="" both="" hardware="" units="" are="" ni="" daq="" cards="" you="" can="" do="" that="" fairly="" easily="" using="" the="" rtsi="" bus="" or="" in="" case="" of="" pxi="" the="" pxi="" trigger="" lines.="" if="" they="" are="" different="" hardware="" then="" it="" can="" get="" more="" complicated="" to="">

  • Restart the computer every hour

    My computer restarts its self every hour on the hour. The first time I had this problem, I have re-installed Windows 7 64 bit because I wasn't sure the copy that is given to me. It worked great for a few months and yesterday that he started to do it again. I sleep off, screen never goes out, also I have it so it does not automatically restart, but it's almost as if I hold the power button to turn off. The only warning I get is the power will be rev and just restart. If I could get any help, it would be greatly appreciated.

    Critical Kernel-Power 41 05/04/2011-08:51:27 (63)
    Critical Kernel-Power 41 05/04/2011-07:51:37 (63)
    Critical Kernel-Power 41 05/04/2011-06:51:19 (63)
    Critical Kernel-Power 41 05/04/2011-05:51:02 (63)
    Critical Kernel-Power 41 05/04/2011-04:50:45 (63)
    Critical Kernel-Power 41 05/04/2011-03:50:27 (63)
    Criticism 05/04/2011 02:50:08 Kernel-Power 41 (63)
    Criticism 05/04/2011 01:49:50 Kernel-Power 41 (63)
    Critical 05/04/2011 12:49:32 AM Kernel-Power 41 (63)
    Critical Kernel-Power 41 04/04/2011-23:49:15 (63)
    Critical Kernel-Power 41 04/04/2011-22:48:58 (63)
    Critical Kernel-Power 41 04/04/2011-21:48:39 (63)
    Critical Kernel-Power 41 04/04/2011-20:48:21 (63)
    Critical Kernel-Power 41 04/04/2011-19:48:01 (63)
    Critical Kernel-Power 41 04/04/2011-18:47:44 (63)
    Critical Kernel-Power 41 04/04/2011-17:47:26 (63)
    Critical Kernel-Power 41 04/04/2011-16:47:08 (63)
    Critical Kernel-Power 41 04/04/2011-15:46:46 (63)
    Critical Kernel-Power 41 04/04/2011-14:46:33 (63)
    Critical Kernel-Power 41 04/04/2011-13:46:16 (63)
    Critical Kernel-Power 41 04/04/2011-12:45:58 (63)
    Critical Kernel-Power 41 04/04/2011-11:45:44 (63)

    ------------------------------------------------------------------

    Log name: System
    Source: Microsoft-Windows-Kernel-Power
    Date: 05/04/2011 08:51:27
    Event ID: 41
    Task category: (63)
    Level: critical
    Key words: (2).
    User: SYSTEM
    Computer: Tabby-PC
    Description:
    The system has rebooted without judgment properly first. This error can be caused if the system unresponsive, crashed or unexpected power loss.
    The event XML:

     
       
        41
        2
        1
        63
        0
        0 x 8000000000000002
       
        8237
       
       
        System
        Tabby-PC
       
     

     
        0
        0 x 0
        0 x 0
        0 x 0
        0 x 0
        fake
        0
     

    Heating issues - read this link unexpected shutdown

    To isolate a possible software problem, then follow the steps recommended in the Windows Explorer has stopped working [don't be put off by the title, it has a much wider applicability].

  • Windows 8 freezes and gives the Blue error screen every hour approximately

    Hello guys. I have a problem with my system: windows 8 freezes and gives the Blue error screen every hour or more. usually it freezes, displays a blue error screen (clock watchdog timeout knode or not handled exception or something on a system request), I force restart it, and then it happens again (sometimes 3 - 4 times in a row, then it will be fine for another time). Here is the link to my dump leader : https://www.dropbox.com/s/uv27xr54esjlen0/MEMORY.DMP?dl... . The machine I built myself: amd fx 8350, card mother m5a97, dvd - r, 1 ssd, 1 hdd, PSU 500w, gtx 650 ti video. Also, here is a report of CPU monitor ID: https://www.dropbox.com/s/k1ma0m6maap404q/HWMonitor.txt... . I have already done all the windows, direct x updates and drivers and ran ideas
    If anyone has advice like how to do to solve this problem, please help me because I'm going crazy.

    Thank you.

    AS

    DMP file is corrupted and useless.  Please reconfigure your system for dmp files small as described in this wiki


    Please follow our instructions to find and download the files, we need to help you fix your computer. They can be found at here

    If you have any questions regarding the procedure, please ask

    Please provide us with your administrative Event Viewer logs by following these steps:
    Press Win + 'R' and type eventvwr > enter
    Expand custom views
    Click the administrative events
    Right-click Administrative events
    Record all events in custom view as...
    Save them to a folder where you will remember which folder and save it as Errors.evtx
    Go where you saved Errors.evtx
    Make a right click Errors.evtx-> send to compressed (zipped) folder of->
    Download the .zip for Onedrive or a file sharing service file and link to it in your next post

    *
    If you have updated to win 8.1 and you get the error message " " " the system cannot find the specified file" it is a known problem.  The work around is to change the registry.  If you are not comfortable doing this DON'T.  If you are, save the key before making
    Press Win + 'R' and enter regedit


    Navigate to:
    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WINEVT\Channels. Delete "Microsoft-Windows-DxpTaskRingtone/analytical.


  • Collect data through HTML form using the Web content viewer?

    I have a folio that is perceived through the content viewer Adobe, built with Digital Publishing Suite. I have a registration form where I'll need to collect responses from people and their contact information. I have a HTML file that I placed in InDesign, and rail shape. But how can we content submitted through sending form through my email? I need a PHP file as well?

    If you create a form, for example, with action = "mailto:[email protected]" method = "POST" all elements inside the form entry will be enters the body of the message.

    However, the disadvantage is that the user will have its own program by default mail which will open (focus) web viewer and try to send the mail + which is more annoying, is that data are in the post office, so that you can not use automatically.

    a form to a php file action would be something more useful (and would also be an approach I would do).

  • Switch redo logs every hour to provide point-in-time?

    Hi all

    Oracle 11G on Windows 2008 R2

    I I learn the details of the backup/restore management and want to be able to provide a good point-in-time capacity in the event of a disaster. It is advisable to plan a hourly job making ALTER SYSTEM SWITCH LOGFILE;? This causes the redo log archiving every hour so if I need to restore, I know that I can restore at least the previous hour (using newspapers to archive) and before?

    Thanks in advance

    From time to time, this may come as a result of the excessive workload. Having the EA edition, having defined FAST_START_MTTR_TARGET? If Yes, you can take use Advisor Redo Log suggest the adequate size of logs again for you. A safer side, you can also increase the size of f they are greater as 1gig and order the rate switching by using the parameter Archive_lag_Target.

    HTH

    Aman...

  • Instant orphaned files - need to recover data on the basic disk

    Hello

    I'm sure this has been asked several times before, but how merge content from an instant orphan to the basic disk?

    Reading over there seem to be several different methods to do so.

    I have a virtual machine with three RDM, the virtual machine is running at the wide base VMDK disks but there is a single snapshot file associated with each base VMDK, snapshots do not appear in the Snapshot Manager.

    I tried to change the snapshot. The VMDK files and change the parent CIDs for the basic disk, but still not instant show in the Snapshot Manager.

    Is the best way to stop the virtual machine, remove the inventory and then add it to the inventory, I don't see the shots if the parent CID is correct?

    What is a better method?

    2. turn off then turn off the virtual machine (if it is not already off). Stop the current virtual machine with any Active snapshots.

    3. once the virtual machine is completely turned off, create a unique snapshot of the virtual machine and do not feed upward after this step.

    4 browse your data store for the virtual machine and look for the numbers you hard files. Instant latest should only be a few megabytes, and you want one that is just before that.

    5. go to the command line console and edit the .vmx for your virtual machine in the container for data store. Looking for a similar article to the following for each of your virtual disks.

    scsi0:0.present = "true"
    scsi0:0.fileName = "???-00002.vmdk"
    scsi0:0.deviceType = "scsi-hardDisk"

    You want to change the "scsi0:0.fileName =" section under the same file name that you found in step 4. You will need to repeat this in the file for each virtual disk on your VM.
    Save the .vmx file, overwriting the original.

    6. now, it will be a long process, if the hard files are large (more than 20 concerts) and can last several hours. During this process, you may lose connectivity to your ESX Server on the client of the infrastructure. What you need to do is run the below command from within the container to store the virtual machine data.

    vmware-cmd <your .vmx file> removesnapshots

    7. once the previous step is complete, check your VM settings in client infrastructure and check that your virtual disks are now pointing to the original hard file (does not contain de-00001 etc.). If everything was successful, you should be able to power to the top of your VM.

    8. once the virtual machine is running and check the operation, you can remove the last numbered - 0000x.vmdk that was created from your snapshot in the third stage (should only be a few megabytes). This file must have been ignored by the instant withdrawal because you have changed the .vmx file.

    Question I have is if the basic disk has been changed today I lose all changes today when merging the snapshots (which have not been written to since 18:00 yesterday)- or will be the basic disk back to 18:00 yesterday and lose all changes today?

    If you need to extract data from instant orphans, you know that you can NOT do without altering the current state
    new files from today will still be there - but they are not referenced in the MFT and other pieces are replaced by old data of the orphan snapshot
    If you must do this with a backup...

    or - possibly use a snashot of the RDM, as it is now...

    in any case – which gives good advice is almost impossible without sitting in front of the case

  • The Web Cache instance is out of service every hour

    Hello
    I have 11.1.0.1 on Solaris 10 SPARC EM grid control. All the patches in the applied SGD.
    I have problem with monitoring application 10.1.0.1 on Solaris 10 x 86 Server. Agent 11.1.0.1.
    emagent.TRC:
    2011-01-11 10:27:57, 745 ERROR Thread-440 engine: [Cache oracle_webcache, reports.sun - rep_Web, ESI_HIST]: nmeegd_GetMetricData failed: java.lang.NullPointerException
    2011-01-11 10:27:57, collector of Thread - 440 WARN 745: < nmecmc.c > output error. Error: java.lang.NullPointerException

    I get alerts every hour with "the Web Cache instance is down".
    Help, please.

    If the agent gets really restarted several times a day (every hour for example) which is certainly not expected behavior...

    I found this - perhaps it helps:
    (you should check your mentioned errors log files)

    The 11g EM Agent restarts at frequent intervals with the following entries in the /sysman/log/emagent.nohup file of

    emagent started successfully
    URLTiming: Using SunX509
    Exception in thread "oracle.dms.collector.GatherThread@15000".
    java.util.ConcurrentModificationException
    to java.util.HashMap$ HashIterator.nextEntry (HashMap.java:793)
    to java.util.HashMap$ EntryIterator.next (HashMap.java:834)
    to java.util.HashMap$ EntryIterator.next (HashMap.java:832)
    at oracle.dms.collector.Gatherer.cleanup(Gatherer.java:235)
    at oracle.dms.collector.GatherThread.run(GatherThread.java:85)
    -Recycling process. VMSize is 6385.46875 MB increased 6327.09375 MB
    past 3 -.
    -Thu Jul 15 02:14:08 2010::Received asks to restart EMAgent: 12200
    -----
    -Thu Jul 15 02:14:08 2010::Stopping EMAgent: 12200 -.
    (pid = 12200): emagent now go out normally

    The new start above occurs when the virtual memory consumed by the Agent have crossed the line and that's why he is automatically restarted by the daemon process.

    -The /sysman/log/emagent_fetchlet.trc also shows a lot of errors related to the JNIFetchlet:

    [nmefmgr_getJNIFetchlet] Warn emd.fetchlets getMetric.387 - oracle.sysman.emSDK.emd.fetchlet.FetchletException:
    oracle.sysman.emSDK.emd.fetchlet.FetchletException: java.io.IOException:
    Cannot connect to any host
    oracle.sysman.emSDK.emd.fetchlet.FetchletException:
    oracle.sysman.emSDK.emd.fetchlet.FetchletException: java.io.IOException:
    Cannot connect to any host
    to
    ..............
    [nmefmgr_getJNIFetchlet] WARN JMX.generic logp.251 - IOException: can not connect to the target with
    serviceURL=service:jmx:t3s://agentmachine.domain:7101/jndi/weblogic.management.mbeanservers.runtime for weblogic_j2eeserver:server metric:
    Unable to connect to any host Cause: javax.naming.NamingException: unable to connect to any host [root exception is org.omg.CORBA.COMM_FAILURE: vmcid:]
    [Minor SUN code: 203 out: No.]

    -Historical data for the "use of memory resident (%) 'or' memory use virtual growth (%) ' parameters for this Agent show large memory
    use over the period, when the Agent has increased.
    These details are accessible from the configuration of Console grid-> Agents-> click on the name of the Agent-> click on 'All settings'-> Expand ' Agent process
    Statistics-> click on the "use of memory resident (%) 'or' memory use virtual growth (%) '.

    Cause
    This issue has been studied in the Bug 9829732: AREA of SGD AGENT 11.1.0.1 RUNNING ON CONSUMED the UPPER MEMORY

    Using pmap to check the memory usage:

    $ ps - ef | grep agent11g
    PMAP $

    Returns a result as below:

    ....
    00002aaab32e0000 rwx 21248-[anon]
    00002aaab47a0000 rwx 64768-[anon]
    00002aaab86e0000 125632 rwx-[anon]
    00002aaac0190000 1884160 rwx-[anon]
    00002aab33190000 rwx 62784-[anon]
    00002aab36ee0000 942080 rwx-[anon]
    .....

    It was found that the majority of virtual memory has been consumed by these [anon] blocks.

    It was found that the memory of Java used by the Agent when using JNI calls must be tuned. This may be necessary when the large number of "java" such as Weblogic servers targets is monitored by the Agent.

  • My verse ATT modem (non apple devices to use this modem} is connected to the ATT line, Time Capsule (iPhones, Macs Time Capsule use) via ethernet Uverse.) Non apple devices can collect data from iPhones or Mac using the time Capsule?

    My verse ATT modem ({use of devices not apple wifi of this modem} is connected to the ATT line, Time Capsule (iPhones, Macs use the wifi of the time Capsule) and connect to the Uverse modem via ethernet.)

    Both devices are set to the highest security and each uses separate passwords.

    Non apple devices can collect data from iPhones or Mac using the time Capsule?

    With a bit of work by someone who knows how to do such things, not Apple computers could read some files on the Mac if file sharing is configured on the network... devices non-Apple and... He knew the device passwords or administrator for Macs.

    Mac could also play the files on other Macs if file sharing has been implemented and the device password or admin was known.

    If you ask if a PC can read the files on the Time Capsule, the answer is Yes, without doubt, assuming that the PC knew the password of device for the time Capsule.

Maybe you are looking for