Data storing and chart


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Data storing and chart
# 1  
Old 03-10-2010
Data storing and chart

I apologize if this has been posted before but I have been doing a lot of searching and I have not found any real answers, this is quite possibly due to that I may not be searching for the right terms or something. Little bit of info about my situation is that I'm a newbie as you probably guessed already and I am running a Debian server as a game server.

What I am trying to do is store the valueble statistical data related to the game for later analysis to help improve/optimize/diagnose. This means that I need to store data over long periods of time for example the number of users online or the number of active game rooms that are active. Then with the data that is stored I would like to be able to pull up daily/weekly/monthly/yearly charts through web/apache or something but I need visual charts. This data that is to be stored is only available on the Debian server side and is in no way available to any of the clients. This data will also only ever be viewed by me or possibly anyone who is part of the project.

I am well aware of the fact that I can just store the data myself into mysql with timestamps and other related data and then use a php type of chart creating 3rd party app or create my own charts through php/apache. But I don't want to do this because it creates more work for me and that is what I'm trying to avoid because working on the game project alone is more than enough work for me.

So what I am asking is that if someone can point me in the right direction of any 3rd party app that does this that I can look into or possibly other solutions that I am unaware of that would suite these needs. I would appreciate any info on this.
# 2  
Old 03-14-2010
Given what you are looking to do, a future proof solution will indeed involve a webserver, php scripting, a database (sqlite would be a good choice, since it is shipped with the more recent versions of php) and a graphing library (jpgraph is good choice here).
If you first want to experiment with what exactly you want to visualise, then google charts would come to mind, particularly because it can be done client side.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Storing data in perl 2D array

Respected All, Kindly help me out. I have got file listings in a directory like this: -rw-r--r-- 1 root root 115149 2011-11-17 07:15 file1.stat.log -rw-r--r-- 1 root root 115149 2011-11-18 08:15 file2.stat.log -rw-r--r-- 1 root root 115149 2011-11-19 09:15 file3.stat.log -rw-r--r-- 1... (2 Replies)
Discussion started by: teknokid1
2 Replies

2. UNIX for Dummies Questions & Answers

Storing data from a table into a csv file

Hi I need to write a bash script to take the data stored in 3 oracle tables .. and filter them and store the results in a csv file. It is an Oracle database Thank you (1 Reply)
Discussion started by: ladyAnne
1 Replies

3. Shell Programming and Scripting

Filtering some data and storing the remaing to a variable.

Hi, i have a problem writing a script. Actually i have many files which contains some data, now the last line has some data as in the format : 2556||04-04-10 now i want to do tail -1 filename.txt and store the result into a variable which will be used later for some other calculations. My... (7 Replies)
Discussion started by: fidelis
7 Replies

4. UNIX and Linux Applications

help needed- data analysis-table-chart-2d plot software

Hi all, I posted the same message under 'Kaleidagraph like software for Ubuntu' thread. I guess there may not be many people familiar with Kaleidagraph. So I post my message under another subject name. I need a tool for Ubuntu 8.10, -which is quick and easy to learn and use (as I am... (1 Reply)
Discussion started by: apprentice
1 Replies

5. Shell Programming and Scripting

Extraction of data from multiple text files, and creation of a chart

Hello dear friends, My problem as explained below seems really basic. Fact is that I'm totally new to programming, and have only a week to produce a script ( CShell or Perl ? ) to perform this action. While searching on the forums, I found a command that could help me, but I don't know... (2 Replies)
Discussion started by: ackheron
2 Replies

6. UNIX for Dummies Questions & Answers

Storing data to many files

Please help me store the content of Input file to many files. Input file: record a b c record d record e f record ..... Create file1: a b c Create file2: (1 Reply)
Discussion started by: buddyme
1 Replies

7. Shell Programming and Scripting

Splitting the data and storing it into 2 variables

Hi, I have a file in the given format: |aaa |hhh |fat hat chat |make sure I need to get store in a variable,say 'error' the value of the string 'fat hat chat' In short, echo $error should give the result fat hat chat Is this possible using awk? Also, can this be split.For... (10 Replies)
Discussion started by: jisha
10 Replies

8. UNIX for Dummies Questions & Answers

Storing data of files

Hi, How to store datas of the file into a string? Thanks in advance.. (1 Reply)
Discussion started by: Fr0z3n999
1 Replies

9. Shell Programming and Scripting

awk - storing data in variables

In AWK script how do I store data in variables for later use. I have a multiline input and I do not want to print the data read on the console Thnaks in advance. Nilotpal. (7 Replies)
Discussion started by: 2nilotpal
7 Replies
Login or Register to Ask a Question