Skip to content

Commit

Permalink
Merge pull request #47 from Cray-HPE/CASMSMF-7120
Browse files Browse the repository at this point in the history
Updating hms-collector to support new Slingshot 2.0 metrics
  • Loading branch information
rsjostrand-hpe authored Jan 12, 2023
2 parents 7e84df1 + ce6fcaf commit 2ff1a2b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.23.0
2.24.0
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ Removed - for now removed features
Fixed - for any bug fixes
Security - in case of vulnerabilities
-->
## [2.24.0] - 2023-01-10

### Added
- CASMSMF-7120: Added support for Cray Fabric Health Telemetry collection.

## [2.23.0] - 2022-11-07

Expand Down
2 changes: 2 additions & 0 deletions cmd/hmcollector/rest.go
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,8 @@ func parseRequest(w http.ResponseWriter, r *http.Request) {
writeToKafka("cray-fabric-crit-telemetry", eventsString, &kafkaMessageKey)
} else if strings.HasPrefix(event.MessageId, "CrayFabricHealth") {
writeToKafka("cray-fabric-health-events", eventsString, &kafkaMessageKey)
} else if strings.HasPrefix(event.MessageId, "CrayAlerts") {
writeToKafka("cray-fabric-health-telemetry", eventsString, &kafkaMessageKey)
} else {
// If we get to this point then we don't have a specific topic this should go on,
// dump it on the generic one.
Expand Down

0 comments on commit 2ff1a2b

Please sign in to comment.