I'm integrating Loggly logging framework into my AngularJS client side app and although I'm using javascript minification and obfuscation, Loggly token is still easily discoverable in source…
I'm using the winston-loggly module in a Node app in order to send logging information to Loggly. My logger is instantiated like so:
var logger = new(winston.Logger)({
transports: [
new (winston.transports.Console)({ level: 'debug' }),
new…
I want to try Loggly in my new PaaS python app, as I usually code against a linux server and just use the standard rotating file handler. This presents an issue as their documented configuration only covers using a .conf file and as they have a few…
Is there any way to set limit in Loggly to take only last seven days logs information, other must be automatically deleted and than Loggly not be full because it will take only few days information.
Thanks
I am trying to configure loggly in apache in my ubuntu machine.
What I have done is
curl -O https://www.loggly.com/install/configure-apache.sh
sudo bash configure-apache.sh -a XXXXXX -u XXXXXX
After entering the last line it's saying
ERROR: Apache…
I want to log stdout from some programs to loggly. There are a few simple utilities out there that I've found (e.g. https://github.com/meatballhat/loggly-pipe and https://github.com/segmentio/loggly-cat), but they seem like they're overkill.
Could…
I'm trying to use the Monolog Loggly handler in Symfony2 but can't get it to work:
# config.yml
monolog:
handlers:
main:
type: stream
token: my-loggly-token
level: info
handler: loggly
…
We have a Scala Play app and we are using the LogglyBatchAppender. But, all our environments (dev, staging, prod) logs are being mixed up on loggly. This says we can group by sources or hostnames or tags but hostname info is not being attached to…
I'm running a Flask app on Heroku. I've connected the logs output to Loggly, however trying Loggly's verify step, I receive the following message:
We received your logs but they do not appear to use one of our
automated parsing formats. Please…
Hello could you help me with this problem:
Loggly I'm using C #, and I want to make a simple log, I found something similar to this:
var logger = new Logger("KEY", "logs-01.loggly.com");
logger.Log("Hello World¡¡¡");
but does not work, the relevant…
I have a nodejs (express) app running on heroku.
I need to keep a short history of logs (up to a day or so).
I need to be able to dig in to the stack trace of any errors being thrown
I have been able to solve the first two by using Loggly but I…
Trying to set up loggly with winston, and nothing shows up! I tried a catch-all source group:
And tried a simple info log:
winston = require 'winston'
Loggly = require('winston-loggly').Loggly
winston.add Loggly, {
subdomain: "my-subdomain",
…
I'm using fluent-bit 2.1.4 in an AWS EKS cluster to ship container logs to loggly. When given properly formatted json in the 'log' field, loggly will parse it out so the fields can be easily used to filter, search, generate metrics, and some other…
Giving a try to Loggly / AppOptics.
I connected a Linux host and started getting some stats for the host.
I then added Nginx and Mysql plugins following the setup instructions, but in the dashboards for Nginx/Mysql for every metric I see "There is…
I have a small ASP.NET Core 3.1 project that should execute the Odata request and then log either info or exception into the Loggly. I'm using Serilog for this.
But for some reason, it only sends the very first message from the Program.cs only…