Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
51 commits
Select commit Hold shift + click to select a range
7667d1b
add project v1.0.0
willowweevil Nov 27, 2025
3d132c3
ad CHANGELOG.md
willowweevil Dec 3, 2025
e5f6bd7
add LICENSE
willowweevil Dec 3, 2025
7d67a4e
add --rm flag to docker run
willowweevil Dec 3, 2025
7ab539a
add build-binary stage
willowweevil Dec 3, 2025
c05406f
update ci to run by pushing tag in main
willowweevil Dec 4, 2025
735a1f4
set build by tag from main/develop branches
willowweevil Dec 4, 2025
8263db4
update locations
willowweevil Dec 4, 2025
83eb9b8
add rate limits logic
willowweevil Dec 4, 2025
615f5ac
remove build-binary from needs in build stage
willowweevil Dec 4, 2025
0a35cbe
initialize v1.0.0
willowweevil Dec 5, 2025
0f25323
add branding materials
willowweevil Dec 5, 2025
31bd389
update metrics
willowweevil Dec 9, 2025
03fb871
update error metric
willowweevil Dec 9, 2025
d7349c3
add metrics labels
willowweevil Dec 9, 2025
d2e8951
update metrics
willowweevil Dec 9, 2025
6b057fc
update README.md
willowweevil Dec 9, 2025
07ffe44
add grafana dashboards
willowweevil Dec 9, 2025
8fa8e24
update README
willowweevil Dec 12, 2025
c43e1fe
update dashboards
willowweevil Dec 12, 2025
33fc8f9
add 'apatit_mp_data_status' metric
willowweevil Dec 12, 2025
dbb9ae5
add data status stat panel
willowweevil Dec 12, 2025
919781d
update ci
willowweevil Dec 12, 2025
66d6110
add helm-chart
willowweevil Dec 12, 2025
f3f0533
change version in arg
willowweevil Dec 12, 2025
a1c68db
add locations.json to release
willowweevil Dec 12, 2025
4453daf
update locations
willowweevil Dec 12, 2025
81b1839
fix 'status' metric name
willowweevil Dec 12, 2025
4e3a72f
update monitoring dashboard
willowweevil Dec 12, 2025
075169b
fix typo in REQUEST_DELAY env var; extend default delay up to 3s
willowweevil Dec 16, 2025
a354396
update README
willowweevil Dec 16, 2025
dbc234d
update goland and libaries
willowweevil Dec 18, 2025
31fd8b3
Remove "EngMPNames" from Config struct
willowweevil Feb 17, 2026
39c4f47
Remove "EngMPNames" from exporter.Config
willowweevil Feb 17, 2026
6dba5cf
Remove "translator" module from import and translator initialization …
willowweevil Feb 17, 2026
e710e18
Remove "translator" module
willowweevil Feb 17, 2026
30c6c04
Use both EN and RU monitoring point names as labels in MP-related met…
willowweevil Feb 17, 2026
c8e5790
Add EN monitoring point names in models.
willowweevil Feb 17, 2026
c1668a6
Remove "translator" module from project.
willowweevil Feb 17, 2026
3fb85f7
Remove transpose-related commented code.
willowweevil Feb 17, 2026
8709865
Fix formatting issues.
willowweevil Feb 17, 2026
9ef0aa0
Remove unused function 'envBool'.
willowweevil Feb 17, 2026
46ee2db
update "Unavailable Monitoring Points" panel
willowweevil Feb 19, 2026
8f098a3
Remove 'locations.json'
willowweevil Feb 19, 2026
33bbd3b
Update README.md
willowweevil Feb 19, 2026
999e5f4
Update CHANGELOG.md
willowweevil Feb 19, 2026
7976055
Update README.md
willowweevil Feb 19, 2026
78c8bd8
Merge branch 'main' into develop
willowweevil Feb 19, 2026
75ed26e
update (#3)
willowweevil Feb 19, 2026
2aab90d
Fix sigfault.
willowweevil Mar 7, 2026
edf5e86
Merge branch 'main' into develop
willowweevil Mar 7, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [v1.1.1] - 2026-03-07

### Fixed
- Sigfault if there were no data in `sa=task_stat` response.

## [v1.1.0] - 2026-02-17

### Added
Expand Down
20 changes: 11 additions & 9 deletions internal/client/models.go
Original file line number Diff line number Diff line change
Expand Up @@ -252,16 +252,18 @@ func (t *TaskStatRaw) ProcessTaskEntry() *TaskStatEntry {
}

for _, resRaw := range t.TasksLogs {
TaskStatRes := &TaskLog{
Data: *resRaw.Data,
Description: *resRaw.Descr,
Status: int64(*resRaw.Status),
MPName: *resRaw.TmEn,
MPNameRu: *resRaw.Tm,
MPID: *resRaw.TmID,
Traceroute: *resRaw.Traceroute,
if resRaw.TmEn != nil { // resRaw.TmEn could be null
TaskStatRes := &TaskLog{
Data: *resRaw.Data,
Description: *resRaw.Descr,
Status: int64(*resRaw.Status),
MPName: *resRaw.TmEn,
MPNameRu: *resRaw.Tm,
MPID: *resRaw.TmID,
Traceroute: *resRaw.Traceroute,
}
entry.TaskLogs = append(entry.TaskLogs, TaskStatRes)
}
entry.TaskLogs = append(entry.TaskLogs, TaskStatRes)
}
return entry
}
Expand Down