summary refs log tree commit diff
path: root/LibSystemdCli.Models/SystemdJournalLogItem.cs
blob: c829378c03b294a44916dabb73af42b7ca697e82 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
using System.Text.Json.Serialization;

namespace LibSystemdCli;

public class SystemdJournalLogItem {
    [JsonPropertyName("_BOOT_ID")]
    public string BootId { get; set; } = null!;
    
    [JsonPropertyName("__CURSOR")]
    public string Cursor { get; set; } = null!;
    
    [JsonPropertyName("_SYSTEMD_INVOCATION_ID")]
    public string SystemdInvocationId { get; set; } = null!;
    
    [JsonPropertyName("_MACHINE_ID")]
    public string MachineId { get; set; } = null!;
    
    [JsonPropertyName("__SEQNUM")]
    public string SequenceNumber { get; set; } = null!;
    
    [JsonPropertyName("_RUNTIME_SCOPE")]
    public string RuntimeScope { get; set; } = null!;
    
    [JsonPropertyName("__SEQNUM_ID")]
    public string SequenceNumberId { get; set; } = null!;
    
    [JsonPropertyName("_HOSTNAME")]
    public string Hostname { get; set; } = null!;
    
    [JsonPropertyName("SYSLOG_FACILITY")]
    public string SyslogFacility { get; set; } = null!;
    
    [JsonPropertyName("_COMM")]
    public string Comm { get; set; } = null!;
    
    [JsonPropertyName("SYSLOG_IDENTIFIER")]
    public string SyslogIdentifier { get; set; } = null!;
    
    [JsonPropertyName("_TRANSPORT")]
    public string Transport { get; set; } = null!;
    
    [JsonPropertyName("_GID")]
    public string Gid { get; set; } = null!;
    
    [JsonPropertyName("__MONOTONIC_TIMESTAMP")]
    public string MonotonicTimestamp { get; set; } = null!;
    
    [JsonPropertyName("PRIORITY")]
    public string Priority { get; set; } = null!;
    
    [JsonPropertyName("_SYSTEMD_SLICE")]
    public string SystemdSlice { get; set; } = null!;
    
    [JsonPropertyName("_SYSTEMD_UNIT")]
    public string SystemdUnit { get; set; } = null!;
    
    [JsonPropertyName("_STREAM_ID")]
    public string StreamId { get; set; } = null!;
    
    [JsonPropertyName("_CMDLINE")]
    public string Cmdline { get; set; } = null!;
    
    [JsonPropertyName("__REALTIME_TIMESTAMP")]
    public string RealtimeTimestamp { get; set; } = null!;
    
    [JsonPropertyName("_SYSTEMD_CGROUP")]
    public string SystemdCgroup { get; set; } = null!;
    
    [JsonPropertyName("_PID")]
    public string Pid { get; set; } = null!;
    
    [JsonPropertyName("MESSAGE")]
    public string Message { get; set; } = null!;
    
    [JsonPropertyName("_UID")]
    public string Uid { get; set; } = null!;
    
    [JsonPropertyName("_CAP_EFFECTIVE")]
    public string CapEffective { get; set; } = null!;
    
    [JsonPropertyName("_EXE")]
    public string Exe { get; set; } = null!;
}