source s_remote_logs {
udp(port(514));
};
destination d_remote_logs {
file("/archive/logs/HOSTS/$HOST_FROM/$FACILITY/$YEAR$MONTH/$FACILITY$YEAR$MONTH$DAY" create_dirs(yes) );
};
log {
source(s_remote_logs); destination(d_remote_logs);
};*.* @<logserver ip>:514
archive/
└── logs
└── HOSTS
├── 10.10.10.10
│ ├── authpriv
│ │ ├── 201312
│ │ └── 201407
│ ├── cron
│ │ ├── 201312
│ │ ├── 201407
│ │ └── 201408
│ ├── daemon
│ │ ├── 201312
│ │ ├── 201407
│ │ └── 201408
│ ├── syslog
│ │ ├── 201407
│ │ └── 201408
│ └── user
│ ├── 201312
│ ├── 201407
│ └── 201408
└── 10.10.10.55
├── authpriv
│ ├── 201407
│ └── 201408
├── cron
│ ├── 201407
│ └── 201408
├── daemon
│ ├── 201407
│ └── 201408
├── kern
│ └── 201407
├── syslog
│ ├── 201407
│ └── 201408
└── user
└── 201407--
You received this message because you are subscribed to the Google Groups "Fluentd Google Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email to fluentd+u...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Elasticsearch is search engine, not storage.
So I think using Elasticsearch as a storage is high cost
vmixus,
At the end of the day, no database solution is categorically better than others. Different databases (or more generically storage systems) have relative strengths and weaknesses, and it depends so much on your needs, requirements and constraints (for example, in your case, cloud services seem to be out of question). The best I can do is to lay out available options, and promulgating a blanket recommendation would be the worst advice I can give you.
If you can shed some more light on your requirements (beyond the fact this is for long term storage, no cloud vendor, that it needs to be a database. For example, what databases have you considered thus far?), other might be able to weigh in and share their experiences.
Kiyoto