Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 132 for syslog (0.14 sec)

  1. src/log/syslog/syslog.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build !windows && !plan9
    
    package syslog
    
    import (
    	"errors"
    	"fmt"
    	"log"
    	"net"
    	"os"
    	"strings"
    	"sync"
    	"time"
    )
    
    // The Priority is a combination of the syslog facility and
    // severity. For example, [LOG_ALERT] | [LOG_FTP] sends an alert severity
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 23 22:56:07 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  2. src/log/syslog/syslog_test.go

    		t.Fatalf("LOG_LOCAL7 has wrong value")
    	}
    	if testing.Short() {
    		// Depends on syslog daemon running, and sometimes it's not.
    		t.Skip("skipping syslog test during -short")
    	}
    
    	s, err := New(LOG_INFO|LOG_USER, "the_tag")
    	if err != nil {
    		if err.Error() == "Unix syslog delivery error" {
    			t.Skip("skipping: syslogd not running")
    		}
    		t.Fatalf("New() failed: %s", err)
    	}
    	// Don't send any messages.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 12 16:09:24 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  3. api/go1.14.txt

    pkg log/syslog (freebsd-arm64), const LOG_ERR = 3
    pkg log/syslog (freebsd-arm64), const LOG_ERR Priority
    pkg log/syslog (freebsd-arm64), const LOG_FTP = 88
    pkg log/syslog (freebsd-arm64), const LOG_FTP Priority
    pkg log/syslog (freebsd-arm64), const LOG_INFO = 6
    pkg log/syslog (freebsd-arm64), const LOG_INFO Priority
    pkg log/syslog (freebsd-arm64), const LOG_KERN = 0
    pkg log/syslog (freebsd-arm64), const LOG_KERN Priority
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 20:31:46 UTC 2023
    - 508.9K bytes
    - Viewed (0)
  4. api/go1.16.txt

    pkg log/syslog (darwin-arm64), const LOG_ERR = 3
    pkg log/syslog (darwin-arm64), const LOG_ERR Priority
    pkg log/syslog (darwin-arm64), const LOG_FTP = 88
    pkg log/syslog (darwin-arm64), const LOG_FTP Priority
    pkg log/syslog (darwin-arm64), const LOG_INFO = 6
    pkg log/syslog (darwin-arm64), const LOG_INFO Priority
    pkg log/syslog (darwin-arm64), const LOG_KERN = 0
    pkg log/syslog (darwin-arm64), const LOG_KERN Priority
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 02 16:30:41 UTC 2022
    - 479.2K bytes
    - Viewed (0)
  5. api/go1.20.txt

    pkg log/syslog (freebsd-riscv64), const LOG_EMERG = 0 #53466
    pkg log/syslog (freebsd-riscv64), const LOG_EMERG Priority #53466
    pkg log/syslog (freebsd-riscv64), const LOG_ERR = 3 #53466
    pkg log/syslog (freebsd-riscv64), const LOG_ERR Priority #53466
    pkg log/syslog (freebsd-riscv64), const LOG_FTP = 88 #53466
    pkg log/syslog (freebsd-riscv64), const LOG_FTP Priority #53466
    pkg log/syslog (freebsd-riscv64), const LOG_INFO = 6 #53466
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 21:23:32 UTC 2023
    - 602.6K bytes
    - Viewed (0)
  6. cni/README.md

    - Set: `values.global.logging.level="cni:debug,ambient:debug"`
    - Inspect the pod logs of a `istio-cni` Daemonset pod on a specific node.
    
    #### From a specific node syslog
    
    The CNI plugins are executed by threads in the `kubelet` process.  The CNI plugins logs end up the syslog
    under the `kubelet` process. On systems with `journalctl` the following is an example command line
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  7. src/go/build/deps_test.go

    	FMT, log/internal
    	< log;
    
    	log, log/slog !< crypto/tls, database/sql, go/importer, testing;
    
    	FMT, log, net
    	< log/syslog;
    
    	RUNTIME
    	< log/slog/internal, log/slog/internal/buffer;
    
    	FMT,
    	encoding, encoding/json,
    	log, log/internal,
    	log/slog/internal, log/slog/internal/buffer,
    	slices
    	< log/slog
    	< log/slog/internal/slogtest, log/slog/internal/benchmarks;
    
    	NET, log
    	< net/mail;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 16:41:13 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  8. cluster/gce/windows/k8s-node-setup.psm1

    [PARSER]
        Name        syslog-rfc5424
        Format      regex
        Regex       ^\<(?<pri>[0-9]{1,5})\>1 (?<time>[^ ]+) (?<host>[^ ]+) (?<ident>[^ ]+) (?<pid>[-0-9]+) (?<msgid>[^ ]+) (?<extradata>(\[(.*?)\]|-)) (?<message>.+)$
        Time_Key    time
        Time_Format %Y-%m-%dT%H:%M:%S.%L%z
        Time_Keep   On
    
    [PARSER]
        Name        syslog-rfc3164-local
        Format      regex
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64_gccgo.go

    int fdatasync(int);
    int getpgid(int);
    int getpgrp();
    int getpid();
    int getppid();
    int getpriority(int, int);
    int getrusage(int, uintptr_t);
    int getsid(int);
    int kill(int, int);
    int syslog(int, uintptr_t, size_t);
    int mkdir(int, uintptr_t, unsigned int);
    int mkdirat(int, uintptr_t, unsigned int);
    int mkfifo(uintptr_t, unsigned int);
    int mknod(uintptr_t, unsigned int, int);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 30.9K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/syscall_aix.go

    //sysnb	Getrusage(who int, rusage *Rusage) (err error)
    //sysnb	Getsid(pid int) (sid int, err error)
    //sysnb	Kill(pid int, sig Signal) (err error)
    //sys	Klogctl(typ int, buf []byte) (n int, err error) = syslog
    //sys	Mkdir(dirfd int, path string, mode uint32) (err error)
    //sys	Mkdirat(dirfd int, path string, mode uint32) (err error)
    //sys	Mkfifo(path string, mode uint32) (err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 16.1K bytes
    - Viewed (0)
Back to top