Octopussy-Project / Octopussy

Octopussy - Open Source Log Management Solution
https://octopussy.pm
GNU General Public License v3.0
154 stars 28 forks source link

A bunch of feature requests :) #625

Open XXLRay opened 9 years ago

XXLRay commented 9 years ago

After playing around with octopussy 1.0.14 a bit I found it would be nice to have some of the following features.

sebthebert commented 9 years ago

You can already do that ! :)

You can change:

And even if you don't ask, :) you can also change message pattern fields color by editing color fields in /var/lib/octopussy/conf/types.xml

Of course, you need to restart Octopussy for the changes to take effect.

I've updated the FAQ.

sebthebert commented 9 years ago

I don't understand what you want for this request.

HEXA_NUMBER is defined like that in Octopussy:

    <type type_id="HEXA_NUMBER" 
        re="0x[0-9A-F]+" 
        simple_type="HEXA_NUMBER"
        sql_type="VARCHAR(16)"
        color="blue" />

It's just 0x followed by one or more hexadecimal character.

XXLRay commented 9 years ago

"You can already do that ! :)"

"HEXA_NUMBER is defined like that in Octopussy"

XXLRay commented 9 years ago

Here is another example:

hexa_number_wrong2

sebthebert commented 9 years ago

You discovered a bug for HEXA_NUMBER... :o

You can fix it for now by editing /var/lib/octopussy/conf/types.xml:

    <type type_id="HEXA_NUMBER" 
        re="0x[0-9a-fA-F]+" 
        simple_type="HEXA_NUMBER"
        sql_type="VARCHAR(16)"
        color="blue" />

I opened a new issue and I will take some time tomorrow night to fix that properly...

XXLRay commented 9 years ago

Cursed be case sensitivity :)

XXLRay commented 9 years ago

Yet another feature request:

sebthebert commented 9 years ago

You can rename services and tables with octo_tool service_clone and octo_tool table_clone commands.

Documentation about the octo_tool command here.

XXLRay commented 9 years ago

Ah cool - a GUI option would nevertheless be nice :)