feat: notification support (#640)

This commit is contained in:
Eli Bosley
2023-05-18 11:34:41 -04:00
committed by GitHub
parent d6f386a992
commit 9479fd7d09
141 changed files with 3710 additions and 144 deletions

View File

@@ -78,29 +78,13 @@ jobs:
git config --global url."https://github.com/".insteadOf
ssh://git@github.com/
- name: Install node
uses: actions/setup-node@v3
with:
node-version-file: "api/.nvmrc"
- name: Build Docker Compose
run: |
docker network create mothership_default
docker-compose build builder
# - name: Get npm cache directory
# id: npm-cache
# run: echo "::set-output name=dir::$(npm config get cache)"
# - name: Load npm cache
# uses: actions/cache@v3
# with:
# path: ${{ steps.npm-cache.outputs.dir }}
# key: ${{ runner.os }}-npm-cache-${{ hashFiles('**/package-lock.json') }}
- name: Install libvirt-dev
run: sudo apt-get update && sudo apt-get install libvirt-dev
- name: Installing node deps
run: npm install
- name: Run unit tests with code coverage
run: npm run coverage
- name: Run Docker Compose
run: docker-compose run builder npm run coverage
build-api:
defaults:

View File

@@ -66,26 +66,12 @@ jobs:
git config --global url."https://github.com/".insteadOf
ssh://git@github.com/
- name: Install node
uses: actions/setup-node@v3
with:
node-version-file: "api/.nvmrc"
# - name: Cache dependencies
# uses: actions/cache@v2
# with:
# path: ~/.npm
# key: npm-${{ hashFiles('package-lock.json') }}
# restore-keys: npm-
- name: Install libvirt-dev
run: sudo apt-get update && sudo apt-get install libvirt-dev
- name: Installing node deps
run: npm ci
- name: Run unit tests with code coverage
run: npm run coverage
- name: Build Docker Compose
run: |
docker network create mothership_default
docker-compose build builder
- name: Run Docker Compose
run: docker-compose run builder npm run coverage
build-api:
defaults:

View File

@@ -31,18 +31,7 @@ generates:
withObjectType: true
plugins:
- add: { content: '/* eslint-disable */' }
src/graphql/generate/validators.ts:
schema:
'${MOTHERSHIP_GRAPHQL_LINK}':
headers:
origin: 'https://forums.unraid.net'
plugins:
- typescript-validation-schema
- add: { content: '/* eslint-disable */'}
config:
importFrom: '@app/graphql/generated/client/graphql'
strictScalars: false
schema: 'zod'
# Generate Types for the API Server
src/graphql/generated/api/types.ts:
schema:
@@ -65,6 +54,24 @@ generates:
presetConfig:
typesPath: '@app/graphql/generated/api/types'
plugins:
- typescript-validation-schema
- typescript-operations
- typed-document-node
- add: { content: '/* eslint-disable */' }
config:
importFrom: '@app/graphql/generated/api/types'
strictScalars: false
schema: 'zod'
withObjectType: true
src/graphql/generated/client/validators.ts:
schema:
'${MOTHERSHIP_GRAPHQL_LINK}':
headers:
origin: 'https://forums.unraid.net'
plugins:
- typescript-validation-schema
- add: { content: '/* eslint-disable */'}
config:
importFrom: '@app/graphql/generated/client/graphql'
strictScalars: false
schema: 'zod'

View File

@@ -1,5 +1,5 @@
[api]
version="3.1.0+948d5ecf"
version="3.1.1+bf51f1f0"
[local]
[notifier]
apikey="unnotify_30994bfaccf839c65bae75f7fa12dd5ee16e69389f754c3b98ed7d5"

View File

@@ -0,0 +1,191 @@
{
"admin": {
"extends": "user",
"permissions": [
{
"resource": "apikey",
"action": "read:any",
"attributes": "*"
},
{
"resource": "array",
"action": "read:any",
"attributes": "*"
},
{
"resource": "cpu",
"action": "read:any",
"attributes": "*"
},
{
"resource": "device",
"action": "read:any",
"attributes": "*"
},
{
"resource": "device/unassigned",
"action": "read:any",
"attributes": "*"
},
{
"resource": "disk",
"action": "read:any",
"attributes": "*"
},
{
"resource": "disk/settings",
"action": "read:any",
"attributes": "*"
},
{
"resource": "display",
"action": "read:any",
"attributes": "*"
},
{
"resource": "docker/container",
"action": "read:any",
"attributes": "*"
},
{
"resource": "docker/network",
"action": "read:any",
"attributes": "*"
},
{
"resource": "info",
"action": "read:any",
"attributes": "*"
},
{
"resource": "license-key",
"action": "read:any",
"attributes": "*"
},
{
"resource": "machine-id",
"action": "read:any",
"attributes": "*"
},
{
"resource": "memory",
"action": "read:any",
"attributes": "*"
},
{
"resource": "notifications",
"action": "read:any",
"attributes": "*"
},
{
"resource": "online",
"action": "read:any",
"attributes": "*"
},
{
"resource": "os",
"action": "read:any",
"attributes": "*"
},
{
"resource": "parity-history",
"action": "read:any",
"attributes": "*"
},
{
"resource": "permission",
"action": "read:any",
"attributes": "*"
},
{
"resource": "servers",
"action": "read:any",
"attributes": "*"
},
{
"resource": "service",
"action": "read:any",
"attributes": "*"
},
{
"resource": "service/emhttpd",
"action": "read:any",
"attributes": "*"
},
{
"resource": "service/unraid-api",
"action": "read:any",
"attributes": "*"
},
{
"resource": "services",
"action": "read:any",
"attributes": "*"
},
{
"resource": "share",
"action": "read:any",
"attributes": "*"
},
{
"resource": "software-versions",
"action": "read:any",
"attributes": "*"
},
{
"resource": "unraid-version",
"action": "read:any",
"attributes": "*"
},
{
"resource": "user",
"action": "read:any",
"attributes": "*"
},
{
"resource": "var",
"action": "read:any",
"attributes": "*"
},
{
"resource": "vars",
"action": "read:any",
"attributes": "*"
},
{
"resource": "vm/domain",
"action": "read:any",
"attributes": "*"
},
{
"resource": "vm/network",
"action": "read:any",
"attributes": "*"
}
]
},
"user": {
"extends": "guest",
"permissions": [
{
"resource": "apikey",
"action": "read:own",
"attributes": "*"
},
{
"resource": "permission",
"action": "read:any",
"attributes": "*"
}
]
},
"guest": {
"permissions": [
{
"resource": "welcome",
"action": "read:any",
"attributes": "*"
}
]
}
}

View File

@@ -0,0 +1,35 @@
[display]
date="%c"
number=".,"
scale="-1"
tabs="1"
users="Tasks:3"
resize="0"
wwn="0"
total="1"
usage="0"
banner="image"
dashapps="icons"
theme="white"
text="1"
unit="C"
warning="70"
critical="90"
hot="45"
max="55"
sysinfo="/Tools/SystemProfiler"
[notify]
entity="1"
normal="1"
warning="1"
alert="1"
unraid="1"
plugin="1"
docker_notify="1"
report="1"
display="0"
date="d-m-Y"
time="H:i"
position="top-right"
path="/app/dev/notifications"
system="*/1 * * * *"

View File

@@ -0,0 +1,6 @@
timestamp=1683699325
event=Appdata Backup
subject=Warning
description=Please check the backup log tab!
importance=warning
message=Container did not started! - Code: Server error

View File

@@ -0,0 +1,5 @@
timestamp=1683223240
event=Community Applications
subject=Application Auto Update
description=dynamix.unraid.net.staging.plg Automatically Updated
importance=normal

View File

@@ -0,0 +1,5 @@
timestamp=1683568807
event=Community Applications
subject=Application Auto Update
description=community.applications.plg Automatically Updated
importance=normal

View File

@@ -0,0 +1,5 @@
timestamp=1683655211
event=Community Applications
subject=Application Auto Update
description=parity.check.tuning.plg Automatically Updated
importance=normal

View File

@@ -0,0 +1,5 @@
timestamp=1683741604
event=Community Applications
subject=Application Auto Update
description=appdata.backup.plg Automatically Updated
importance=normal

View File

@@ -0,0 +1,5 @@
timestamp=1683951054
event=Docker - AirConnect [3d53..ad24]
subject=Notice [UNRAID] - Version update 3d53..ad24
description=A new version of AirConnect is available
importance=normal

View File

@@ -0,0 +1,5 @@
timestamp=1683605449
event=Docker - AirConnect [91bd..76e7]
subject=Notice [UNRAID] - Version update 91bd..76e7
description=A new version of AirConnect is available
importance=normal

View File

@@ -0,0 +1,5 @@
timestamp=1683346254
event=Docker - AirConnect [ca7f..6b17]
subject=Notice [UNRAID] - Version update ca7f..6b17
description=A new version of AirConnect is available
importance=normal

View File

@@ -0,0 +1,5 @@
timestamp=1683432654
event=Docker - PhotoPrism [295d..2ed1]
subject=Notice [UNRAID] - Version update 295d..2ed1
description=A new version of PhotoPrism is available
importance=normal

View File

@@ -0,0 +1,5 @@
timestamp=1684037454
event=Docker - PhotoPrism [906c..d43c]
subject=Notice [UNRAID] - Version update 906c..d43c
description=A new version of PhotoPrism is available
importance=normal

View File

@@ -0,0 +1,5 @@
timestamp=1683346254
event=Docker - binhex-prowlarr [1126..5559]
subject=Notice [UNRAID] - Version update 1126..5559
description=A new version of binhex-prowlarr is available
importance=normal

View File

@@ -0,0 +1,5 @@
timestamp=1683778254
event=Docker - caddy-custom [024e..04d1]
subject=Notice [UNRAID] - Version update 024e..04d1
description=A new version of caddy-custom is available
importance=normal

View File

@@ -0,0 +1,5 @@
timestamp=1684037454
event=Docker - caddy-custom [18da..c9bd]
subject=Notice [UNRAID] - Version update 18da..c9bd
description=A new version of caddy-custom is available
importance=normal

View File

@@ -0,0 +1,5 @@
timestamp=1683864655
event=Docker - caddy-custom [3005..022f]
subject=Notice [UNRAID] - Version update 3005..022f
description=A new version of caddy-custom is available
importance=normal

View File

@@ -0,0 +1,5 @@
timestamp=1683259850
event=Docker - caddy-custom [7c36..343c]
subject=Notice [UNRAID] - Version update 7c36..343c
description=A new version of caddy-custom is available
importance=normal

View File

@@ -0,0 +1,5 @@
timestamp=1683605449
event=Docker - caddy-custom [7f52..acca]
subject=Notice [UNRAID] - Version update 7f52..acca
description=A new version of caddy-custom is available
importance=normal

View File

@@ -0,0 +1,5 @@
timestamp=1684123859
event=Docker - caddy-custom [9f05..b531]
subject=Notice [UNRAID] - Version update 9f05..b531
description=A new version of caddy-custom is available
importance=normal

View File

@@ -0,0 +1,5 @@
timestamp=1683519032
event=Docker - caddy-custom [cf91..b716]
subject=Notice [UNRAID] - Version update cf91..b716
description=A new version of caddy-custom is available
importance=normal

View File

@@ -0,0 +1,5 @@
timestamp=1683691842
event=Docker - caddy-custom [d851..8877]
subject=Notice [UNRAID] - Version update d851..8877
description=A new version of caddy-custom is available
importance=normal

View File

@@ -0,0 +1,5 @@
timestamp=1683432654
event=Docker - caddy-custom [dfd0..0e5d]
subject=Notice [UNRAID] - Version update dfd0..0e5d
description=A new version of caddy-custom is available
importance=normal

View File

@@ -0,0 +1,5 @@
timestamp=1683346254
event=Docker - caddy-custom [e6c6..fbb4]
subject=Notice [UNRAID] - Version update e6c6..fbb4
description=A new version of caddy-custom is available
importance=normal

View File

@@ -0,0 +1,5 @@
timestamp=1683951054
event=Docker - caddy-custom [fcc0..f692]
subject=Notice [UNRAID] - Version update fcc0..f692
description=A new version of caddy-custom is available
importance=normal

View File

@@ -0,0 +1,5 @@
timestamp=1683864655
event=Docker - filestash [6b94..7dd4]
subject=Notice [UNRAID] - Version update 6b94..7dd4
description=A new version of filestash is available
importance=normal

View File

@@ -0,0 +1,5 @@
timestamp=1683691842
event=Docker - jellyfin [2902..af01]
subject=Notice [UNRAID] - Version update 2902..af01
description=A new version of jellyfin is available
importance=normal

View File

@@ -0,0 +1,5 @@
timestamp=1683951054
event=Docker - mariadb [45af..47d4]
subject=Notice [UNRAID] - Version update 45af..47d4
description=A new version of mariadb is available
importance=normal

View File

@@ -0,0 +1,5 @@
timestamp=1683691842
event=Docker - mariadb [e036..3e8e]
subject=Notice [UNRAID] - Version update e036..3e8e
description=A new version of mariadb is available
importance=normal

View File

@@ -0,0 +1,5 @@
timestamp=1683605449
event=Docker - plex [7bfa..19fb]
subject=Notice [UNRAID] - Version update 7bfa..19fb
description=A new version of plex is available
importance=normal

View File

@@ -0,0 +1,5 @@
timestamp=1683605449
event=Docker - qbittorrent [43b9..9adc]
subject=Notice [UNRAID] - Version update 43b9..9adc
description=A new version of qbittorrent is available
importance=normal

View File

@@ -0,0 +1,5 @@
timestamp=1683519032
event=Docker - radarr-4k [62ca..1a81]
subject=Notice [UNRAID] - Version update 62ca..1a81
description=A new version of radarr-4k is available
importance=normal

View File

@@ -0,0 +1,5 @@
timestamp=1683519032
event=Docker - radarr [62ca..1a81]
subject=Notice [UNRAID] - Version update 62ca..1a81
description=A new version of radarr is available
importance=normal

View File

@@ -0,0 +1,5 @@
timestamp=1684037454
event=Docker - rtorrent-rutorrent [a16c..af8b]
subject=Notice [UNRAID] - Version update a16c..af8b
description=A new version of rtorrent-rutorrent is available
importance=normal

View File

@@ -0,0 +1,5 @@
timestamp=1683519032
event=Docker - rtorrent-rutorrent [b722..38c5]
subject=Notice [UNRAID] - Version update b722..38c5
description=A new version of rtorrent-rutorrent is available
importance=normal

View File

@@ -0,0 +1,5 @@
timestamp=1683432654
event=Docker - sonarr [12c7..6b53]
subject=Notice [UNRAID] - Version update 12c7..6b53
description=A new version of sonarr is available
importance=normal

View File

@@ -0,0 +1,5 @@
timestamp=1684123859
event=Docker - sonarr [12c9..01df]
subject=Notice [UNRAID] - Version update 12c9..01df
description=A new version of sonarr is available
importance=normal

View File

@@ -0,0 +1,5 @@
timestamp=1683605449
event=Docker - sonarr [27f9..c81b]
subject=Notice [UNRAID] - Version update 27f9..c81b
description=A new version of sonarr is available
importance=normal

View File

@@ -0,0 +1,5 @@
timestamp=1684037454
event=Docker - sonarr [354f..3ed7]
subject=Notice [UNRAID] - Version update 354f..3ed7
description=A new version of sonarr is available
importance=normal

View File

@@ -0,0 +1,5 @@
timestamp=1683864655
event=Docker - sonarr [6145..3ba7]
subject=Notice [UNRAID] - Version update 6145..3ba7
description=A new version of sonarr is available
importance=normal

View File

@@ -0,0 +1,5 @@
timestamp=1683691842
event=Docker - sonarr [b2f0..9f04]
subject=Notice [UNRAID] - Version update b2f0..9f04
description=A new version of sonarr is available
importance=normal

View File

@@ -0,0 +1,5 @@
timestamp=1683951054
event=Docker - sonarr [bcfd..b7bd]
subject=Notice [UNRAID] - Version update bcfd..b7bd
description=A new version of sonarr is available
importance=normal

View File

@@ -0,0 +1,5 @@
timestamp=1683519032
event=Docker - sonarr [c04c..6b30]
subject=Notice [UNRAID] - Version update c04c..6b30
description=A new version of sonarr is available
importance=normal

View File

@@ -0,0 +1,5 @@
timestamp=1683691842
event=Docker - synclounge [38f9..8503]
subject=Notice [UNRAID] - Version update 38f9..8503
description=A new version of synclounge is available
importance=normal

View File

@@ -0,0 +1,5 @@
timestamp=1683212331
event=Parity Check Tuning
subject=[UNRAID] Array operation will not be restarted
description=Unclean shutdown detected
importance=alert

View File

@@ -0,0 +1,5 @@
timestamp=1683212357
event=Parity Check Tuning
subject=[UNRAID] Automatic unRaid Parity-Check will be started
description=Unclean shutdown detected
importance=warning

View File

@@ -0,0 +1,5 @@
timestamp=1683212414
event=Parity Check Tuning
subject=[UNRAID] Paused
description=Automatic Correcting Parity-Check (0.0% completed)
importance=normal

View File

@@ -0,0 +1,5 @@
timestamp=1683212430
event=Parity Check Tuning
subject=[UNRAID] Paused
description=No array operation in progress (0.0% completed)
importance=normal

View File

@@ -0,0 +1,5 @@
timestamp=1683696603
event=Parity Check Tuning
subject=[UNRAID] Resumed
description=Automatic Correcting Parity-Check (0.0% completed)
importance=normal

View File

@@ -0,0 +1,5 @@
timestamp=1683699512
event=Parity Check Tuning
subject=[UNRAID] Backup running
description=No description
importance=normal

View File

@@ -0,0 +1,5 @@
timestamp=1683699523
event=Parity Check Tuning
subject=[UNRAID] Paused
description=Automatic Correcting Parity-Check (2.7% completed)
importance=normal

View File

@@ -0,0 +1,5 @@
timestamp=1683700590
event=Parity Check Tuning
subject=[UNRAID] Backup no longer running
description=No description
importance=normal

View File

@@ -0,0 +1,5 @@
timestamp=1683700596
event=Parity Check Tuning
subject=[UNRAID] Resumed
description=Automatic Correcting Parity-Check (2.7% completed)
importance=normal

View File

@@ -0,0 +1,5 @@
timestamp=1683730812
event=Parity Check Tuning
subject=[UNRAID] Paused
description=Automatic Correcting Parity-Check (32.6% completed)
importance=normal

View File

@@ -0,0 +1,5 @@
timestamp=1683783001
event=Parity Check Tuning
subject=[UNRAID] Resumed
description=Automatic Correcting Parity-Check (32.6% completed)
importance=normal

View File

@@ -0,0 +1,5 @@
timestamp=1683817213
event=Parity Check Tuning
subject=[UNRAID] Paused
description=Automatic Correcting Parity-Check (59.2% completed)
importance=normal

View File

@@ -0,0 +1,5 @@
timestamp=1683869402
event=Parity Check Tuning
subject=[UNRAID] Resumed
description=Automatic Correcting Parity-Check (59.2% completed)
importance=normal

View File

@@ -0,0 +1,5 @@
timestamp=1683903615
event=Parity Check Tuning
subject=[UNRAID] Paused
description=Automatic Correcting Parity-Check (88.1% completed)
importance=normal

View File

@@ -0,0 +1,5 @@
timestamp=1683955802
event=Parity Check Tuning
subject=[UNRAID] Resumed
description=Automatic Correcting Parity-Check (88.1% completed)
importance=normal

View File

@@ -0,0 +1,5 @@
timestamp=1683691803
event=Plugin - appdata.backup [2023.05.09]
subject=Notice [UNRAID] - Version update 2023.05.09
description=A new version of appdata.backup is available
importance=normal

View File

@@ -0,0 +1,5 @@
timestamp=1683519002
event=Plugin - community.applications [2023.05.07a]
subject=Notice [UNRAID] - Version update 2023.05.07a
description=A new version of community.applications is available
importance=normal

View File

@@ -0,0 +1,5 @@
timestamp=1683519003
event=Plugin - parity.check.tuning [2023.05.07]
subject=Notice [UNRAID] - Version update 2023.05.07
description=A new version of parity.check.tuning is available
importance=normal

View File

@@ -0,0 +1,5 @@
timestamp=1683325569
event=Remote Access Started
subject=Unraid API
description=Remote access has been started
importance=normal

View File

@@ -0,0 +1,5 @@
timestamp=1683325597
event=Remote Access Started
subject=Unraid API
description=Remote access has been started
importance=normal

View File

@@ -0,0 +1,5 @@
timestamp=1683383543
event=Remote Access Started
subject=Unraid API
description=Remote access has been started
importance=normal

View File

@@ -0,0 +1,5 @@
timestamp=1683397158
event=Remote Access Stopped
subject=Unraid API
description=Remote access has been stopped
importance=normal

View File

@@ -0,0 +1,5 @@
timestamp=1683422667
event=Remote Access Stopped
subject=Unraid API
description=Remote access has been stopped
importance=normal

View File

@@ -0,0 +1,5 @@
timestamp=1683820748
event=Remote Access Stopped
subject=Unraid API
description=Remote access has been stopped
importance=normal

View File

@@ -0,0 +1,5 @@
timestamp=1683986670
event=Remote Access Stopped
subject=Unraid API
description=Remote access has been stopped
importance=normal

View File

@@ -0,0 +1,5 @@
timestamp=1684161220
event=Remote Access Stopped
subject=Unraid API
description=Remote access has been stopped
importance=normal

View File

@@ -0,0 +1,5 @@
timestamp=1683971161
event=Unraid Parity check
subject=Notice [UNRAID] - Parity check finished (0 errors)
description=Canceled
importance=warning

View File

@@ -0,0 +1,5 @@
timestamp=1683570896
event=Unraid Server Alert
subject=UPS Alert
description=Power failure on UPS Unraid. Running on batteries.
importance=alert

View File

@@ -0,0 +1,5 @@
timestamp=1683570945
event=Unraid Server Alert
subject=UPS Alert
description=Communications restored with UPS Unraid
importance=normal

View File

@@ -0,0 +1,5 @@
timestamp=1683570980
event=Unraid Server Alert
subject=UPS Alert
description=Communications restored with UPS Unraid
importance=normal

View File

@@ -0,0 +1,5 @@
timestamp=1683571299
event=Unraid Server Alert
subject=UPS Alert
description=Communications restored with UPS Unraid
importance=normal

View File

@@ -0,0 +1,5 @@
timestamp=1683571468
event=Unraid Server Alert
subject=UPS Alert
description=Communications restored with UPS Unraid
importance=normal

View File

@@ -0,0 +1,5 @@
timestamp=1683571535
event=Unraid Server Alert
subject=UPS Alert
description=Communications restored with UPS Unraid
importance=normal

View File

@@ -0,0 +1,5 @@
timestamp=1683571565
event=Unraid Server Alert
subject=UPS Alert
description=Communications restored with UPS Unraid
importance=normal

View File

@@ -0,0 +1,6 @@
timestamp=1683260401
event=Unraid Status
subject=Notice [UNRAID] - array health report [PASS]
description=Array has 9 disks (including parity & pools)
importance=normal
message=Parity - ST18000NM000J-2TV103_ZR585CPY (sdg) - active 28 C [OK]<br>Disk 1 - ST18000NM000J-2TV103_ZR5B1W9X (sdf) - active 32 C [OK]<br>Disk 2 - WDC_WD120EDAZ-11F3RA0_5PJRD45C (sdi) - active 31 C [OK]<br>Disk 3 - WDC_WD120EMAZ-11BLFA0_5PH8BTYD (sde) - active 31 C [OK]<br>Cache - Samsung_SSD_850_EVO_250GB_S2R5NX0H643734Z (sdh) - active 22 C [OK]<br>Cache 2 - KINGSTON_SA2000M8250G_50026B7282669D9E (nvme3n1) - active 31 C [OK]<br>Zpool - CT2000P5PSSD8_22513DA16E6C (nvme0n1) - active 34 C [OK]<br>Zpool 2 - CT2000P5PSSD8_22513DA1657C (nvme1n1) - active 41 C [OK]<br>Zpool 3 - CT2000P5PSSD8_22513DA13F82 (nvme2n1) - active 44 C [OK]<br><br>Last check incomplete on Thu 4 May 2023 11:00:08 AM EDT (yesterday), finding 0 errors.<br>Error code: -4

View File

@@ -0,0 +1,6 @@
timestamp=1683346801
event=Unraid Status
subject=Notice [UNRAID] - array health report [PASS]
description=Array has 9 disks (including parity & pools)
importance=normal
message=Parity - ST18000NM000J-2TV103_ZR585CPY (sdg) - active 26 C [OK]<br>Disk 1 - ST18000NM000J-2TV103_ZR5B1W9X (sdf) - active 29 C [OK]<br>Disk 2 - WDC_WD120EDAZ-11F3RA0_5PJRD45C (sdi) - active 31 C [OK]<br>Disk 3 - WDC_WD120EMAZ-11BLFA0_5PH8BTYD (sde) - active 31 C [OK]<br>Cache - Samsung_SSD_850_EVO_250GB_S2R5NX0H643734Z (sdh) - active 22 C [OK]<br>Cache 2 - KINGSTON_SA2000M8250G_50026B7282669D9E (nvme3n1) - active 31 C [OK]<br>Zpool - CT2000P5PSSD8_22513DA16E6C (nvme0n1) - active 33 C [OK]<br>Zpool 2 - CT2000P5PSSD8_22513DA1657C (nvme1n1) - active 39 C [OK]<br>Zpool 3 - CT2000P5PSSD8_22513DA13F82 (nvme2n1) - active 43 C [OK]<br><br>Last check incomplete on Thu 4 May 2023 11:00:08 AM EDT (2 days ago), finding 0 errors.<br>Error code: -4

View File

@@ -0,0 +1,6 @@
timestamp=1683433201
event=Unraid Status
subject=Notice [UNRAID] - array health report [PASS]
description=Array has 9 disks (including parity & pools)
importance=normal
message=Parity - ST18000NM000J-2TV103_ZR585CPY (sdg) - active 26 C [OK]<br>Disk 1 - ST18000NM000J-2TV103_ZR5B1W9X (sdf) - active 29 C [OK]<br>Disk 2 - WDC_WD120EDAZ-11F3RA0_5PJRD45C (sdi) - active 32 C [OK]<br>Disk 3 - WDC_WD120EMAZ-11BLFA0_5PH8BTYD (sde) - active 32 C [OK]<br>Cache - Samsung_SSD_850_EVO_250GB_S2R5NX0H643734Z (sdh) - active 23 C [OK]<br>Cache 2 - KINGSTON_SA2000M8250G_50026B7282669D9E (nvme3n1) - active 31 C [OK]<br>Zpool - CT2000P5PSSD8_22513DA16E6C (nvme0n1) - active 32 C [OK]<br>Zpool 2 - CT2000P5PSSD8_22513DA1657C (nvme1n1) - active 39 C [OK]<br>Zpool 3 - CT2000P5PSSD8_22513DA13F82 (nvme2n1) - active 43 C [OK]<br><br>Last check incomplete on Thu 4 May 2023 11:00:08 AM EDT (3 days ago), finding 0 errors.<br>Error code: -4

View File

@@ -0,0 +1,6 @@
timestamp=1683519601
event=Unraid Status
subject=Notice [UNRAID] - array health report [PASS]
description=Array has 9 disks (including parity & pools)
importance=normal
message=Parity - ST18000NM000J-2TV103_ZR585CPY (sdg) - active 27 C [OK]<br>Disk 1 - ST18000NM000J-2TV103_ZR5B1W9X (sdf) - active 30 C [OK]<br>Disk 2 - WDC_WD120EDAZ-11F3RA0_5PJRD45C (sdi) - active 32 C [OK]<br>Disk 3 - WDC_WD120EMAZ-11BLFA0_5PH8BTYD (sde) - active 33 C [OK]<br>Cache - Samsung_SSD_850_EVO_250GB_S2R5NX0H643734Z (sdh) - active 24 C [OK]<br>Cache 2 - KINGSTON_SA2000M8250G_50026B7282669D9E (nvme3n1) - active 32 C [OK]<br>Zpool - CT2000P5PSSD8_22513DA16E6C (nvme0n1) - active 33 C [OK]<br>Zpool 2 - CT2000P5PSSD8_22513DA1657C (nvme1n1) - active 39 C [OK]<br>Zpool 3 - CT2000P5PSSD8_22513DA13F82 (nvme2n1) - active 43 C [OK]<br><br>Last check incomplete on Thu 4 May 2023 11:00:08 AM EDT (4 days ago), finding 0 errors.<br>Error code: -4

View File

@@ -0,0 +1,6 @@
timestamp=1683606001
event=Unraid Status
subject=Notice [UNRAID] - array health report [PASS]
description=Array has 9 disks (including parity & pools)
importance=normal
message=Parity - ST18000NM000J-2TV103_ZR585CPY (sdg) - active 27 C [OK]<br>Disk 1 - ST18000NM000J-2TV103_ZR5B1W9X (sdf) - active 30 C [OK]<br>Disk 2 - WDC_WD120EDAZ-11F3RA0_5PJRD45C (sdi) - active 34 C [OK]<br>Disk 3 - WDC_WD120EMAZ-11BLFA0_5PH8BTYD (sde) - active 33 C [OK]<br>Cache - Samsung_SSD_850_EVO_250GB_S2R5NX0H643734Z (sdh) - active 24 C [OK]<br>Cache 2 - KINGSTON_SA2000M8250G_50026B7282669D9E (nvme3n1) - active 32 C [OK]<br>Zpool - CT2000P5PSSD8_22513DA16E6C (nvme0n1) - active 34 C [OK]<br>Zpool 2 - CT2000P5PSSD8_22513DA1657C (nvme1n1) - active 41 C [OK]<br>Zpool 3 - CT2000P5PSSD8_22513DA13F82 (nvme2n1) - active 44 C [OK]<br><br>Last check incomplete on Thu 4 May 2023 11:00:08 AM EDT (5 days ago), finding 0 errors.<br>Error code: -4

View File

@@ -0,0 +1,6 @@
timestamp=1683692401
event=Unraid Status
subject=Notice [UNRAID] - array health report [PASS]
description=Array has 9 disks (including parity & pools)
importance=normal
message=Parity - ST18000NM000J-2TV103_ZR585CPY (sdg) - active 28 C [OK]<br>Disk 1 - ST18000NM000J-2TV103_ZR5B1W9X (sdf) - active 31 C [OK]<br>Disk 2 - WDC_WD120EDAZ-11F3RA0_5PJRD45C (sdi) - active 35 C [OK]<br>Disk 3 - WDC_WD120EMAZ-11BLFA0_5PH8BTYD (sde) - active 33 C [OK]<br>Cache - Samsung_SSD_850_EVO_250GB_S2R5NX0H643734Z (sdh) - active 25 C [OK]<br>Cache 2 - KINGSTON_SA2000M8250G_50026B7282669D9E (nvme3n1) - active 33 C [OK]<br>Zpool - CT2000P5PSSD8_22513DA16E6C (nvme0n1) - active 34 C [OK]<br>Zpool 2 - CT2000P5PSSD8_22513DA1657C (nvme1n1) - active 40 C [OK]<br>Zpool 3 - CT2000P5PSSD8_22513DA13F82 (nvme2n1) - active 44 C [OK]<br><br>Last check incomplete on Thu 4 May 2023 11:00:08 AM EDT (6 days ago), finding 0 errors.<br>Error code: -4

View File

@@ -0,0 +1,6 @@
timestamp=1683778802
event=Unraid Status
subject=Notice [UNRAID] - array health report [PASS]
description=Array has 9 disks (including parity & pools)
importance=normal
message=Parity - ST18000NM000J-2TV103_ZR585CPY (sdg) - active 28 C [OK]<br>Disk 1 - ST18000NM000J-2TV103_ZR5B1W9X (sdf) - active 31 C [OK]<br>Disk 2 - WDC_WD120EDAZ-11F3RA0_5PJRD45C (sdi) - active 33 C [OK]<br>Disk 3 - WDC_WD120EMAZ-11BLFA0_5PH8BTYD (sde) - active 33 C [OK]<br>Cache - Samsung_SSD_850_EVO_250GB_S2R5NX0H643734Z (sdh) - active 24 C [OK]<br>Cache 2 - KINGSTON_SA2000M8250G_50026B7282669D9E (nvme3n1) - active 33 C [OK]<br>Zpool - CT2000P5PSSD8_22513DA16E6C (nvme0n1) - active 34 C [OK]<br>Zpool 2 - CT2000P5PSSD8_22513DA1657C (nvme1n1) - active 40 C [OK]<br>Zpool 3 - CT2000P5PSSD8_22513DA13F82 (nvme2n1) - active 44 C [OK]<br><br>Last check incomplete on Wed 10 May 2023 11:00:07 AM EDT (yesterday), finding 0 errors.<br>Error code: -4

View File

@@ -0,0 +1,6 @@
timestamp=1683865201
event=Unraid Status
subject=Notice [UNRAID] - array health report [PASS]
description=Array has 9 disks (including parity & pools)
importance=normal
message=Parity - ST18000NM000J-2TV103_ZR585CPY (sdg) - active 27 C [OK]<br>Disk 1 - ST18000NM000J-2TV103_ZR5B1W9X (sdf) - active 30 C [OK]<br>Disk 2 - WDC_WD120EDAZ-11F3RA0_5PJRD45C (sdi) - active 33 C [OK]<br>Disk 3 - WDC_WD120EMAZ-11BLFA0_5PH8BTYD (sde) - active 32 C [OK]<br>Cache - Samsung_SSD_850_EVO_250GB_S2R5NX0H643734Z (sdh) - active 24 C [OK]<br>Cache 2 - KINGSTON_SA2000M8250G_50026B7282669D9E (nvme3n1) - active 32 C [OK]<br>Zpool - CT2000P5PSSD8_22513DA16E6C (nvme0n1) - active 33 C [OK]<br>Zpool 2 - CT2000P5PSSD8_22513DA1657C (nvme1n1) - active 40 C [OK]<br>Zpool 3 - CT2000P5PSSD8_22513DA13F82 (nvme2n1) - active 43 C [OK]<br><br>Last check incomplete on Thu 11 May 2023 11:00:07 AM EDT (yesterday), finding 0 errors.<br>Error code: -4

View File

@@ -0,0 +1,6 @@
timestamp=1683951601
event=Unraid Status
subject=Notice [UNRAID] - array health report [PASS]
description=Array has 9 disks (including parity & pools)
importance=normal
message=Parity - ST18000NM000J-2TV103_ZR585CPY (sdg) - active 28 C [OK]<br>Disk 1 - ST18000NM000J-2TV103_ZR5B1W9X (sdf) - active 31 C [OK]<br>Disk 2 - WDC_WD120EDAZ-11F3RA0_5PJRD45C (sdi) - active 33 C [OK]<br>Disk 3 - WDC_WD120EMAZ-11BLFA0_5PH8BTYD (sde) - active 33 C [OK]<br>Cache - Samsung_SSD_850_EVO_250GB_S2R5NX0H643734Z (sdh) - active 25 C [OK]<br>Cache 2 - KINGSTON_SA2000M8250G_50026B7282669D9E (nvme3n1) - active 33 C [OK]<br>Zpool - CT2000P5PSSD8_22513DA16E6C (nvme0n1) - active 34 C [OK]<br>Zpool 2 - CT2000P5PSSD8_22513DA1657C (nvme1n1) - active 40 C [OK]<br>Zpool 3 - CT2000P5PSSD8_22513DA13F82 (nvme2n1) - active 44 C [OK]<br><br>Last check incomplete on Fri 12 May 2023 11:00:08 AM EDT (yesterday), finding 0 errors.<br>Error code: -4

View File

@@ -0,0 +1,6 @@
timestamp=1684038001
event=Unraid Status
subject=Notice [UNRAID] - array health report [PASS]
description=Array has 9 disks (including parity & pools)
importance=normal
message=Parity - ST18000NM000J-2TV103_ZR585CPY (sdg) - active 28 C [OK]<br>Disk 1 - ST18000NM000J-2TV103_ZR5B1W9X (sdf) - active 31 C [OK]<br>Disk 2 - WDC_WD120EDAZ-11F3RA0_5PJRD45C (sdi) - active 33 C [OK]<br>Disk 3 - WDC_WD120EMAZ-11BLFA0_5PH8BTYD (sde) - active 33 C [OK]<br>Cache - Samsung_SSD_850_EVO_250GB_S2R5NX0H643734Z (sdh) - active 25 C [OK]<br>Cache 2 - KINGSTON_SA2000M8250G_50026B7282669D9E (nvme3n1) - active 33 C [OK]<br>Zpool - CT2000P5PSSD8_22513DA16E6C (nvme0n1) - active 35 C [OK]<br>Zpool 2 - CT2000P5PSSD8_22513DA1657C (nvme1n1) - active 41 C [OK]<br>Zpool 3 - CT2000P5PSSD8_22513DA13F82 (nvme2n1) - active 45 C [OK]<br><br>Parity is valid<br>Last checked on Sat 13 May 2023 05:45:11 AM EDT (yesterday), finding 0 errors.<br>Duration: 4 hours, 15 minutes, 4 seconds. Average speed: 1.2 GB/s

View File

@@ -0,0 +1,6 @@
timestamp=1684124401
event=Unraid Status
subject=Notice [UNRAID] - array health report [PASS]
description=Array has 9 disks (including parity & pools)
importance=normal
message=Parity - ST18000NM000J-2TV103_ZR585CPY (sdg) - active 28 C [OK]<br>Disk 1 - ST18000NM000J-2TV103_ZR5B1W9X (sdf) - active 31 C [OK]<br>Disk 2 - WDC_WD120EDAZ-11F3RA0_5PJRD45C (sdi) - active 33 C [OK]<br>Disk 3 - WDC_WD120EMAZ-11BLFA0_5PH8BTYD (sde) - active 34 C [OK]<br>Cache - Samsung_SSD_850_EVO_250GB_S2R5NX0H643734Z (sdh) - active 25 C [OK]<br>Cache 2 - KINGSTON_SA2000M8250G_50026B7282669D9E (nvme3n1) - active 33 C [OK]<br>Zpool - CT2000P5PSSD8_22513DA16E6C (nvme0n1) - active 35 C [OK]<br>Zpool 2 - CT2000P5PSSD8_22513DA1657C (nvme1n1) - active 41 C [OK]<br>Zpool 3 - CT2000P5PSSD8_22513DA13F82 (nvme2n1) - active 45 C [OK]<br><br>Parity is valid<br>Last checked on Sat 13 May 2023 05:45:11 AM EDT (2 days ago), finding 0 errors.<br>Duration: 4 hours, 15 minutes, 4 seconds. Average speed: 1.2 GB/s

View File

@@ -0,0 +1,5 @@
timestamp=1683971161
event=Unraid Parity check
subject=Notice [UNRAID] - Parity check finished (0 errors)
description=Canceled
importance=warning

View File

@@ -0,0 +1,5 @@
timestamp=1683570896
event=Unraid Server Alert
subject=UPS Alert
description=Power failure on UPS Unraid. Running on batteries.
importance=alert

View File

@@ -0,0 +1,5 @@
timestamp=1683570945
event=Unraid Server Alert
subject=UPS Alert
description=Communications restored with UPS Unraid
importance=normal

View File

@@ -0,0 +1,5 @@
timestamp=1683570980
event=Unraid Server Alert
subject=UPS Alert
description=Communications restored with UPS Unraid
importance=normal

View File

@@ -0,0 +1,5 @@
timestamp=1683571299
event=Unraid Server Alert
subject=UPS Alert
description=Communications restored with UPS Unraid
importance=normal

View File

@@ -0,0 +1,5 @@
timestamp=1683571468
event=Unraid Server Alert
subject=UPS Alert
description=Communications restored with UPS Unraid
importance=normal

View File

@@ -0,0 +1,5 @@
timestamp=1683571535
event=Unraid Server Alert
subject=UPS Alert
description=Communications restored with UPS Unraid
importance=normal

View File

@@ -0,0 +1,5 @@
timestamp=1683571565
event=Unraid Server Alert
subject=UPS Alert
description=Communications restored with UPS Unraid
importance=normal

Some files were not shown because too many files have changed in this diff Show More