4339 links
  • Arnaud's links
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
Links per page: 20 50 100
◄Older
page 1 / 3
42 results tagged log x
  • thumbnail
    jorgebastida/awslogs: AWS CloudWatch logs for Humans™
    12 апреля 2023 г., 11:34:17 GMT+2 - permalink - archive.org - https://github.com/jorgebastida/awslogs
    cloudwatch eks log tools
  • thumbnail
    A Comprehensive Guide to Structured Logging in Go | Better Stack Community

    via thomas Lac

    17 марта 2023 г., 09:43:56 GMT+1 - permalink - archive.org - https://betterstack.com/community/guides/logging/logging-in-go/
    go log
  • thumbnail
    logging - How to work with concurrent logs in golang? - Stack Overflow
    1 декабря 2022 г., 17:02:25 GMT+1 - permalink - archive.org - https://stackoverflow.com/questions/38666433/how-to-work-with-concurrent-logs-in-golang
    go log routine
  • thumbnail
    https://github.com/stern/stern
    22 марта 2022 г., 12:54:25 GMT+1 - permalink - archive.org - https://github.com/stern/stern
    k8s log
  • Python logging - under the hood
    30 ноября 2020 г., 15:55:54 GMT+1 - permalink - archive.org - https://blog.urbanpiper.com/understanding-python-logging-library/
    log python
  • Note: Replace literal \n with actual newline
    sed 's/\\n/\n/g' /tmp/t
    30 сентября 2020 г., 11:49:48 GMT+2 * - permalink - archive.org - https://links.infomee.fr/?cXcMlg
    backslash literal log logs n replace sed
  • Fluent Bit
    23 июля 2020 г., 11:05:20 GMT+2 - permalink - archive.org - https://docs.datadoghq.com/fr/integrations/fluentbit/#configuration-parameters
    datadog ecs log
  • Logging Cookbook — Python 3.8.3rc1 documentation
    14 мая 2020 г., 09:41:12 GMT+2 - permalink - archive.org - https://docs.python.org/3/howto/logging-cookbook.html
    cookbook log python
  • thumbnail
    GitHub - timberio/vector: A High-Performance, Logs, Metrics, & Events Router

    via Doo

    10 октября 2019 г., 16:07:21 GMT+2 - permalink - archive.org - https://github.com/timberio/vector
    log logs
  • wercker/stern: ⎈ Multi pod and container log tailing for Kubernetes
    7 июня 2019 г., 08:21:23 GMT+2 - permalink - archive.org - https://github.com/wercker/stern
    k8s log
  • boz/kail: kubernetes log viewer

    un projet similaire à kubetail

    25 марта 2019 г., 22:34:58 GMT+1 - permalink - archive.org - https://github.com/boz/kail
    k8s kubetail log tail
  • Services - Kubernetes

    How to configure LoadBalancer (ELB) populated by k8s in aws (eks)

    9 февраля 2019 г., 12:12:15 GMT+1 - permalink - archive.org - https://kubernetes.io/docs/concepts/services-networking/service/#elb-access-logs-on-aws
    elb k8s log
  • mod_log_config - Apache HTTP Server Version 2.4

    %{VARNAME}o The contents of VARNAME: header line(s) in the reply.
    %{VARNAME}i The contents of VARNAME: header line(s) in the request sent to the server.

    22 декабря 2017 г., 14:37:08 GMT+1 - permalink - archive.org - http://httpd.apache.org/docs/current/mod/mod_log_config.html#logformat
    apache header log
  • Logging HOWTO — Python 3.6.2rc2 documentation

    python3 log to file AND stdout
    import logging
    logging.basicConfig(handlers=[logging.FileHandler('/var/log/runner/process1.log'),logging.StreamHandler()],format='%(asctime)s %(levelname)s %(message)s',level=logging.INFO)

    logging.info('foo')

    Encore mieux pour supporter le logrotate sans copytruncate :
    import logging.handlers
    logging.basicConfig(handlers=[logging.handlers.WatchedFileHandler('/var/log/worker/worker1.log'),logging.StreamHandler()],format='%(asctime)s %(levelname)s %(message)s',level=logging.INFO)

    /var/log/worker/*.log {
    monthly
    rotate 12
    compress
    delaycompress
    missingok
    notifempty
    create 644 root root
    }

    Python 2:

    import logging as loggingg

    logging = loggingg.getLogger('simple_example')
    logging.setLevel(loggingg.INFO)

    formatter = loggingg.Formatter('%(asctime)s %(levelname)s %(message)s')

    console_handler = loggingg.StreamHandler()
    console_handler.setLevel(loggingg.INFO)
    console_handler.setFormatter(formatter)

    file_handler = loggingg.FileHandler('/var/log/worker/worker3.log')
    file_handler.setLevel(loggingg.INFO)
    file_handler.setFormatter(formatter)

    logging.addHandler(console_handler)
    logging.addHandler(file_handler)

    11 июля 2017 г., 10:05:21 GMT+2 * - permalink - archive.org - https://docs.python.org/3/howto/logging.html
    log logrotate python
  • thumbnail
    Configure logging drivers - Docker Documentation

    Logging option

    20 апреля 2017 г., 16:27:25 GMT+2 - permalink - archive.org - https://docs.docker.com/engine/admin/logging/overview/#syslog
    docker log
  • thumbnail
    Symfony and Monolog, how use Processor in your project: a practical example « Stefano Alletti
    24 марта 2017 г., 17:09:44 GMT+1 - permalink - archive.org - https://stefanoalletti.wordpress.com/2017/03/09/symfony-and-monolog-how-use-processor-in-your-project/
    log monolog php symfony
  • thumbnail
    logging - How to log into a file for a python & bottle web server? - Stack Overflow

    import logging
    logging.basicConfig(filename='log.txt', format=logging.BASIC_FORMAT)
    logging.error('OH NO!')
    try:
    raise Exception('Foo')
    except:
    logging.exception("Oops:")

    2 марта 2017 г., 20:56:16 GMT+1 - permalink - archive.org - http://stackoverflow.com/questions/15444695/how-to-log-into-a-file-for-a-python-bottle-web-server
    bottle log python
  • The git pickaxe

    Or "how to search text in git diff history"
    git log -p -S "string"

    23 февраля 2017 г., 10:40:45 GMT+1 * - permalink - archive.org - http://www.philandstuff.com/2014/02/09/git-pickaxe.html
    git log pickaxe search
  • Note: function pour log en bash

    Je me mets ça de côté pour gagner du temps la prochaine fois

    !/bin/bash

    logfile=/tmp/logfile.log
    errorfile=/tmp/error.log

    function log() {
    echo -e "\e[34m\e[1m[$(date +%Y-%m-%d) $(date +%H:%M:%S)] $1\e[0m" | tee -a /tmp/logfile.log
    }

    function logerror() {
    echo -e "\e[91m\e[1m[$(date +%Y-%m-%d) $(date +%H:%M:%S)] $1\e[0m" | tee -a /tmp/logfile.log
    }

    log "prout"
    logerror "pwet"

    10 февраля 2017 г., 10:29:21 GMT+1 - permalink - archive.org - https://links.infomee.fr/?tQ0ssA
    bash function log
  • Multicontainer Docker Configuration - AWS Elastic Beanstalk

    TIL

    Beanstalk is a little bit... magic. Dunno yet if its good or not :

    Elastic Beanstalk creates log volumes on the container instance, one for each container, at /var/log/containers/containername. These volumes are named awseb-logs-containername and should be mounted to the location within the container file structure where logs are written.

    For example, the following mount point maps the nginx log location in the container to the Elastic Beanstalk–generated volume for the nginx-proxy container.

    {
    "sourceVolume": "awseb-logs-nginx-proxy",
    "containerPath": "/var/log/nginx"
    }

    And all this logs can be copied into s3 automagically: http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/command-options-general.html#command-options-general-elasticbeanstalkhostmanager

    2 февраля 2017 г., 15:22:37 GMT+1 - permalink - archive.org - http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/create_deploy_docker_v2config.html#create_deploy_docker_v2config_dockerrun_format
    aws beanstalk log logs
Links per page: 20 50 100
◄Older
page 1 / 3
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation