Chart color customization for Sentinel Log Manager (and RD)

Hi all,
I am trying to customize the color of the chart provided by the SDK. I
based on the
top 10 Report as modification. The default severity 0 color is WHITE.
I tried to change the files of color_RGB.csv or Key_color.csv of the
entry to GREY4 but
it turns out it is not reading it at all during build-report.xml.
Does it mean:
1) I have to put those csv files in parameter directories?
2) Do I have to run the autoparam build?
3) Or I have to work with JFreeChart via the eclipse and rebuild the
java files first?
Thanks,
Geoffrey
geocheng
geocheng's Profile: http://forums.novell.com/member.php?userid=90913
View this thread: http://forums.novell.com/showthread.php?t=425353

The original csv files are in the AA-common directories. I changed it,
and using the build-report.xml. The result is negative. The chart
severity color does not change.
So I put the modified csv files into the parameter directors under by
report build directory. Same problems.
So from the documents, it should be referring to the csv files to
define color mapping. So I cannot be sure where to put those files or do
some java programming with JFreeChart in order to achieve it.
Thanks,
Geoffrey
geocheng
geocheng's Profile: http://forums.novell.com/member.php?userid=90913
View this thread: http://forums.novell.com/showthread.php?t=425353

Similar Messages

  • Web report for Sentinel Log Manager (or possilby RD)

    Hi all,
    My customer wants to replace Webtrend. So customers are given me a set
    of
    apache log files. They said based on those logs Webtrend could already
    build
    some useful web based report for their business units. From what I have
    known,
    what makes them useful are:
    1) Those IP addresses could be resolved to domain, identifying the
    source of
    the browsers
    2) URL are analyzed such that they could give a 'hit rate' based web
    report for
    trend analysis.
    3) What browsers are used to view their web sites so they know the
    compatibility
    issues.
    If I customize our report now, would it be possible to generate similar
    reports for the above items?
    1) I wonder if it is possible during the report generate, would some
    other add-on java plug-in could work for the DNS resolution before data
    generation?
    2) Any one know the logic of the webtrend about how it correlates
    various URL visited in the apache logs are considered different 'hit'?
    3) I believe we could base on filter to identify different version of
    the browsers used?
    I don't have a webtrend so I could not compare and look at how they
    generate reports from the apache log I have. Please let me know if
    anyone has any idea about it.
    Thanks,
    Geoffrey
    geocheng
    geocheng's Profile: http://forums.novell.com/member.php?userid=90913
    View this thread: http://forums.novell.com/showthread.php?t=425354

    Hi geocheng,
    For (1): this feature already exists, although it's in a somewhat
    experimental state. You need to install the Generic Hostname Resolution
    Service Collector, and then enable hostname resolution for each
    Collector (in this case, the Apache Collector).
    For (2): I'm not sure what a "hit rate" is, but the Apache Collector
    should give you a list of URLs that were visited and you should be able
    to calculate counts per URL (split across the TargetDataName and
    TargetDataContainer, note) using a SQL query or whatever.
    For (3): I don't actually know what, if anything, the Apache Collector
    does with the browser details; it may put that into the
    ExtendedInformation field. You may wish to customize the Collector
    slightly (this should be pretty easy to do) to copy that specific data
    into a separate CV field; if you do that, then calculating the relative
    frequency of hits from different browser types will again be a simple
    COUNT style SQL query.
    This is an interesting use case - we haven't really built much content
    around the Apache Collector but as you are indicating, there might be
    some simple things we can do that would be pretty useful. I'll take it
    up as a potential project...
    DCorlette
    DCorlette's Profile: http://forums.novell.com/member.php?userid=4437
    View this thread: http://forums.novell.com/showthread.php?t=425354

  • I wonder to know what is the enterprise solution for windows and application event log management and analyzer

    Hi
    I wonder to know what is the enterprise solution for windows and application event log management and analyzer.
    I have recently research and find two application that seems to be profession ,1-manageengine eventlog analyzer, 2- Solarwinds LEM(Solarwind Log & Event Manager).
    I Want to know the point of view of Microsoft expert and give me their experience and solutions.
    thanks in advance.

    Consider MS System Center 2012.
    Rgds

  • Casting variables in Sentinel Log Manager

    Hello! I have been trying to make a collector work to pick up events
    from MySQL tables and when I run it on SIEM-Sentinel (classic Sentinel
    6.1 on SQL Server and Sentinel-RD ), it works fine. However, I tried
    using the same collector on Sentinel Log Manager 1.2, and it does not
    pick up the events!
    After some debugging, I found the culprit lines of code. I do a lot of
    casting to make sure the variables are treated as integers or strings
    (mostly when I need to manipulate it as a number, since String is the
    default data type, I think) so I have lines that look like this in the
    pre-parsing stage of the collector:
    this.anInteger = Number ( this.RXmap.col_anInteger);
    this.aString = String (this.RXmap.col_aString);
    But when debugging, while in SIEM-Sentinel it populates the variable as
    expected, in SLM I get "NaN" as the output value. I can see the values I
    want to get in RXBufferString, but problem occurs when I cast them.
    Maybe this isn't the "Sentinel" way of doing it? While I can do without
    casting "String", how can I cast the value as an integer?
    Any help is appreciated. Cheers!
    Jean-Paul_GM
    Jean-Paul_GM's Profile: http://forums.novell.com/member.php?userid=12809
    View this thread: http://forums.novell.com/showthread.php?t=447842

    -----BEGIN PGP SIGNED MESSAGE-----
    Hash: SHA1
    Compare your Sentinel and Log Manager systems' inputs on that line of
    code. I'm going to guess that the value in those variables which you
    are trying to cast are not the same, causing the problem. NaN shouldn't
    be the output if the input can be cast, but I'd also probably avoid
    casting the value in the first place since I'm pretty sure that Sentinel
    and Log Manager will handle that casting as necessary later (untested,
    just assuming from a lack of having ever needed to do that myself in the
    past, though I am not an expert collector writer). ECMAscript is not
    strongly typed and while I've had issues in one cases where the type was
    incorrect it was not a simple string/int type but rather a Date object
    that the send() function expected to be present but was in fact not a
    valid Date and so the sending failed while everything else (parsing,
    etc.) seemed to function properly.
    Also whenever you get [Object Object] in the debugger you should be able
    to move over to the left-hand side where either 'this' or 'locals' will
    show you something that allows you to drill down to the object and then
    you can expand it. I do not think I have ever seen a case where the
    object existed but could not be accessed as something listed directly
    as, or as a child of, something present on the left-hand side section of
    the debugger.
    Good luck.
    -----BEGIN PGP SIGNATURE-----
    Version: GnuPG v2.0.15 (GNU/Linux)
    Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/
    iQIcBAEBAgAGBQJOt9tGAAoJEF+XTK08PnB5ohAP/2kW6O2lEI1EDi1XDAKSRTkD
    FzCx7WL8ReEXlf0nqEY+KDQAakPOG6h2MqG0fgVzSy1ty/OopF2UYX1QteI+gq/A
    +DmlgWa+Os3GOvxZPOjpPg2diWHazZmADVdm0NesGwUrSWLJ4t tTCMDYlME3yIDF
    3T8rSd76s40FEZTxlKqYuvGg1T863pGrCb1Ul7PC52VmkrI0p+ gxWqJjIap0nTRF
    +DXYHsn9WHJT+OBy7icF1MMYT/arjmNyuVUV4leGpRWkLYVSQJEomn/W7OO7oO0v
    uRm9uZ2iNUiigyf/u07BSpyvkQSPCo8ICGeYc5zYb8LoExVu2vH1LA70CoVXzfIZ
    RJfQeW6KIVQHeOB10kGt/gjxvsFGsjJ5q3tmiRN33r8fJpE5QZ3hDfBA3qBdcjYz
    /dSR+jbLNSpGBG8dvkl9y4JRLEAUgcKAX+OYpY/I0/W4lsZvfcU/Yp8dR41qJDlk
    Cp2Ds2vnk4gCUZKqdp0/jMBLxvc8ZZ4XW8oxlsAEOGbOL9pBU57txxIiPOfYV8MR
    f0Ylo5yWdQYcLqYgqsWE1z0JRSW18DQz7EtsazMjhS3PuuvVF5 xpc9LUJfeAj7zY
    0gYCE4keDH8ljFQZ9v+DrSBhpZnOLDDndKBtC8pk3ahCVnhKPN olxviCliOmUJsB
    WeGiUoMtJJks66JkUsmP
    =OD70
    -----END PGP SIGNATURE-----

  • Any apps to enable more color customization for Windows 7 interface?

    Windows 7's default UI customization feature set is lacking and incomplete.  Any apps that can solve this?
    Personally, I would be interested in an app for Windows 7 that will allow changing the "glow" color around the text of windows' titles.  Because I use a dark theme and the current unchangeable white glow clashes with my dark theme.  I would like
    to be able to set that glow to black and my windows’ title text to white.
    Additionally, there is a permanent light blue tinting on a lot of the Windows 7 UI.  I would prefer to set that to gray so it can fit universally with any color theme.  Or better, be able to adjust the color of the tinting.
    And then there is the green progress bar--I personally would prefer to be able to set that to a blue.  Or better, be able to set that to any color.

    Hi,
    To set the color of Windows Title bar, please go to Windows Color and Appearance to check the result.
    Right click desktop -> Personalization -> Windows Color -> in the item list, choose
    Active Title Bar -> change its color 1 and 2
    To change the color of the tinting, please refer to the following steps.
    1. Make sure your computer's brightness is on full.
    2. Go to Start -> Control Panel -> Display.
    3. On the left bar, click Calibrate Color.
    4. Follow on the on screen instructions to correct your gamma.
    5. After you're done with this, on the next screen click "Skip brightness and contrast adjustment"
    6. Click next, then you'll l be on the color balance adjustment screen, which is where you will correct the blue tint.
    The slider on the right where the color blue is located, slide the slider to the left 3 notches. Adjust as needed based on your screen.
    7. On the next page you'll have the ability to switch between what you had it on previously and what you set it to.
    To set the green progress bar to blue, please see if the following article is helpful.
    http://www.sevenforums.com/customization/19207-blue-progressbars-windows-7-a.html
    Note: Since the website is not hosted by Microsoft, the link may change without notice. Microsoft does not guarantee the accuracy of this information.
    Best Regards,
    Niki
    Please remember to click "Mark as Answer" on the post that helps you, and to click "Unmark as Answer" if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • Monitoring object for Supply Chain management and Warehouse

    Hi , i am monitoing In ERP.Like going to DB2 then there i go to sements -->detals analysis .there i took owner SAPR3 and i took data like below
    Description: SD Document: Billing Document: Rebate Index
    Type : INDEX
    Name : VBOX___0          
    MB :91,359,000
    Description: DATA DEFINITION Queue
    Type :TABLE
    Name :  VBOX
    MB :55,032,000 like this
    so can anyone help me what object (Important object) in SCP i have to took for Table and Index.the same foe Warehose also.
    Please let me know what are the object shall i took.
    Below is i got for ERP for your kind persual
    Description     Type     Name     MB
    SD Document: Billing Document: Rebate Index     INDEX      VBOX___0                91,359,000
    DATA DEFINITION Queue     TABLE      VBOX                    55,032,000
    SD Document: Billing Document: Rebate Index     INDEX      VBOX~A          1,627,110
    CO Object: Line Items (by Period)       TABLE      COEP                    11,159,000
    Cluster table infosystem      TABLE      GLPCA                   8,920,000
    Accounting: Secondary Index for G/L Accounts       TABLE      BSIS                    6,723,000
    NewCo Operating Conc       INDEX      CE4B004           4,794,000
    Application log: log message      TABLE      ACCTIT                  6,293,000
    Cluster for conditions in purchasing and sales      TABLE      KOCLU                   6,534,000
    Document Segment: Material       TABLE      MSEG                    4,940,000
    thanks and regards
    brijesh prasad

    Hi
    Surf through this webpage - http://www.sap.com/services/education/certification/index.epx
    It will give you an idea of all certifications, levels, topics/modules to be studied.
    Also, information on contacting the SAP Education offices in various countries.
    Moreover, I recommend you to contact the Authorised Training Centers in US. They will share all the information right from duration to modules to fees.
    Cheers!
    Zub

  • How to calculate storage space for archive log files and database backups?

    Hi all,
    I have a 1.8 terabyte Oracle 9i database and need to plan for how much additional disk space I will need to perform nightly backups and for archivelog files. Is there a script or formula available that can help me estimate how much required disk space I will need to hold a days worth of archived logs as well as a nightly export dump file and a full hot RMAN backup on disk?
    Thanks!

    I'm not sure how to estimate the size of your backups, especially if you use incrementals. However, the space required for archive logs will be equal to the amount of REDO your DB generates. I would count the number of log switches per day with a query like the following:
    select trunc(first_time), count(*)
    from v$log_history
    group by trunc(first_time)
    I would then take the average and multiply this count by the size of your redo log files (assuming they are all the same size).

  • Important Updates for Illustrator, Extension Manager, and Photoshop - Failure to Install

    I have been trying to update my Illsutrator, Extension Manager, and Photoshop.
    I have tried about five time using different methods.
    Each time I received the following error message:
    AI CS6 Creative Cloud Update
    Installation failed. Error Code: U44M1P7 
    Adobe Extension Manager CS6
    Update Installation failed. Error Code: U44M1P7 
    Adobe Photoshop 13.0.1.1
    Installation failed. Error Code: U44M1P7
    I need some giudance in order to have the updates installed.
    Thanks
    Paul

    Whilst this may prove to be the only way to install the updates, it reads as though it only takes a few minutes to complete but as others have reported it's a real pain to have to go all through a clean up and then full installation particularly if you have a number of plugins to re-install / activate! Not the best solution and I would have hoped Adobe could have come up with a better solution. As it is I will not be going through the update and will set the application manager to manual rather than have the icon constantly on displayed in the taskbar expecting to update what doesn't work.

  • Font and Color Customization for the 8900 IP Phones

    Hi all,
    Is there any way to change the fonts and colors of the characters displayed on the phones?
    For example, the appearance of the line numbers, date and time, and softkeys.
    Thank you.

    No not supported on the phones...

  • Customization for open item managment

    Dear,
    I am fascing problem in customzing  the open item managment in SAP fico. Please suggest me how I will do this.
    With Regards,
    sitansu

    Hi,
    if you got error during open item management activation for your GL ladger account you can change this parameter in DEV Gold environment and transfer your Chart of Account by OBY9.
    To do that follow this instructions:
    How to transfer Chart of account to another system ?
    Regards

  • Pages background color customization for poster template?

    HOw can I customize the color of the background on the template poster on pages for iPad? It is normally blue and I would like to change it.

    Hi Satyadev,
    You have 3 options:
    Within the forms builder you can get a white background by setting the form to either "border" or "no border".  This is done by clicking anywhere on the form (where there is no other element) and modifying the "style" property
    You can modify the portal theme so that the background colour is your choice.  However this will affect all forms in the portal, not just this one.
    Or you can manually modify the form XSL stylesheet.  This involves typing the html code to apply your chosen colour.  However, this modification is lost if you re-generate the XML forms project, so this should be a last resort.
    Hope this helps,
    Chris

  • Dynamic series in flash chart & color specified for each series

    Example of data:
    Date     Series 1     Series 2     Series 3     Series 4     Series 5     Series 6     Series 7     Series 8
    A     12     22     23     22     22     10     10     10
    B     10     9     55     8     8     20     20     20
    C     55     2     5     88     5     15     15     15
    In excel, I can get a stacked horizontal bar chart with the numbers of different series stacked and it is easy to specify the color for each series (it works with Dephi aslo).
    I use a PL/SQL to generate the dynamic series for the chart. And in my application, I need to show some serires with the same color (group of series, each has a specified color). One of the solution I am trying is to input a fixed color sequence and loop it many times in the custom color theme and then insert dummy series into the SQLS. But this could be a disaster while the number of group goes up.
    Anyone has better idea on this? Or is this a limiation of apex?
    Thanks.

    As I tried, apex can support 300 series at most. Dynamic series here is not a good solution still.

  • Minimum steps required for Change Management and Incident management

    Hello experts,
    Does anyone have a check list of the absolute minimum steps required for getting Change Management and Incident management functioning in Solution Manager.
    I just need it to function with creating changes and incidents and be able to assign them, change their status and close them.
    The purpose is to get an idea if this is something for us to use. If we then find it useable, then we will go for a full scale implementation using official guides, education etc.
    I just need an absolute minimum guide for demonstrating the functions, and if you guys have any recommendations, things we should pay special attention to or other experiences feel free to tell me.
    Thanks in advance.
    Regards,
    Kenneth

    Hi,
    There are a number of Blogs in the SDN about Charm and ServiceDesk, explaining first steps and more.
    Check these to start:
    http://wiki.sdn.sap.com/wiki/display/SM/ChangeRequestManagement
    The Complete ChaRM Solution
    Change Request Management scenario: Usual questions and known errors
    First steps to work with Change Request Management scenario in SAP Solution Manager 7.0
    Regards,
    Jan

  • How do I add a color pallet for Keynote and Pages?

    This seems like it should be straightforward, but I need to add a new color pallet for use with Keynote and Pages.  I have the .clr file, but I'm not having any success getting it to show up in the color picker.

    Within Keynote, show the colour palette (command shift C   or   view > show colours)
    click the image palette button (arrowed)
    click the Palette drop down menu and select either: new from file or new from clipboard

  • Issue while installing Oracle Revenue Management and Billing for Financial

    I'm trying to install RMB and getting the below error. I have installed MicroFocus Server 5.1 with the WrapPack 3 but still getting the Winsock error. Please advise.
    - 2012-01-17 16:29:59,278 [main] ERROR (host.sockets.WindowsPipeSocket) Cannot instantiate com.splwg.base.support.cobol.host.sockets.WindowsPipeSocket because of problem loading a library com_splwg_base_support_cobol_host_sockets_WindowsPipeSocket during static initialization.
    java.lang.UnsatisfiedLinkError: no com_splwg_base_support_cobol_host_sockets_WindowsPipeSocket in java.library.path
         at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1738)
         at java.lang.Runtime.loadLibrary0(Runtime.java:823)
         at java.lang.System.loadLibrary(System.java:1028)
         at com.splwg.base.support.cobol.host.sockets.WindowsPipeSocket.<clinit>(WindowsPipeSocket.java:25)
         at com.splwg.base.support.cobol.host.sockets.WindowsPipeSocketStrategy.clearServerPortResources(WindowsPipeSocketStrategy.java:51)
         at com.splwg.base.support.cobol.host.SocketStrategy.bindServerPort(SocketStrategy.java:144)
         at com.splwg.base.support.cobol.host.OptimizedRemoteExecuterSkel.<init>(OptimizedRemoteExecuterSkel.java:43)
         at com.splwg.base.support.cobol.host.OptimizedInvocationStrategy.startOnParentJvm(OptimizedInvocationStrategy.java:25)
         at com.splwg.base.support.cobol.host.RemoteJVMFactoryImpl.<init>(RemoteJVMFactoryImpl.java:64)
         at com.splwg.base.support.cobol.host.CobolHostStartup.startup(CobolHostStartup.java:41)
         at com.splwg.base.support.context.ApplicationContext.initializeCobolRuntime(ApplicationContext.java:231)
         at com.splwg.base.support.context.ApplicationContext.initialize(ApplicationContext.java:212)
         at com.splwg.base.support.context.ContextFactory.buildContext(ContextFactory.java:115)
         at com.splwg.base.support.context.ContextFactory.buildContext(ContextFactory.java:91)
         at com.splwg.base.support.context.ContextFactory.createDefaultContext(ContextFactory.java:512)
         at com.splwg.base.web.startup.SPLWebStartup.initializeApplicationContext(SPLWebStartup.java:181)
         at com.splwg.base.web.startup.SPLWebStartup.contextInitialized(SPLWebStartup.java:63)
         at org.apache.catalina.core.StandardContext.listenerStart(StandardContext.java:3827)
         at org.apache.catalina.core.StandardContext.start(StandardContext.java:4334)
         at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1045)
         at org.apache.catalina.core.StandardHost.start(StandardHost.java:719)
         at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1045)
         at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:443)
         at org.apache.catalina.core.StandardService.start(StandardService.java:516)
         at org.apache.catalina.core.StandardServer.start(StandardServer.java:710)
         at org.apache.catalina.startup.Catalina.start(Catalina.java:566)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:288)
         at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:413)
    - 2012-01-17 16:29:59,278 [main] FATAL (support.context.ApplicationContext) Error initializing ApplicationContext
    - 2012-01-17 16:29:59,278 [main] INFO (web.startup.SPLWebStartup) Shutting Down the JMX Connectors...
    - 2012-01-17 16:29:59,294 [main] INFO (web.startup.SPLWebStartup) JMX Connectors shutdown successfully
    - 2012-01-17 16:29:59,294 [main] INFO (web.startup.SPLWebStartup) Shutting Down the Application Context...
    - 2012-01-17 16:29:59,294 [main] ERROR (web.startup.SPLWebStartup) Exception shutting down SPL Application Context
    Edited by: 906696 on Jan 17, 2012 3:13 AM

    Hi Jeff,
    Appreciate your suggestion. My intention was also to post it in the right forum but i could not find any forum for Oracle Revenue Management and Billing, since its a new product.
    Its for such new products that we need help and support. Let me know if you are aware of any such forum. That would be great help indeed.

Maybe you are looking for