Monitor disk usage using snmp on the IPS 5.1 sensor

Hi
I was wondering if it is possile to monitor the diskspace on the partitions of the sensor by using the built in snmpd on the IPS 5.1 sensor appliance. When i try to snmpwalk the sensor i cant see the usual net-snmp stuff.
The "cisco.ciscoMgmt.ciscoCidsMIB" entries are showing up nicely but they dont give any output concerning the disk in the sensor.

I assume you're talking about scripting this? Probably the easiest thing to do would be to use Curl. I've attached an example. You'll need to change a couple values for it to work.
The output is different than what you'd get if you did a "df" using the service account. You'll have to decide which output you require.

Similar Messages

  • Difference between Available and Used in Info for MacIntosh HD and Space Free and Space Utilised under Activity Monitor, Disk Usage?

    I have a MacBook Air 2010, upgraded to OSX Version 10.8.4.  When I click the Macintosh HD and then look under Info, it says I have 120.47GB capacity, Available 60.97GB, Used 59.5GB.  However when I look under Activity Monitor, Disk Usage it says Space Utilised 92.18GB, Space free: 28.29GB.  Questions:
    Why the difference?
    Which is more important for computer speed?
    How to I reduce "Space Utlised" to closer to "Used"?  (I've already moved 25GB of the more bulky, less immediate data to external storage from the computer, including emptying IPhoto Trash and the main Trash.  The Space Utilised dropped only from 95GB to 92GB--while the Used space dropped from 85GB to 60GB.)

    Iheartapple1970
    Just to let you I tried the reindexing before the Mendes advice and it had no effect.  Of course, I may have done it wrong. It was the HD icon from the desktop which I dragged into the Privacy window of Spotlight (and then did the +, OK, - and close Spotlight).  Should I have dragged in something else?  Or opened up the HD and dragged in all the contents?
    Also, there is a small section in my HD which is for my wife's account which has a separate user name and password, although it has no data in it and I set it up while under my administrator account original, so my MacAir may think I still "own" it; in any case, I did not get any sort of error message saying I did not have ownership of the entire HD.

  • Excessive disk usage when I drag the log file viewer window (why)?

    When I drag the Log File Viewer window in Gnome, I get huge amounts of hard disk usage and the hard drive makes a loud rumbling noise. This happens only while dragging the Log File Viewer window and no other windows (that I've noticed so far).
    Why is this happening?
    Last edited by trusktr (2012-01-11 05:27:54)

    Elements11DRC
    What version of Premiere Elements are you working with and on what computer operating system is it running?
    Can we assume by your selected ID, that the program is Premiere Elements 11?
    Pending further details, I will assume that you are working with Premiere Elements 11 on Windows 7, 8, or 8.1 64 bit.
    Where is this "My Videos" Folder - on a DVD disc being used as a DataDisc for video storage purposes?
    If so, Add Media/DVD Camera or Computer Drive/Video Importer and from there automatically into the project in Project Assets as well as on the Timeline.
    If your "My Videos" Folder is a folder on the computer hard drive, then Add Media/Files and Folders to get the video into Project Assets from where you drag the video to the Timeline.
    Now for the video that you are trying to import...what are its properties
    Video Compression
    Audio Compression
    Frame Size
    Frame Rate
    Interlaced or Progressive
    File Extension
    Pixel Aspect Ratio
    Probably answered the easiest by knowing the brand/model/settings of the camera that recorded the video.
    Prime interest, that video compression. It could be MotionJPEG which can be problematic for Premiere Elements. It could be AVCHD.avi which cannot be imported.
    We can go into greater detail on your project details once we rule in or out any of the factors mentioned above.
    By the way, what is the destination for this project....burn to disc DVD or Blu-ray...export to file saved to the computer hard drive...other?
    More later.
    Thanks.
    ATR

  • Monitor ETL process using SNMP

    Hi,
    I have an ETL process that runs continuously and add lines to a table under Oracle 11g on Linux. I would like to monitor the proper operation of the ETL using an external SNMP manager (eg Zabbix). To do this the algorithm would be like this:
    - List and count lines that have been to the table durig the last n minutes;
    - Update an SNMP counter
    - Repeat every n minutes.
    I was thinking about creating a small Perl subagent for net-snmp that would execute an SQL query using JDBC, but is there a better way to do this? For instance by using an Ora

    I assume you're talking about scripting this? Probably the easiest thing to do would be to use Curl. I've attached an example. You'll need to change a couple values for it to work.
    The output is different than what you'd get if you did a "df" using the service account. You'll have to decide which output you require.

  • How to monitor query usage / query activity in the system?

    I am using 0TCT_MC01 to report the number of times the query was executed and by which user.
    According to SAP Documentation,
    The Technical Content for BI Statistics does not provide any standard queries for doing this. But you can easily create your
    monitoring query based on the InfoProvider 0TCT_MC01 or 0TCT_C01 by using the key figures 0TCTQUCOUNT (counts every
    navigation in a query) and 0TCTWTCOUNT (counts every call of a BI Application = initial opening of Workbook or Web Template).
    0TCTWTCOUNT is a key figure in the cube.  How to restrict this KF to display only Initial opening of Workbook or web template ?
    Regds,

    hi,
    Use the follwoing CHARS for restriction in report from cube 0TCT_VC01.
    0TCTBISOTYP --> Type of BI Application
    0TCTBIOTYPE --> Type of BI Application Object
    I hope it will help.
    Thanks,
    S

  • Monitor disk space using alerts

    I need to receive an email when a disk space on a given drive (which has SQL DB files) falls below 3 GB:
    - I need to use alerts (I don't want to use a SQL job to run some SP every x mins).
    - SQL Server performance condition alert cannot be used, because SQL cannot access non-SQL performance counters
    - if you use WMI event alert, please provide a query
    - registry cannot be modified (I know what you were thinking)
    Seems like a rather common DBA need, and I can't find a solution.  Thanks in advance.

    Try this SQL Server alert .You need to use database mail and then the operator to send the mail ..Modify it as I have kept the > 800 value and you need to use < sign ...
    USE
    [msdb]
    GO
    /****** Object: Alert [Low disk] Script Date: 07/12/2011 13:57:50 ******/
    EXEC
    msdb.dbo.sp_add_alert
    @name=N'Low
    disk',
    @message_id
    @severity
    =0,
    @enabled
    =0,
    @delay_between_responses
    =0,
    @include_event_description_in
    =0,
    @category_name
    =N'[Uncategorized]',
    @wmi_namespace
    =N'\\.\root\CIMV2',
    @wmi_query
    =N'select * from __instancemodificationevent within
    1 where targetinstance isa ''CIM_LogicalDisk'' and targetinstance.freespace > 800',
    @job_id
    =N'00000000-0000-0000-0000-000000000000' 
    GO
    Abhay Chaudhary OCP 9i, MCTS/MCITP (SQL Server 2005, 2008, 2005 BI) ms-abhay.blogspot.com/
    =0,

  • Monitoring of server using JMX and SNMP

    hi
    I want to monitor my server using SNMP to get the information about craches, response time etc of the server. What technology should I use to do the same? Can JMX help me for this and How?
    Thanks in advance
    kiran

    Hello Frederic,
    your request is a system monitoring request and not really a BPMon request. As BPMon is designed to monitor specific steps of a business process it doesn't make sense to use a wildcard for the object. A certain business process step like "Create Sales Orders" is only executed via certain transaction like VA01. So it would n't make sense to monitor also MM or PP transactions for the same process step. For this reason wildcards are not allowed.
    For your system monitoring problem you either use the normal CCMS monitor for Update Errors which counts all update errors in one system (and you can include the CCMS MTE in BPMon via the CCMS monitoring object) or you decide to use the BPMon Update error monitor for selected important transactions only.
    Anyhow you should first do a systematic error analysis with transaction SM13 why you encounter so many update errors at all and solve the root cause. 1000 Update errors is a very high/bad value even if you had a large system.
    Best Regards
    Volker

  • Monitoring Data Guard with SNMP?

    I have configured Data Guard within two Oracle environments and have written a small Perl script which monitors the applied log service and sends an email if something fails to be applied.
    I am assuming this is not the most efficient way of monitoring the systems and would like to use SNMP.
    Can anyone tell me if it is possible to monitor Data Guard using SNMP (traps)? If so would you know what documents are available?
    Cheers!

    Some of the parameters that you need to have with Physical standby database are :
    *.background_dump_dest='/ford/app/oracle/admin/xchbot1/bdump'
    *.compatible='9.2.0.7'
    *.control_files='/home30/oradata/xchange/xchbot1/control01.ctl','/home30/oradata/xchange/xchbot1/control02.ctl','/home30/orad
    ata/xchange/xchbot1/control03.ctl'
    *.core_dump_dest='/ford/app/oracle/admin/xchbot1/cdump'
    *.db_block_buffers=1024
    *.db_block_size=8192
    *.db_file_multiblock_read_count=8# SMALL
    *.db_files=1000# SMALL
    *.db_name='xchbot1'
    *.global_names=TRUE
    *.log_archive_dest_1='LOCATION=/home30/oradata/xchange/xchbot1/archivelog'
    *.log_archive_dest_2='SERVICE=standby'
    *.log_archive_dest_state_2='ENABLE'
    *.log_archive_format='arch_%t_%s.arc'
    *.log_archive_start=true
    *.log_buffer=16384000# SMALL
    *.log_checkpoint_interval=10000
    *.max_dump_file_size='10240'# limit trace file size to 5 Meg each
    *.parallel_max_servers=5
    *.parallel_min_servers=1
    *.processes=50# SMALL
    *.rollback_segments='rbs01','rbs02','rbs03','rbs04','rbs05','rbs06','rbs07','rbs08','rbs09','rbs10'
    *.shared_pool_size=67108864
    *.sort_area_retained_size=2048
    *.sort_area_size=10240
    *.user_dump_dest='/ford/app/oracle/admin/xchbot1/udump'

  • Using SNMP without Agent

    Hi,
    Is there any monitoring SUN software using SNMP without installing agents on the servers ??
    Regards
    Ehab

    Hi Ehab
    MISEHAB wrote:
    Hi,
    Is there any monitoring SUN software using SNMP without installing agents on the servers ?? Solaris does ship with a SNMP Agent out-of-the-box... but it only monitors a limited number of things by default. Or, if you have M-series hardware their XSCF's come with SunMC preinstalled as well: you don't have to install it yourself (and SunMC uses SNMP).
    If you mean monitor Sun software like web or directory servers... some of the older versions of those packages did include SNMP support... but modern versions are moving to other protocols like JMX.
    In general, the best monitoring comes from installing some sort of local Agent, either SunMC, Ops Center, or one of the many tools from Oracle partners (like Halcyon, who I work for)
    Regards,
    [email protected]

  • How to read MAC from Catalyst WS-C4507R using SNMP

    Hello!
    I would like to get all the connected mac addresses from a Switch using SNMP. The all ports are set up as a VLAN 10. VLAN 2 is used as management interface.
    #sh mac-address-table
    Unicast Entries
    vlan   mac address     type        protocols               port
    -------+---------------+--------+---------------------+--------------------
       2    0013.c3c2.1cbf    static ip,ipx,assigned,other Switch               
       2    c42c.030b.c1b5   dynamic ip,other              GigabitEthernet1/1   
      10    3c62.0078.44a7   dynamic ip                    FastEthernet3/4      
      10    3c62.0078.44aa   dynamic ip,other              FastEthernet3/4      
      10    3c62.0078.4b31   dynamic ip                    FastEthernet3/1      
      10    3c62.0078.4cb7   dynamic ip                    FastEthernet3/2      
    Multicast Entries
    vlan    mac address     type    ports
    -------+---------------+-------+--------------------------------------------
       1    ffff.ffff.ffff   system
       2    ffff.ffff.ffff   system Switch,Gi1/1
      10    0100.5e7f.fffa     igmp Fa3/4
      10    ffff.ffff.ffff   system Fa3/1,Fa3/2,Fa3/4
    I used to work with the following string on an old 2950 Switch SNMPv2-SMI::enterprises.236.4.1.8.7.7.10.1.2.1 but this string is not working on the 4500.
    Can anyone help me with my issue?
    Thank you,
    Andreas

    Hi kehander,
    Thanks for the reply. I tried filling a constant path with the Mac-defined path to a data file on the USB disk (ie "DATA2:file1.dat"). This resulted in the same error message.
    I then considered that maybe I was misinterpreting the LV error message, and that perhaps I was supposed to address the file using PC-notation (ie. "DATA2\file1.dat"), even though the app is running on a Mac. No joy with this, but I get a different error msg:
    "Error 1430 occurred at Open File
    Possible reason(s):
    LabVIEW:  The path is empty or relative. You must use an absolute path."
    Can you share what your reasoning was for your suggestion... I'm not sure I understand why a constant path would produce different results?

  • Shutdown service in ACE using SNMP

    Dear Mister
    Is possible to configure, shutdown a service using SNMP? More than this, in a context???
    I am searching the OIDs about it, but, I am not lucky.
    Regards and thank in advance

    Hi,
    I don't think so. You have list of MIB's available which can fetch data from ACE but there is no such provision to shut down the service using SNMP. The ACE supports traps and SNMP get requests but does not support set requests to configure values on the device. Please visit the below link for more information:
    http://www.cisco.com/c/en/us/td/docs/interfaces_modules/services_modules/ace/vA5_1_0/configuration/administration/guide/admgd/snmp.html
    Regards,
    Kanwal

  • It it a necessary to enable monitoring if we use  GATHER_SCHEMA_STATS?

    It it necessary to enable monitoring if you use GATHER_SCHEMA_STATS with the GATHER AUTO or GATHER STALE options? What will happen if I donot enable monitoring and do the following:
    EXEC DBMS_STATS.GATHER_SCHEMA_STATS(ownname=>'SCOTT', options=>'GATHER AUTO');
    Thanks in advance,
    Lily. NYC.

    OPTIONS=> 'GATHER STALE'
    When executing dbms_stats, statistics are first flushed from SGA and then
    segments with stale stats are examined.
    Oracle will gather statistics on objects which have statistics considered to
    be STALE. This is done by looking at the tabmodifications views.
    Answering to your question, if you didn't enable table monitoring and run gather stale option, you wont get any error. Simple, oracle doesn't collect stats, since there is no information available in tabmodifications views.
    OPTIONS=>GATHER AUTO
    Oracle will gather automatically statistics on objects which currently have NO
    statistics (even if there have NO MONITORING) plus existing objects with STALE
    statistics. GATHER AUTO (just like GATHER STALE) requires monitoring to be turned
    on for the objects which have already statistics.
    If monitoring is not turned on, there is no way for Oracle to know which objects become state.
    Jaffar

  • Create VLAN on 3750 using SNMP

    I'm trying to create a VLAN on a 3750 using SNMP.  The document i've found is rather vague and from 2005.  Has anybody done this successfully and if so can you share the process?
    From what I understand you have to set the "vtpVlanEditOperation" to the desired mode but each time I set the integer to 2 for copy is get either bad security type or bad object type. Any help would be appreciated.
    Here are some commands i've tried.
    $ /usr/bin/snmpset -c {writeString} test 10.150.150.20 1.3.6.1.4.1.9.9.46.1.4.1.1.1 INTEGER 2
    10.150.150.20: Bad object type: 1
    $ /usr/bin/snmpset -c {writeString} 10.150.150.20 1.3.6.1.4.1.9.9.46.1.4.1.1.1 INTEGER 2
    snmpset: No securityName specified
    Thanks!

    Also, please check and verify the following in your steps:
    (a) The switch MUST be in a VTP domain with "server" mode. If the switch has client or other mode, it will not work. Check your "show vtp domain" command and see what your switch mode is in.   --> This is usually the problem in most cases
    (b) snmpset to build a mib table can be time sensitive. That is you need to wait.
    (c) Did you follow these steps:
     1. Destroy the row first:
    snmpset -c private 14.32.6.12 vtpVlanEditRowStatus.1.111 integer 6
    You should see something like:
    CISCO-VTP-MIB::vtpVlanEditRowStatus.1.111 = INTEGER: destroy(6)
     2. Set vtpVlanEditOperation to copy mode with an owner name:
    snmpset -c private 14.32.6.12 vtpVlanEditOperation.1 integer 2 vtpVlanEditBufferOwner.1 s "testvlan"
    You should see something like:
    CISCO-VTP-MIB::vtpVlanEditOperation.1 = INTEGER: copy(2)
    CISCO-VTP-MIB::vtpVlanEditBufferOwner.1 = STRING: "testvlan"
     3. Set the row status to createAndGo, and build the table. For VLAN 111, vtpVlanEditDot10Said is 111+100000=100111 which in hex is 0001870F:
    snmpset -c private 14.32.6.12 vtpVlanEditRowStatus.1.111 integer 4 vtpVlanEditType.1.111
    integer 1 vtpVlanEditName.1.111 s "testvlan-vlan" vtpVlanEditDot10Said.1.111 x 0001870F
    You should see something like:
    CISCO-VTP-MIB::vtpVlanEditRowStatus.1.111 = INTEGER: createAndGo(4)
    CISCO-VTP-MIB::vtpVlanEditType.1.111 = INTEGER: ethernet(1)
    CISCO-VTP-MIB::vtpVlanEditName.1.111 = STRING: testvlan-vlan
    CISCO-VTP-MIB::vtpVlanEditDot10Said.1.111 = Hex-STRING: 00 01 87 0F 
     4. Check the vtpVlanApplyStatus:
    snmpwalk -c public 14.32.6.12 vtpVlanApplyStatus
    You should see "succeeded(2)":
    CISCO-VTP-MIB::vtpVlanApplyStatus.1 = INTEGER: succeeded(2)
     5. Now set vtpVlanEditOperation to "apply" mode:
    snmpset -c private 14.32.6.12 vtpVlanEditOperation.1 integer 3
    You should see something like:
    CISCO-VTP-MIB::vtpVlanEditOperation.1 = INTEGER: apply(3)
     6. Now check the status again, and it should be still "succeeded(2)":
    snmpwalk -c public 14.32.6.12 vtpVlanApplyStatus
    CISCO-VTP-MIB::vtpVlanApplyStatus.1 = INTEGER: succeeded(2)
     7. Now check your switch with "show vlan" and you should see a new VLAN 111.
     8. Finally you can release the newly created VLAN 111:
    snmpset -c private 14.32.6.12 vtpVlanEditOperation.1 integer 4
    You should see something like:
    CISCO-VTP-MIB::vtpVlanEditOperation.1 = INTEGER: release(4)
    -Thanks
    Vinod
    **Encourage Contributors for free. RATE Them :) **

  • Monitoring disk thresholds?

    I am trying to monitor disk thresholds using System Center Operations Manager 2012 R2. How do you set up different thresholds? Can alerting be created off those thresholds?

    To set up different thresholds, you have 2 methods to do that:
    Override exist threshold on management pack.
    Create custom monitor to monitor specific threshold.
    http://itsalllegit.wordpress.com/2014/01/14/scom-2012-r2-monitor-a-windows-service/
    Please remember, if you see a post that helped you please click "Vote As Helpful" and if it answered your question, please click "Mark As Answer"

  • IPS Load monitoring using SNMP

    Since CPU is always 100% now in v6.x/v7.x - is anyway to monitor the system load (reported in IDM/IME) using SNMP?
    What counter can be a good indicator for system upgrade that can be monitored using SNMP?

    Currently you can not query IPS senor load via SNMP, there is a feature request out for it.
    If you want to monitor load right now you can write a script that logs into the sensor and preforms a "show statistics virtual-sensor | i Load"
    This is a snapshot, and I believe the GUI provides an average.

Maybe you are looking for