Filter syslogs in a Custom report LMS 4.2

Hello all,
I would like to create custom reports using the Report Designer (Reports -> Report Designer -> Syslog) and filter certain syslogs from being seen when I run the report like permitted ACL entries, 802.1x successful authentications. It seems like there is only the option of displaying what you want to see, not what you don't want to see. Anyone ever done this?
Regards,
Keith

The only thing I can think of since that option is not present is to use filters:
Step 1 Select Admin > Network > Notification and Action Settings > Syslog Message Filters.
A dialog box with a list of filters, appears in the Message Filter page.
Step 2 Specify whether the filter should be a dropped or kept, by selecting either Drop or Keep.
•If you select Drop, the Common Syslog Collector drops the Syslogs that match any of the Drop filters from further processing.
•If you select Keep, Collector allows only the Syslogs that match any of the Keep filters, for further processing.
http://www.cisco.com/en/US/docs/net_mgmt/ciscoworks_lan_management_solution/4.2/user/guide/admin/useNotif.html#wp1074837
You would then define the message filters you dont want such as the ones you mentioned as "drop" so they are not included in the report or syslog.

Similar Messages

  • Custom Report Site Filter Blank

    If I create a custom report and put Site = for a requirement, there is no data pulling when I hit the list button, but each computer is assigned to a site, I know for sure because the site filter works when I'm creating a Dynamic Workstation Group and filter by site, it pulls all the sites without any issues. I tried manually inputting the site, (i.e. entering WASHDC as an entry), and that didnt work at all.

    cdowgos,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Visit http://support.novell.com and search the knowledgebase and/or check all
    the other self support options and support programs available.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://forums.novell.com)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://forums.novell.com/faq.php
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://support.novell.com/forums/

  • Can you filter a custom report by postcode?  I want to send an email marketing campaign to customers

    Can you filter a custom report by postcode?  I want to send an email marketing campaign to customers within a postcode range.  How do you do this? Thanks.

    Hey RP in Oz,
    You can run a contacts report and select 'Default Address Type' as an 'Address Details Field' which will include the zip code a customer has inputted. You can then export the report, open it up in Excel (or similar) and filter based on the postcode. Once you have modified the list in excel, formatted it correctly and are satisfied, you can then import the report as a mailing list via E-Mail Marketing > Mailing Lists.

  • Cisco Prime LMS Custom Reports

    Hi I wonder if anyone can help.
    Using the custom properties and query expression section in LMS Prime 4.1 I would like to create a report that checks the movement of end nodes.
    For example I need to know if PC A on switch A has moved to switch B in the last month. I need to try and track the (unauthorised) movement of PCs on my network?
    Perhaps I'm looking in the wrong field?
    Any help in creating this report would be apprecaited.
    Thanks
    Rod

    Ciscoworks has its own custom properitary database.  You can create an ODBC connection to the data base and use excel, access, or sql management studio to create and develop custom reports.

  • Logic to filter unpaid employees in the customized report

    Hi Experts,
    We are developing a customized report,which has to show  the full and final settelment employees(Relived employees) provision  whose salary is not proceessed in the particular month.As of now our report is showingup both the employees whose salary is processed and not processed.As per requirement report has to show the employees whose salary is not processed in the particular month.
    Kindly advice me on the logic.
    Regards,
    Vikram.

    You can check for 'accounted to' date in IT0003 to be earlier than current month's payroll end date to only retrieve ees not having payroll run for this month.

  • Custom Report issue

    Hi Gurs,
    I am in middle of a custom report developement which proivdes PO numbera and some of its relative dat, PR number and its relative data againust all the status of invoices(posted,parked,cancelled etc)
    the issue i m facing is client wants Purchasing group in input screen, i took the purchasing group from EBAN, but when i run the report its taking lot of time to execute,
    Could any one tell me how can i filtter the data so that i can get all the above mentioned data for a PG, or can i add any other field and make it mandatory to filter,
    please suggest any other approches /idea/ how can i reduce the time interval
    Thanks
    Ravi

    HI,
    At present we are using logic based on input example PR number first program will extract data for PR and then It checks EKKO and EKPO for PO numbers and for filter PO number program will check RBKP for invoice numbers,
    Its real Logic or you give example only?
    But if i provice Purchasing group it checks the whole EBAN and next process the same steps,
    its throwing run time errore,
    As you said your company code and invoice document date are mandatory field
    so your logic should flow from invoice table and end on PR number like below
    RBKP and RSEG you will get invoice document date and Po number
    Now pass Po number into table EKPO and get PR number ,if you want report for purchasing group wise then
    add table EKKO and pass Po number  there and ask ABAP consultant  that when Purchasing group on selection screen ,output show only that Purchase group related
    Regards
    Kailas Ugale

  • Custom Report Syntax - Prompt for limiting collection

    I'm building a customer report that will display maintenance windows for multiple devices.  I'd like to be able to filter the number of devices reported by collection (as to not have EVERY device in the console listed all at once).
    I've got the report working for everything except the filtering part.  Do I need to add a new Dataset and then filter it somehow?  Here's my only dataset so far:
    FIELDS: Computername, CollectionName, Next_Maintenance_Window
    QUERY:
    select
    v_FullCollectionMembership.Name as Computername ,v_Collection.Name as CollectionName,
    v_ServiceWindow.Description as 'Next Maintenance Window'
    from v_ServiceWindow
    inner join v_FullCollectionMembership on (v_FullCollectionMembership.CollectionID = v_ServiceWindow.CollectionID)
    inner join v_Collection on (v_Collection.CollectionID = v_FullCollectionMembership.CollectionID)
    order By Computername
    What do I need to add to be able to select the collection 1st then run the query above?

    HI
    Or you could do it like this:
    Create a new dataset and paste in the following Query:
    SELECT
      v_Collection.Name
      ,v_Collection.CollectionID
    FROM
      v_Collection
    Where CollectionType=2
    Insert the following code in your own Query (dataset) right before order by Computername
    Where v_Collection.Name = (@CollID)
    Expand Parameters in Report Builder, you should see a paramter called @CollID
    Right-click CollID and fill in the following information on the general page:
    Name: CollID
    Prompt: Collection
    On the Available Values select Get values from a query
    Dataset: Dataset2 (the new dataset you just created)
    value field: Name
    Label field: Name
    Design your layout in report builder and run the report. You will get a drop-down box with all your device collections.
    This report is not "RBAC" enabled

  • How to create a custom report and include multiple extended CRM database?

    I have created a number of CRM databas extensions and applied all there fields to my contacts and cases.
    I might have for example:
    - Additional address details
    - Business information
    - Quote Details
    - Trade Referees
    I know how to run a custom report and that I can select any one of these extra CRM databases as a filter and included them in the report. Is there a way though to add more than one (preferrably all) of the extra CRM databases to the report?
    The onely ways I can see it work is by either include all fields in one extra CRM database (not ideal) or bu running multiple reports and merge them somehow in Excel.
    Is there another way that I am not aware off?
    Thanks for your help,
    Jerun

    Hi Jerun,
    There's no way to do that. You'll need to run separate reports and merge them in Excel.
    -m

  • Filter Function problems on ALV report. [Resolved]

    Hi,
    I developed an ALV report by using function as below:
    CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
             EXPORTING
                  I_CALLBACK_PROGRAM = G_REPID
    *            I_CALLBACK_PF_STATUS_SET = status_set
    *            I_CALLBACK_USER_COMMAND  = USER_COMMAND
                  I_STRUCTURE_NAME = 'T_BSIK'
                  IS_LAYOUT        = GS_LAYOUT
                  IT_FIELDCAT      = GT_FIELDCAT[]
             TABLES
                  T_OUTTAB    = TAB_BSIK.
    And this ALV custom report is referenced from standard function FBL5N.
    After i completed this report, i made an comparision of FBL5N and my custom report.
    When I apply the filter function, for example, on the document type, I cannot input 2 characters in the document type field under the filter function. The field length is only 1 character. Similar case results on the field document date.
    While the standard function FBL5N works very nice.
    What should i do to make the filter function of my own ALV report as the same as the standard function FBL5N do?
    Thanks in advance.
    Lala
    Message was edited by:
            Hoo lala

    Oh, i found where the problem is...
    add below 2 statements, then the question is resolved.
      LS_FIELDCAT-ref_fieldname = ****
      LS_FIELDCAT-ref_tabname = ***
    FORM FIELDCAT_INIT tables RT_FIELDCAT.
    CLEAR LS_FIELDCAT.
      LS_FIELDCAT-COL_POS   =  3.
      LS_FIELDCAT-FIELDNAME = 'BLART'.
      LS_FIELDCAT-TABNAME   = 'TAB_BSIK'.
      LS_FIELDCAT-SELTEXT_L = 'Document Type'.
      LS_FIELDCAT-ref_fieldname = 'BLART'.
      LS_FIELDCAT-ref_tabname = 'BSIK'.
      APPEND LS_FIELDCAT TO  RT_FIELDCAT.
    endform.
    Fine now.
    Lala

  • Custom Report - Show Deployed, But Not Installed, Security Updates

    I'm trying to create a custom report that will show all patches that have been deployed, but have not been installed for a particular collection. Any ideas?

    Answered my own question.
    This will pull all Security Updates that have been Deployed but are still Required (not installed) for the All Systems collection (SMS00001). You can directly modify the code to limit it to the All Servers or All Workstations depending on your site code. You
    can also change the CategoryInstanceName filter to see different Update Classifications.
    select distinct
    sys.Name0,
    ui.BulletinID as BulletinID,
    ui.ArticleID as ArticleID,
    ui.Title as Title,
    catinfo.CategoryInstanceName as Vendor,
    catinfo2.CategoryInstanceName as UpdateClassification,
    CASE ((ui.IsDeployed))
    When 0 Then 'No'
    Else 'Yes' End as 'Deployed',
    CASE((ui.Severity))
    When 2 Then 'Low'
    When 6 Then 'Moderate'
    When 8 Then 'Important'
    When 10 Then 'Critical'
    Else 'NA' End as 'Severity'
    from v_UpdateComplianceStatus css
    join v_UpdateInfo ui on ui.CI_ID=css.CI_ID
    join v_R_System sys on css.ResourceID=sys.ResourceID
    join v_ClientCollectionMembers ccm on ccm.ResourceID=sys.ResourceID
    join v_CICategories_All catall on catall.CI_ID=ui.CI_ID
    join v_CategoryInfo catinfo on catall.CategoryInstance_UniqueID = catinfo.CategoryInstance_UniqueID and catinfo.CategoryTypeName='Company'
    join v_CICategories_All catall2 on catall2.CI_ID=ui.CI_ID
    join v_CategoryInfo catinfo2 on catall2.CategoryInstance_UniqueID = catinfo2.CategoryInstance_UniqueID and catinfo2.CategoryTypeName='UpdateClassification'
    where css.Status=2
    and ccm.CollectionID='SMS00001'
    and ui.isDeployed=1
    and catinfo2.CategoryInstanceName='Security Updates'
    and catinfo.CategoryInstanceName = 'Microsoft'
    order by sys.Name0, ui.ArticleID
    select distinct
    sys.Name0,
    ui.BulletinID as BulletinID,
    ui.ArticleID as ArticleID,
    ui.Title as Title,
    catinfo.CategoryInstanceName as Vendor,
    catinfo2.CategoryInstanceName as UpdateClassification,
    CASE ((ui.IsDeployed))
      When 0 Then 'No'
      Else 'Yes' End as 'Deployed',
    CASE((ui.Severity))
      When 2 Then 'Low'
      When 6 Then 'Moderate'
      When 8 Then 'Important'
      When 10 Then 'Critical'
      Else 'NA' End as 'Severity'
    from v_UpdateComplianceStatus css
    join v_UpdateInfo ui on ui.CI_ID=css.CI_ID
    join v_R_System sys on css.ResourceID=sys.ResourceID
    join v_ClientCollectionMembers ccm on ccm.ResourceID=sys.ResourceID
    join v_CICategories_All catall on catall.CI_ID=ui.CI_ID
    join v_CategoryInfo catinfo on catall.CategoryInstance_UniqueID = catinfo.CategoryInstance_UniqueID and catinfo.CategoryTypeName='Company'
    join v_CICategories_All catall2 on catall2.CI_ID=ui.CI_ID
    join v_CategoryInfo catinfo2 on catall2.CategoryInstance_UniqueID = catinfo2.CategoryInstance_UniqueID and catinfo2.CategoryTypeName='UpdateClassification'
    where css.Status=2
    and ccm.CollectionID='SMS00001'
    and ui.isDeployed=1
    and catinfo2.CategoryInstanceName='Security Updates'
    and catinfo.CategoryInstanceName = 'Microsoft'
    order by sys.Name0, ui.ArticleID

  • Custom report - Filtering multiple cities?

    Hi Guys,
    I am trying to create a custom report for a list of cities (Not all Cities in the database, only a selection).
    FILTER BY FIELDS
    One cannot have London on the first line (Filter 1) and New York on the second (Filter 2) - it results in an error
    My guess it uses AND operator
    I tried my luck at inserting London OR New York OR Sydney etc, (Filter 1) but that does not work.
    Any advise would be appreciated
    Thanks

    Hi SmilingGoat,
    Unfortunately you are correct, and the filtering system with reports does indeed use an AND operator. You can't currently filter on multiple variations of the same field with the accuracy that you're after.
    You could potentially narrow it down using the following:
    Filter 1: >= London
    Filter 2: <= New York
    And this will output cities that are alphabetically between London and New York inclusively. Really though, the best workaround until greater flexibility is built into the reporting engine is just to filter in Excel.

  • Custom report prime infrastructure 2.0

    Hi all.
    I'm missing a function in PI 2.0 (as I know from LMS 4.2).
    Reporting a MAC-Address-List by device (switch).
    In PI, I've only found a report "device" ==> "wired port attribute" ==> "wired port attribute detailed report"
    Here I can select "Report by Device Name" some attributes and "sort by name"
    But the result has no information about the device name ... In the field "Device IP Address" is only the IP-Address of the accessed end-device filled in (e.g. a PC). In the field "Name" is filled in the name of the interface (e.g. Ethernet )
    My question is now: how to create a custom report with the information "Switch" ==> "Port" ==> "connected MAC-Address" ==> if possible "connected IP-Address"
    Regards
    Markus
    PS:
    Here the structure of the report I've found:
    Name
    VLAN Id
    Device Ip Address
    Description
    MAC Address
    Admin Status
    Operational Status
    Type
    MTU
    Speed(MB)
    Duplex
    isTrunk
    TrunkEncapsulation
    FastEthernet1/8  
    0
    1XX.YY.ZZ.7  
    switchxyz-as-00 / NEXANS  
    00:19:e7:e5:09:17  
    Down  
    Down  
    ETHERNETCSMACD  
    1500  
    100
    FULLDUPLEX  
    true  
    _8021Q  

    Hi Markus,
    From my experience PI2.0 has very limited (basically none) custom reporting. The only customising you can do is with existing/preconfigured reports in terms of setting the dates, nr of devices reported on etc etc...
    Lets see what the newer versions brings...
    Ciao
    JC

  • Custom reporting for UCCX 7

    Hello there,
    I am looking for easier ways to generate custom reports for UCCX 7, I am asking incase I go away an spend heaps of time programming stored procedures and crytal reports if there is a report pack out there or some documentation to make it a bit easier.
    Our call center team leader is asking for reports to be written for the system or modification of existing reports as the ones included are either too crowded with information or do not display what we actually want.
    /* Style Definitions */
    table.MsoNormalTable
    {mso-style-name:"Table Normal";
    mso-tstyle-rowband-size:0;
    mso-tstyle-colband-size:0;
    mso-style-noshow:yes;
    mso-style-priority:99;
    mso-style-qformat:yes;
    mso-style-parent:"";
    mso-padding-alt:0cm 5.4pt 0cm 5.4pt;
    mso-para-margin:0cm;
    mso-para-margin-bottom:.0001pt;
    mso-pagination:widow-orphan;
    font-size:11.0pt;
    font-family:"Calibri","sans-serif";
    mso-ascii-font-family:Calibri;
    mso-ascii-theme-font:minor-latin;
    mso-fareast-font-family:"Times New Roman";
    mso-fareast-theme-font:minor-fareast;
    mso-hansi-font-family:Calibri;
    mso-hansi-theme-font:minor-latin;
    mso-bidi-font-family:"Times New Roman";
    mso-bidi-theme-font:minor-bidi;}
    As an example, there is a report called ‘Agent Not Ready Reason Code Summary Report’, this report lists some not ready codes such as 32756 etc.. (i.e. Pre-defined system codes), however we want to list our own not ready codes as well as remove some of the system ones from the report as we don’t really want them there.
    Another example is the Agent state details report, one of the columns is 'Reason Code', this is fine, however it would be nice to have a summary at the end of the report for a total count of each not ready code (with the not ready code name not just the code).
    Is there anyone out there who has written/customised reports for UCCX or know where I can find some more documentation? I have searched around but not found anything, Cisco TAC have said that they only deal with the connection of Crystal Reports to UCCX, the coding itself and help with regards to that you are basically on your own with.
    Thanks

    Hi
    There are other ways of reporting, but you are still on your own with it unless you find someone who writes a package. I'm not aware of any...
    Re your specific queries though:
    ‘Agent Not Ready Reason Code Summary Report’ - when running the report, you can go to the 'detailed' tab, and on that tab you can select 'Reason Code' as a filter and pick the codes you are interested in.
    Also that same report shows the summary (i.e. totals) of the time in those reason codes doesn't it? So that's what you wanted to see on the other report?
    Final point (and this is a common one that comes up) is that for some reason the 'reason' codes only appear as numbers in the DB. There are no lookup tables where you can link them to names for reporting. This basically means the best you can do is to edit the Crystal templates so that the static table listing the codes at the top of the report has the codes you have configured. Obviously this isn't dynamic, but it is easy as far as Crystal goes...
    Hope this helps
    Aaron
    Please rate helpful posts...

  • CUIC 9.0 Custom Reporting

    Good Afternoon,
    I was wondering if anyone could help me with the following issue.
    I am looking to create customized dashboards for our contact center's supervisors. I'd like to add a customized report that includes All agent data for the current day (aht, calls taken, calls abandoned, etc). From the time that they logged in until the present moment. I have attempted to customize "Agent Historical All Fields Daily" Stock report to do this, however I am wondering if I can set this report to run from shift start time until realtime each and every time the dashboard is opened, and also set a refresh interval for the report. I am relatively new to CUIC, so if there is any information I am missing please let me know. Thanks in advance for all assistance. I look forward to using these forums for further research and education!
    -Daniel
    [email protected]

    Daniel,
    Unfortunately, some of the stock reports don't have a built-in option for "relative" dates (i.e., being able to choose "Today", "Yesterday", etc). If you have the "peragt26_Agent Consolidated Daily Report" available to you, you should be able to select "Today" in that, it should have most of the data you're looking for. If you don't have this report, it is available from the CDN under "WebView reports". http://developer.cisco.com/web/ccr/documentation
    In order to have a report in a dashboard automatically run with specific filter criteria, it needs to have a "default filter" set up. Each report can only have a single default filter. If you have multiple defaults you would like to set up, you will need to create copies of your report, each with its own default filter. You can set the default filter by right-clicking the report in the Reports tab and choosing Edit.
    Once you have your reports and dashboards set up, I would recommend potentially adjusting user permissions so supervisors can only see the reports/dashboards that pertain to them.
    If you haven't seen it yet, the CUIC User Guide is here - http://www.cisco.com/en/US/docs/voice_ip_comm/cust_contact/contact_center/intelligence_suite/intelligence_suite_902/user/guide/CUIC_BK_R4B100EB_00_reporting-app-user-guide-902.html
    -Jameson

  • CUIC 9.0 Custom Reporting/Dashboards

    Good Afternoon,
    I am relatively new to CUIC as a whole so any feedback to the following question is appreciated. I am a manager at a contact center who recently made the jump from Avaya to Cisco this month. I am looking for a way to create a customized dashboard for each Supervisor in our center. I would like to include a report that shows all of the Supervisor's agents and their call statistics for that current day (since the start of shift until present moment, AHT, Calls taken, Abandoned calls, hold time avg, short call % etc.) I was using "Historical Agent All Fields Daily" Stock Report. Ideally I would like to have this report be a part of their dashboard so that each time they open the Dashboard it automatically begins running the report from 8am until present, and refreshes every 30 seconds (if you can input a refresh interval). Any and all assistance is appreciated, as I stated I am relatively new to the software and I am looking forward to learning as much as possible. Thanks in advance for your help!
    -Daniel

    Daniel,
    Unfortunately, some of the stock reports don't have a built-in option for "relative" dates (i.e., being able to choose "Today", "Yesterday", etc). If you have the "peragt26_Agent Consolidated Daily Report" available to you, you should be able to select "Today" in that, it should have most of the data you're looking for. If you don't have this report, it is available from the CDN under "WebView reports". http://developer.cisco.com/web/ccr/documentation
    In order to have a report in a dashboard automatically run with specific filter criteria, it needs to have a "default filter" set up. Each report can only have a single default filter. If you have multiple defaults you would like to set up, you will need to create copies of your report, each with its own default filter. You can set the default filter by right-clicking the report in the Reports tab and choosing Edit.
    Once you have your reports and dashboards set up, I would recommend potentially adjusting user permissions so supervisors can only see the reports/dashboards that pertain to them.
    If you haven't seen it yet, the CUIC User Guide is here - http://www.cisco.com/en/US/docs/voice_ip_comm/cust_contact/contact_center/intelligence_suite/intelligence_suite_902/user/guide/CUIC_BK_R4B100EB_00_reporting-app-user-guide-902.html
    -Jameson

Maybe you are looking for

  • How do I find the total size of all my Music in iTunes 11?

    I'm looking to get a new iPod, either a nano or Touch, so I'm trying to find the total size of all of my Music. Since iTunes 11's interface is so different from previous versions, I don't see a way to view that.

  • Formatting a PC-formatted External Hard Drive to work in Mac OS

    So I have a 300 gig external hard drive formatted for Windows XP with NTFS. I recently got a Macbook Pro and as it stands in Mac OS X the hard drive is read only. I can copy files from the hard drive to my Mac, but I can't edit files on the external

  • New messages not recorded in Sent file.  Can't save to drafts

    New MacBook, Tiger. Searched forum without success. Asked other Mac users without success. Please help if you can. I run my own mail server (postfix, courier imap). Mail using thunderbird and the same settings works flawlessly. When I use Mac's mail

  • On general services of process chain

    hi bw guys i have doubt on general services of process chain. In general services one process is OS Command there.Is there any scenario for this os command process.please reply me if u know the scenario?  thankyou

  • Using a Site Studio 10R4 Dynamic List Element Definition

    Hi All, I've created and can use a Static List Element Definition > Region Definition > Region Template with no problems based off of the 10gR4 samples. However, there is no example that I've found to utilise the Element Definition of a Dynamic List.