Search found 33 matches
- 14 Jan 2014, 08:58
- Forum: Help
- Topic: configure stats to show ticket movement (queue to queue)
- Replies: 1
- Views: 939
configure stats to show ticket movement (queue to queue)
Hello, how can i configure stats to show ticket movement between queues?
- 17 Aug 2013, 09:50
- Forum: General
- Topic: How to generate Reports on Ticket state changes
- Replies: 0
- Views: 686
How to generate Reports on Ticket state changes
Hello, i would like generate reports showing all state changes for each ticket (i.e generating stateUpdate ticket history for each ticket from Stats). is this possible using STATISTICS? what configurations do i need to use (a sample xml export would be nice). If i cant use STATS then how else can i ...
- 01 Mar 2013, 08:19
- Forum: Developers
- Topic: Add Custom attribute in stat [SOLVED]
- Replies: 7
- Views: 23875
Re: Add Custom attribute in stat [SOLVED]
ooh and i had to add the 'MyField' under the sub _SortedAttributes section in Kernel/System/Stats/Dynamic/TicketList.pm before it showed up on the csv
- 01 Mar 2013, 08:15
- Forum: Developers
- Topic: Add Custom attribute in stat [SOLVED]
- Replies: 7
- Views: 23875
Re: Add Custom attribute in stat
Thanks soo much. It works. :)
Look at Kernel/System/Ticket.pm
look at
sub TicketGet
look for a SQL statement
modify it by appending your field(s) after st.change_by
look below there.
add a line (perhaps after $Ticket{ChangeBy})
like
$Ticket{MyField} = $Row[26];
(if that makes sense).
You ...
Look at Kernel/System/Ticket.pm
look at
sub TicketGet
look for a SQL statement
modify it by appending your field(s) after st.change_by
look below there.
add a line (perhaps after $Ticket{ChangeBy})
like
$Ticket{MyField} = $Row[26];
(if that makes sense).
You ...
- 26 Feb 2013, 16:00
- Forum: Developers
- Topic: Add Custom attribute in stat [SOLVED]
- Replies: 7
- Views: 23875
Re: Add Custom attribute in stat
anyone there????????!!!!
- 25 Feb 2013, 15:40
- Forum: Developers
- Topic: Add Custom attribute in stat [SOLVED]
- Replies: 7
- Views: 23875
Add Custom attribute in stat [SOLVED]
Hello, developers, i would like to pick some data from my otrs DB and display it in my reports i.e display the value as an attribute in stats.
example;
1st- lets say i've altered my otrs database and added a column 'X' to the existing table 'ticket',
2ndly - lets say i want to add a field (MyField ...
example;
1st- lets say i've altered my otrs database and added a column 'X' to the existing table 'ticket',
2ndly - lets say i want to add a field (MyField ...
- 25 Feb 2013, 13:21
- Forum: Help
- Topic: Make service mandatory at ticket creation
- Replies: 0
- Views: 656
Make service mandatory at ticket creation
hello otrs'ers, does anyone know how to make the service field mandatory while creating a ticket? I need some help on how to do it. thanx
- 18 Feb 2013, 07:05
- Forum: Help
- Topic: TIcket Close Time Not showing in STAT
- Replies: 0
- Views: 621
TIcket Close Time Not showing in STAT
hello, i've created some stats to extract a listing of closed tickets and their close time but the close time comes out blank. The weired thing is that sometimes it works fine and sometimes it just doesnt show up. Does anyone know why this could be? ....Some help please. Thanx in advance.
- 05 Feb 2013, 15:12
- Forum: Help
- Topic: Meaning of Attributes in OTRS Stats
- Replies: 4
- Views: 2279
- 05 Feb 2013, 14:13
- Forum: Help
- Topic: Meaning of Attributes in OTRS Stats
- Replies: 4
- Views: 2279
Re: Meaning of Attributes in OTRS Stats
How about you tell us which ones you have no clue about? Obviously named attributes are obvious.
AccountedTime
EscalationDestinationIn
EscalationDestinationTime
EscalationDestinationDate
EscalationTimeWorkingTime
EscalationTime
FirstResponse
FirstResponseInMin
FirstResponseDiffInMin ...
AccountedTime
EscalationDestinationIn
EscalationDestinationTime
EscalationDestinationDate
EscalationTimeWorkingTime
EscalationTime
FirstResponse
FirstResponseInMin
FirstResponseDiffInMin ...
- 05 Feb 2013, 12:51
- Forum: Help
- Topic: Meaning of Attributes in OTRS Stats
- Replies: 4
- Views: 2279
Meaning of Attributes in OTRS Stats
When creating a stat template, otrs has all these attributes that can be dispalyed, Is there some place i can find out what each of them means (or does) exactly? (some of them seem obvious from the naming but some are confusing .... i just want some clarity).... (TIP: you dont have to tell me all ...
- 15 Jan 2013, 13:16
- Forum: General
- Topic: Suspended time (time spend in suspended state)
- Replies: 2
- Views: 1374
Suspended time (time spend in suspended state)
hello all,
When i am generating reports (in the statistics section) , is there a way to extract for how long a ticket was suspended? (i.e time a ticket spent in a suspended state ). How can i go about this
When i am generating reports (in the statistics section) , is there a way to extract for how long a ticket was suspended? (i.e time a ticket spent in a suspended state ). How can i go about this
- 26 Nov 2012, 07:57
- Forum: General
- Topic: notification emails
- Replies: 1
- Views: 982
notification emails
hello;
am not receiving escalation emails for both queue and sla
i configured the Generic.pm,calender and queues
the ticket escalates but doesn't send emails
thanks
am not receiving escalation emails for both queue and sla
i configured the Generic.pm,calender and queues
the ticket escalates but doesn't send emails
thanks
- 08 Nov 2012, 15:47
- Forum: Help
- Topic: escalation reports (statistics) showing 0
- Replies: 3
- Views: 1876
escalation reports (statistics) showing 0
hello every One,
am trying to generate reports on escalated tickets but all the results generated are Zeros ...... Can some one please tell me how this should be done ...step by step coz maybe am not doing it the right way ...
am trying to generate reports on escalated tickets but all the results generated are Zeros ...... Can some one please tell me how this should be done ...step by step coz maybe am not doing it the right way ...
- 01 Nov 2012, 14:57
- Forum: Help
- Topic: location of Agent::EscalationNotifyBefore"
- Replies: 2
- Views: 1281
Re: location of Agent::EscalationNotifyBefore"
cd /opt/otrs/Kernel/System
grep -sir "escalationnotifybefore" *
Result:
GenericAgent/NotifyAgentGroupWithWritePermission.pm: $EscalationType = 'EscalationNotifyBefore';
GenericAgent/NotifyAgentGroupOfCustomQueue.pm: $EscalationType = 'EscalationNotifyBefore';
The reason why i'm interested in ...
grep -sir "escalationnotifybefore" *
Result:
GenericAgent/NotifyAgentGroupWithWritePermission.pm: $EscalationType = 'EscalationNotifyBefore';
GenericAgent/NotifyAgentGroupOfCustomQueue.pm: $EscalationType = 'EscalationNotifyBefore';
The reason why i'm interested in ...
- 01 Nov 2012, 13:42
- Forum: Help
- Topic: location of Agent::EscalationNotifyBefore"
- Replies: 2
- Views: 1281
location of Agent::EscalationNotifyBefore"
hey guys,
where can i find then files with codes responsible for "Agent::EscalationNotifyBefore" ?
where can i find then files with codes responsible for "Agent::EscalationNotifyBefore" ?
- 01 Nov 2012, 12:16
- Forum: Help
- Topic: BackUp.pl failed. (files changed as we read it)
- Replies: 19
- Views: 7917
Re: BackUp.pl failed. (files changed as we read it)
as you might have a lot of old backup files in the OTRS main directory from your tries please delete these first.
i delete all the files as soon as i'v tried. the only babckup i'v left is the only one that ever worked when i had just setup otrs and its only 54mb ...thats all i have about 26gb ...
i delete all the files as soon as i'v tried. the only babckup i'v left is the only one that ever worked when i had just setup otrs and its only 54mb ...thats all i have about 26gb ...
- 01 Nov 2012, 11:47
- Forum: Help
- Topic: BackUp.pl failed. (files changed as we read it)
- Replies: 19
- Views: 7917
Re: BackUp.pl failed. (files changed as we read it)
can the backup files of an otrs (which is not yet even in service) be over 25GB? ..... coz when i left it backing up, it consumed 25gb and it hadnt yet even finished backing up....itwas still going!!!!!! but server had only 30gb and everything else started to stall!!!jojo wrote:well, than get more space
- 01 Nov 2012, 10:52
- Forum: Help
- Topic: BackUp.pl failed. (files changed as we read it)
- Replies: 19
- Views: 7917
Re: BackUp.pl failed. (files changed as we read it)
jojo wrote:as I already said don't use a subdirectory of /opt/otrs as target directory for the backup!
yes jojo, i followed your advice .... i'm already using /usr/otrs_backup (i hope its fine, is it?) to back up my otrs. the backup just keeps on goes on until i run out of storage space on the server.
- 01 Nov 2012, 07:41
- Forum: Help
- Topic: BackUp.pl failed. (files changed as we read it)
- Replies: 19
- Views: 7917
Re: BackUp.pl failed. (files changed as we read it)
hey, i think this might work but do have any ideas which files to exclude? i have tried to exclude the files under the var directory but i still have the same issue.crythias wrote:Problem with tar. One solution: adjust backup.pl tar to ignore it.
#newbie
- 30 Oct 2012, 14:52
- Forum: Help
- Topic: BackUp.pl failed. (files changed as we read it)
- Replies: 19
- Views: 7917
Re: BackUp.pl failed. (files changed as we read it)
ok this is weired i've done "./backup.pl -d /opt/Mybackups" ....guess wat,.....same stuff aaaargh!!!jojo wrote:the backup directory should not be in the /opt/otrs directory as this directory will be backuped (this causes the error message)
so try -d someotherbackupdirectory
- 30 Oct 2012, 14:37
- Forum: Help
- Topic: BackUp.pl failed. (files changed as we read it)
- Replies: 19
- Views: 7917
Re: BackUp.pl failed. (files changed as we read it)
This is the command i am running ...tell me if its not the right one " ./backup.pl -d /opt/otrs/backup"jojo wrote:please show exactly the command and the way you are running this command
- 29 Oct 2012, 16:13
- Forum: Help
- Topic: BackUp.pl failed. (files changed as we read it)
- Replies: 19
- Views: 7917
Re: BackUp.pl failed. (files changed as we read it)
No luck, i've tried to specify the options but it still gives me the same error .....jojo wrote:backup.pl will terminyte if run without htis option
- 29 Oct 2012, 13:28
- Forum: Help
- Topic: BackUp.pl failed. (files changed as we read it)
- Replies: 19
- Views: 7917
Re: BackUp.pl failed. (files changed as we read it)
i didnt specify it ...i just run "backup.pl -d" without specifying a directoryjojo wrote:which directory are you using for the -d flag?
- 29 Oct 2012, 11:35
- Forum: Help
- Topic: TriggerEscalationStopEvents called for ArticleCreate
- Replies: 0
- Views: 691
TriggerEscalationStopEvents called for ArticleCreate
hello guys,
whenever i create a ticket i get a "TriggerEscalationStopEvents called for ArticleCreate" error in the system logs. Does anyone know what causes such an error?
and could it be one of the reasons for my escalation notification problems?
<newbie>
whenever i create a ticket i get a "TriggerEscalationStopEvents called for ArticleCreate" error in the system logs. Does anyone know what causes such an error?
and could it be one of the reasons for my escalation notification problems?
<newbie>
- 29 Oct 2012, 11:26
- Forum: Help
- Topic: BackUp.pl failed. (files changed as we read it)
- Replies: 19
- Views: 7917
Re: BackUp.pl failed. (files changed as we read it)
i just run the backup.pl script. (see the script attached)jojo wrote:please show
- your backup command including parameters
- your OTRS Home directory
my home directory is "/opt/otrs/"
- 25 Oct 2012, 07:43
- Forum: Help
- Topic: BackUp.pl failed. (files changed as we read it)
- Replies: 19
- Views: 7917
BackUp.pl failed. (files changed as we read it)
Hello everyone,
I'm trying to back my otrs before i do some major changes to it. Each time i run backup.pl it backs up conifgs, database and when it gets to Apllications it says
'file changed as we read it'. Some one please help me solve this. thankx in advance.
I'm trying to back my otrs before i do some major changes to it. Each time i run backup.pl it backs up conifgs, database and when it gets to Apllications it says
'file changed as we read it'. Some one please help me solve this. thankx in advance.
- 24 Oct 2012, 14:16
- Forum: Help
- Topic: My escalation notify before is not working
- Replies: 6
- Views: 2459
Re: My escalation notify before is not working
yes they are in my queuejojo wrote:does the agent have the queue of the ticket in "My Queues"
- 24 Oct 2012, 13:31
- Forum: Help
- Topic: My escalation notify before is not working
- Replies: 6
- Views: 2459
Re: My escalation notify before is not working
Yes, it is configured per Escalation ...(i.e supposed to notify for each escalation).jojo wrote:do you have a warning level configured per Escalation?
- 24 Oct 2012, 13:23
- Forum: Help
- Topic: My escalation notify before is not working
- Replies: 6
- Views: 2459
Re: My escalation notify before is not working
I've checked it. Its running.jojo wrote:check if your cronjobs are running
- 24 Oct 2012, 12:11
- Forum: Help
- Topic: My escalation notify before is not working
- Replies: 6
- Views: 2459
My escalation notify before is not working
Hi once again. My escalation notify before is not working even after making changes to generic-agent.pm.
Does anyone know how i can solve this? .. FYI ...i am a newbie!!!!!!!
generic-agent.pm looks like this after uncommenting these lines
use vars qw($VERSION @ISA @EXPORT %Jobs);
require ...
Does anyone know how i can solve this? .. FYI ...i am a newbie!!!!!!!
generic-agent.pm looks like this after uncommenting these lines
use vars qw($VERSION @ISA @EXPORT %Jobs);
require ...
- 24 Oct 2012, 12:00
- Forum: Help
- Topic: customer<->config items
- Replies: 2
- Views: 1174
Re: customer<->config items
thanx. I have seen it. 
- 24 Oct 2012, 10:14
- Forum: Help
- Topic: customer<->config items
- Replies: 2
- Views: 1174
customer<->config items
Hi guys
How do i attached config items to customers?
i.e customer<->config items
How do i attached config items to customers?
i.e customer<->config items