-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: sync code from metrics-exporter
- Loading branch information
Showing
2 changed files
with
57 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
package util | ||
|
||
import ( | ||
"os" | ||
"strings" | ||
) | ||
|
||
// NodeIdentifiers contains Akash deployment identification info | ||
type NodeIdentifiers struct { | ||
HashID string // From ingress hostname | ||
DeploymentID string // From AKASH_DEPLOYMENT_SEQUENCE | ||
} | ||
|
||
// GetNodeIdentifiers extracts node identifiers from Akash environment | ||
func GetNodeIdentifiers(host string) NodeIdentifiers { | ||
hashID := extractHashFromHost(host) | ||
deploymentID := os.Getenv("AKASH_DEPLOYMENT_SEQUENCE") | ||
|
||
return NodeIdentifiers{ | ||
HashID: hashID, | ||
DeploymentID: deploymentID, | ||
} | ||
} | ||
|
||
// ExtractHashFromHost gets the hash ID from an Akash hostname | ||
func extractHashFromHost(host string) string { | ||
parts := strings.Split(host, ".") | ||
if len(parts) > 0 { | ||
return parts[0] | ||
} | ||
return host | ||
} |